You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by da...@apache.org on 2023/10/23 16:13:59 UTC

[beam] branch master updated (ca96cb5ea42 -> a07d90eec0e)

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

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


    from ca96cb5ea42 Add Setup environment actions (#29026)
     add a07d90eec0e [RRIO] Define and implement mock quota aware API (#28893)

No new revisions were added by this update.

Summary of changes:
 .test-infra/mock-apis/README.md                    |  116 ++
 .test-infra/mock-apis/buf.gen.yaml                 |   40 +
 .test-infra/mock-apis/buf.lock                     |    7 +
 .test-infra/mock-apis/buf.yaml                     |   20 +
 .test-infra/mock-apis/build.gradle                 |   44 +
 .test-infra/mock-apis/go.mod                       |   58 +
 .test-infra/mock-apis/go.sum                       |  214 +++
 .test-infra/mock-apis/proto/echo/v1/echo.proto     |   46 +
 .../mock-apis/src/main/go/cmd/service/echo/main.go |  148 ++
 .../src/main/go/cmd/service/refresher/main.go      |  121 ++
 .../mock-apis/src/main/go/internal/cache/cache.go  |  122 ++
 .../mock-apis/src/main/go/internal/cache/doc.go    |   17 +
 .../src/main/go/internal/cache/interface.go        |   45 +
 .../mock-apis/src/main/go/internal/cache/redis.go  |   59 +
 .../src/main/go/internal/environment/variable.go   |  118 ++
 .../main/go/internal/environment/variable_test.go  |  312 +++++
 .../src/main/go/internal/logging/logging.go        |  137 ++
 .../src/main/go/internal/logging/logging_test.go   |  153 +++
 .../mock-apis/src/main/go/internal/metric/doc.go   |   17 +
 .../mock-apis/src/main/go/internal/metric/gcp.go   |   77 ++
 .../src/main/go/internal/metric/interface.go       |   38 +
 .../src/main/go/internal/proto/echo/v1/echo.pb.go  |  256 ++++
 .../main/go/internal/proto/echo/v1/echo_grpc.pb.go |  107 ++
 .../src/main/go/internal/service/echo/echo.go      |  185 +++
 .../beam/testinfra/mockapis/echo/v1/Echo.java      | 1447 ++++++++++++++++++++
 .../mockapis/echo/v1/EchoServiceGrpc.java          |  393 ++++++
 .../testinfra/mockapis/echo/v1/package-info.java   |   20 +
 build.gradle.kts                                   |    4 +
 .../resources/beam/checkstyle/suppressions.xml     |    1 +
 settings.gradle.kts                                |    2 +
 30 files changed, 4324 insertions(+)
 create mode 100644 .test-infra/mock-apis/README.md
 create mode 100644 .test-infra/mock-apis/buf.gen.yaml
 create mode 100644 .test-infra/mock-apis/buf.lock
 create mode 100644 .test-infra/mock-apis/buf.yaml
 create mode 100644 .test-infra/mock-apis/build.gradle
 create mode 100644 .test-infra/mock-apis/go.mod
 create mode 100644 .test-infra/mock-apis/go.sum
 create mode 100644 .test-infra/mock-apis/proto/echo/v1/echo.proto
 create mode 100644 .test-infra/mock-apis/src/main/go/cmd/service/echo/main.go
 create mode 100644 .test-infra/mock-apis/src/main/go/cmd/service/refresher/main.go
 create mode 100644 .test-infra/mock-apis/src/main/go/internal/cache/cache.go
 create mode 100644 .test-infra/mock-apis/src/main/go/internal/cache/doc.go
 create mode 100644 .test-infra/mock-apis/src/main/go/internal/cache/interface.go
 create mode 100644 .test-infra/mock-apis/src/main/go/internal/cache/redis.go
 create mode 100644 .test-infra/mock-apis/src/main/go/internal/environment/variable.go
 create mode 100644 .test-infra/mock-apis/src/main/go/internal/environment/variable_test.go
 create mode 100644 .test-infra/mock-apis/src/main/go/internal/logging/logging.go
 create mode 100644 .test-infra/mock-apis/src/main/go/internal/logging/logging_test.go
 create mode 100644 .test-infra/mock-apis/src/main/go/internal/metric/doc.go
 create mode 100644 .test-infra/mock-apis/src/main/go/internal/metric/gcp.go
 create mode 100644 .test-infra/mock-apis/src/main/go/internal/metric/interface.go
 create mode 100644 .test-infra/mock-apis/src/main/go/internal/proto/echo/v1/echo.pb.go
 create mode 100644 .test-infra/mock-apis/src/main/go/internal/proto/echo/v1/echo_grpc.pb.go
 create mode 100644 .test-infra/mock-apis/src/main/go/internal/service/echo/echo.go
 create mode 100644 .test-infra/mock-apis/src/main/java/org/apache/beam/testinfra/mockapis/echo/v1/Echo.java
 create mode 100644 .test-infra/mock-apis/src/main/java/org/apache/beam/testinfra/mockapis/echo/v1/EchoServiceGrpc.java
 create mode 100644 .test-infra/mock-apis/src/main/java/org/apache/beam/testinfra/mockapis/echo/v1/package-info.java