You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by pa...@apache.org on 2021/10/14 16:39:07 UTC

[beam] branch master updated (bd0ac38 -> 2ad9e3c)

This is an automated email from the ASF dual-hosted git repository.

pabloem pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git.


    from bd0ac38  Merge pull request #15676 from y1chi/lull_logging
     add 2ad9e3c  Merge pull request #15722 from [BEAM-13022] [Playground] Run code on the backend

No new revisions were added by this update.

Summary of changes:
 playground/frontend/README.md                      |  14 +-
 .../frontend/lib/constants/api.dart                |   3 +-
 playground/frontend/lib/constants/sizes.dart       |   1 +
 .../modules/editor/components/editor_textarea.dart |   4 +-
 .../components/run_button.dart}                    |  38 +--
 .../code_client/check_status_response.dart         |  12 +-
 .../code_repository/code_client/code_client.dart   |  24 +-
 .../code_client/grpc_code_client.dart              | 114 +++++++
 .../code_client/output_response.dart               |   7 +-
 .../code_client/run_code_response.dart             |   7 +-
 .../code_repository/code_repository.dart           |  84 ++++++
 .../repository/code_repository/run_code_error.dart |   8 +-
 .../code_repository/run_code_request.dart}         |   8 +-
 .../code_repository/run_code_result.dart}          |  37 +--
 .../lib/modules/output/components/output_area.dart |  23 +-
 .../components/editor_textarea_wrapper.dart        |  22 +-
 .../components/playground_page_providers.dart      |  13 +-
 .../pages/playground/states/playground_state.dart  |  40 ++-
 playground/frontend/pubspec.lock                   | 329 +++++++++++++++++++++
 playground/frontend/pubspec.yaml                   |   3 +
 .../code_repository/code_repository_test.dart      | 152 ++++++++++
 .../playground/states/playground_state_test.dart   |   4 +-
 playground/frontend/web/index.html                 |   8 +
 23 files changed, 853 insertions(+), 102 deletions(-)
 copy sdks/java/fn-execution/src/main/java/org/apache/beam/sdk/fn/stream/package-info.java => playground/frontend/lib/constants/api.dart (91%)
 copy playground/frontend/lib/modules/{output/components/output_header/output_header.dart => editor/components/run_button.dart} (60%)
 copy learning/katas/java/IO/Built-in IOs/Built-in IOs/test/org/apache/beam/learning/katas/io/builtinios/TaskTest.java => playground/frontend/lib/modules/editor/repository/code_repository/code_client/check_status_response.dart (81%)
 copy examples/java/src/main/java/org/apache/beam/examples/complete/datatokenization/utils/RowToCsv.java => playground/frontend/lib/modules/editor/repository/code_repository/code_client/code_client.dart (54%)
 create mode 100644 playground/frontend/lib/modules/editor/repository/code_repository/code_client/grpc_code_client.dart
 copy sdks/java/extensions/sql/src/main/java/org/apache/beam/sdk/extensions/sql/impl/utils/package-info.java => playground/frontend/lib/modules/editor/repository/code_repository/code_client/output_response.dart (90%)
 copy learning/katas/kotlin/Core Transforms/DoFn Additional Parameters/DoFn Additional Parameters/test/org/apache/beam/learning/katas/coretransforms/dofnadditionalparams/TaskTest.kt => playground/frontend/lib/modules/editor/repository/code_repository/code_client/run_code_response.dart (89%)
 create mode 100644 playground/frontend/lib/modules/editor/repository/code_repository/code_repository.dart
 copy sdks/java/io/snowflake/src/main/java/org/apache/beam/sdk/io/snowflake/enums/StreamingLogLevel.java => playground/frontend/lib/modules/editor/repository/code_repository/run_code_error.dart (89%)
 copy playground/frontend/lib/modules/{examples/models/example_model.dart => editor/repository/code_repository/run_code_request.dart} (86%)
 copy playground/frontend/lib/modules/{actions/components/reset_action.dart => editor/repository/code_repository/run_code_result.dart} (53%)
 create mode 100644 playground/frontend/test/modules/editor/repository/code_repository/code_repository_test.dart