├── .bazelci └── presubmit.yml ├── .bazelversion ├── .githooks └── pre-commit ├── .github └── workflows │ └── golangci-lint.yml ├── .gitignore ├── .golangci.yml ├── AUTHORS ├── BUILD.bazel ├── CONTRIBUTING.md ├── CONTRIBUTORS ├── LICENSE ├── README.md ├── WORKSPACE ├── check-gofmt.sh ├── check-golint.sh ├── external └── BUILD.googleapis ├── go.mod ├── go.sum ├── go ├── README.md ├── api │ ├── command │ │ ├── BUILD.bazel │ │ ├── command.pb.go │ │ └── command.proto │ └── credshelper │ │ ├── BUILD.bazel │ │ ├── credshelper.pb.go │ │ └── credshelper.proto ├── cmd │ ├── bazelcredswrapper │ │ ├── BUILD.bazel │ │ ├── README.md │ │ └── main.go │ ├── remotetool │ │ ├── BUILD.bazel │ │ └── main.go │ └── rexec │ │ ├── BUILD.bazel │ │ └── main.go └── pkg │ ├── actas │ ├── BUILD.bazel │ ├── actas.go │ └── actas_test.go │ ├── balancer │ ├── BUILD.bazel │ └── roundrobin.go │ ├── cache │ ├── BUILD.bazel │ ├── singleflightcache.go │ └── singleflightcache_test.go │ ├── cas │ ├── BUILD.bazel │ ├── client.go │ ├── client_test.go │ ├── ioutil.go │ ├── upload.go │ └── upload_test.go │ ├── chunker │ ├── BUILD.bazel │ ├── chunker.go │ └── chunker_test.go │ ├── client │ ├── BUILD.bazel │ ├── batch_retries_test.go │ ├── bytestream.go │ ├── bytestream_test.go │ ├── capabilities.go │ ├── cas.go │ ├── cas_download.go │ ├── cas_test.go │ ├── cas_upload.go │ ├── client.go │ ├── client_test.go │ ├── exec.go │ ├── exec_test.go │ ├── retries_test.go │ ├── status.go │ ├── tree.go │ ├── tree_test.go │ └── tree_whitebox_test.go │ ├── command │ ├── BUILD.bazel │ ├── command.go │ └── command_test.go │ ├── contextmd │ ├── BUILD.bazel │ ├── contextmd.go │ └── contextmd_test.go │ ├── credshelper │ ├── BUILD.bazel │ ├── credshelper.go │ └── credshelper_test.go │ ├── digest │ ├── BUILD.bazel │ ├── digest.go │ └── digest_test.go │ ├── fakes │ ├── BUILD.bazel │ ├── ac.go │ ├── auxpb │ │ ├── BUILD.bazel │ │ ├── auxiliary_metadata.pb.go │ │ └── auxiliary_metadata.proto │ ├── cas.go │ ├── exec.go │ ├── logstreams.go │ └── server.go │ ├── filemetadata │ ├── BUILD.bazel │ ├── cache.go │ ├── cache_posix_test.go │ ├── cache_test.go │ ├── filemetadata.go │ └── filemetadata_test.go │ ├── flags │ ├── BUILD.bazel │ └── flags.go │ ├── moreflag │ ├── BUILD.bazel │ ├── moreflag.go │ └── moreflag_test.go │ ├── outerr │ ├── BUILD.bazel │ ├── outerr.go │ └── outerr_test.go │ ├── portpicker │ ├── BUILD.bazel │ └── portpicker.go │ ├── reader │ ├── BUILD.bazel │ ├── reader.go │ └── reader_test.go │ ├── retry │ ├── BUILD.bazel │ ├── retry.go │ └── retry_test.go │ ├── rexec │ ├── BUILD.bazel │ ├── rexec.go │ └── rexec_test.go │ ├── symlinkopts │ ├── BUILD.bazel │ ├── opts.go │ └── opts_test.go │ ├── testutil │ ├── BUILD.bazel │ └── testutil.go │ ├── tool │ ├── BUILD.bazel │ ├── embeddedtool.go │ ├── tool.go │ └── tool_test.go │ └── uploadinfo │ ├── BUILD.bazel │ └── entry.go ├── go_deps.bzl └── setup-githooks.sh /.bazelci/presubmit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/.bazelci/presubmit.yml -------------------------------------------------------------------------------- /.bazelversion: -------------------------------------------------------------------------------- 1 | 6.0.0 2 | -------------------------------------------------------------------------------- /.githooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/.githooks/pre-commit -------------------------------------------------------------------------------- /.github/workflows/golangci-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/.github/workflows/golangci-lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/.golangci.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/AUTHORS -------------------------------------------------------------------------------- /BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/BUILD.bazel -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/README.md -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/WORKSPACE -------------------------------------------------------------------------------- /check-gofmt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/check-gofmt.sh -------------------------------------------------------------------------------- /check-golint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/check-golint.sh -------------------------------------------------------------------------------- /external/BUILD.googleapis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/external/BUILD.googleapis -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go.sum -------------------------------------------------------------------------------- /go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/README.md -------------------------------------------------------------------------------- /go/api/command/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/api/command/BUILD.bazel -------------------------------------------------------------------------------- /go/api/command/command.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/api/command/command.pb.go -------------------------------------------------------------------------------- /go/api/command/command.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/api/command/command.proto -------------------------------------------------------------------------------- /go/api/credshelper/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/api/credshelper/BUILD.bazel -------------------------------------------------------------------------------- /go/api/credshelper/credshelper.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/api/credshelper/credshelper.pb.go -------------------------------------------------------------------------------- /go/api/credshelper/credshelper.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/api/credshelper/credshelper.proto -------------------------------------------------------------------------------- /go/cmd/bazelcredswrapper/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/cmd/bazelcredswrapper/BUILD.bazel -------------------------------------------------------------------------------- /go/cmd/bazelcredswrapper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/cmd/bazelcredswrapper/README.md -------------------------------------------------------------------------------- /go/cmd/bazelcredswrapper/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/cmd/bazelcredswrapper/main.go -------------------------------------------------------------------------------- /go/cmd/remotetool/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/cmd/remotetool/BUILD.bazel -------------------------------------------------------------------------------- /go/cmd/remotetool/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/cmd/remotetool/main.go -------------------------------------------------------------------------------- /go/cmd/rexec/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/cmd/rexec/BUILD.bazel -------------------------------------------------------------------------------- /go/cmd/rexec/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/cmd/rexec/main.go -------------------------------------------------------------------------------- /go/pkg/actas/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/actas/BUILD.bazel -------------------------------------------------------------------------------- /go/pkg/actas/actas.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/actas/actas.go -------------------------------------------------------------------------------- /go/pkg/actas/actas_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/actas/actas_test.go -------------------------------------------------------------------------------- /go/pkg/balancer/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/balancer/BUILD.bazel -------------------------------------------------------------------------------- /go/pkg/balancer/roundrobin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/balancer/roundrobin.go -------------------------------------------------------------------------------- /go/pkg/cache/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/cache/BUILD.bazel -------------------------------------------------------------------------------- /go/pkg/cache/singleflightcache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/cache/singleflightcache.go -------------------------------------------------------------------------------- /go/pkg/cache/singleflightcache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/cache/singleflightcache_test.go -------------------------------------------------------------------------------- /go/pkg/cas/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/cas/BUILD.bazel -------------------------------------------------------------------------------- /go/pkg/cas/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/cas/client.go -------------------------------------------------------------------------------- /go/pkg/cas/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/cas/client_test.go -------------------------------------------------------------------------------- /go/pkg/cas/ioutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/cas/ioutil.go -------------------------------------------------------------------------------- /go/pkg/cas/upload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/cas/upload.go -------------------------------------------------------------------------------- /go/pkg/cas/upload_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/cas/upload_test.go -------------------------------------------------------------------------------- /go/pkg/chunker/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/chunker/BUILD.bazel -------------------------------------------------------------------------------- /go/pkg/chunker/chunker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/chunker/chunker.go -------------------------------------------------------------------------------- /go/pkg/chunker/chunker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/chunker/chunker_test.go -------------------------------------------------------------------------------- /go/pkg/client/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/client/BUILD.bazel -------------------------------------------------------------------------------- /go/pkg/client/batch_retries_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/client/batch_retries_test.go -------------------------------------------------------------------------------- /go/pkg/client/bytestream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/client/bytestream.go -------------------------------------------------------------------------------- /go/pkg/client/bytestream_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/client/bytestream_test.go -------------------------------------------------------------------------------- /go/pkg/client/capabilities.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/client/capabilities.go -------------------------------------------------------------------------------- /go/pkg/client/cas.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/client/cas.go -------------------------------------------------------------------------------- /go/pkg/client/cas_download.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/client/cas_download.go -------------------------------------------------------------------------------- /go/pkg/client/cas_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/client/cas_test.go -------------------------------------------------------------------------------- /go/pkg/client/cas_upload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/client/cas_upload.go -------------------------------------------------------------------------------- /go/pkg/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/client/client.go -------------------------------------------------------------------------------- /go/pkg/client/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/client/client_test.go -------------------------------------------------------------------------------- /go/pkg/client/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/client/exec.go -------------------------------------------------------------------------------- /go/pkg/client/exec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/client/exec_test.go -------------------------------------------------------------------------------- /go/pkg/client/retries_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/client/retries_test.go -------------------------------------------------------------------------------- /go/pkg/client/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/client/status.go -------------------------------------------------------------------------------- /go/pkg/client/tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/client/tree.go -------------------------------------------------------------------------------- /go/pkg/client/tree_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/client/tree_test.go -------------------------------------------------------------------------------- /go/pkg/client/tree_whitebox_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/client/tree_whitebox_test.go -------------------------------------------------------------------------------- /go/pkg/command/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/command/BUILD.bazel -------------------------------------------------------------------------------- /go/pkg/command/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/command/command.go -------------------------------------------------------------------------------- /go/pkg/command/command_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/command/command_test.go -------------------------------------------------------------------------------- /go/pkg/contextmd/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/contextmd/BUILD.bazel -------------------------------------------------------------------------------- /go/pkg/contextmd/contextmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/contextmd/contextmd.go -------------------------------------------------------------------------------- /go/pkg/contextmd/contextmd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/contextmd/contextmd_test.go -------------------------------------------------------------------------------- /go/pkg/credshelper/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/credshelper/BUILD.bazel -------------------------------------------------------------------------------- /go/pkg/credshelper/credshelper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/credshelper/credshelper.go -------------------------------------------------------------------------------- /go/pkg/credshelper/credshelper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/credshelper/credshelper_test.go -------------------------------------------------------------------------------- /go/pkg/digest/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/digest/BUILD.bazel -------------------------------------------------------------------------------- /go/pkg/digest/digest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/digest/digest.go -------------------------------------------------------------------------------- /go/pkg/digest/digest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/digest/digest_test.go -------------------------------------------------------------------------------- /go/pkg/fakes/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/fakes/BUILD.bazel -------------------------------------------------------------------------------- /go/pkg/fakes/ac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/fakes/ac.go -------------------------------------------------------------------------------- /go/pkg/fakes/auxpb/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/fakes/auxpb/BUILD.bazel -------------------------------------------------------------------------------- /go/pkg/fakes/auxpb/auxiliary_metadata.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/fakes/auxpb/auxiliary_metadata.pb.go -------------------------------------------------------------------------------- /go/pkg/fakes/auxpb/auxiliary_metadata.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/fakes/auxpb/auxiliary_metadata.proto -------------------------------------------------------------------------------- /go/pkg/fakes/cas.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/fakes/cas.go -------------------------------------------------------------------------------- /go/pkg/fakes/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/fakes/exec.go -------------------------------------------------------------------------------- /go/pkg/fakes/logstreams.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/fakes/logstreams.go -------------------------------------------------------------------------------- /go/pkg/fakes/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/fakes/server.go -------------------------------------------------------------------------------- /go/pkg/filemetadata/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/filemetadata/BUILD.bazel -------------------------------------------------------------------------------- /go/pkg/filemetadata/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/filemetadata/cache.go -------------------------------------------------------------------------------- /go/pkg/filemetadata/cache_posix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/filemetadata/cache_posix_test.go -------------------------------------------------------------------------------- /go/pkg/filemetadata/cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/filemetadata/cache_test.go -------------------------------------------------------------------------------- /go/pkg/filemetadata/filemetadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/filemetadata/filemetadata.go -------------------------------------------------------------------------------- /go/pkg/filemetadata/filemetadata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/filemetadata/filemetadata_test.go -------------------------------------------------------------------------------- /go/pkg/flags/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/flags/BUILD.bazel -------------------------------------------------------------------------------- /go/pkg/flags/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/flags/flags.go -------------------------------------------------------------------------------- /go/pkg/moreflag/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/moreflag/BUILD.bazel -------------------------------------------------------------------------------- /go/pkg/moreflag/moreflag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/moreflag/moreflag.go -------------------------------------------------------------------------------- /go/pkg/moreflag/moreflag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/moreflag/moreflag_test.go -------------------------------------------------------------------------------- /go/pkg/outerr/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/outerr/BUILD.bazel -------------------------------------------------------------------------------- /go/pkg/outerr/outerr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/outerr/outerr.go -------------------------------------------------------------------------------- /go/pkg/outerr/outerr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/outerr/outerr_test.go -------------------------------------------------------------------------------- /go/pkg/portpicker/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/portpicker/BUILD.bazel -------------------------------------------------------------------------------- /go/pkg/portpicker/portpicker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/portpicker/portpicker.go -------------------------------------------------------------------------------- /go/pkg/reader/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/reader/BUILD.bazel -------------------------------------------------------------------------------- /go/pkg/reader/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/reader/reader.go -------------------------------------------------------------------------------- /go/pkg/reader/reader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/reader/reader_test.go -------------------------------------------------------------------------------- /go/pkg/retry/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/retry/BUILD.bazel -------------------------------------------------------------------------------- /go/pkg/retry/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/retry/retry.go -------------------------------------------------------------------------------- /go/pkg/retry/retry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/retry/retry_test.go -------------------------------------------------------------------------------- /go/pkg/rexec/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/rexec/BUILD.bazel -------------------------------------------------------------------------------- /go/pkg/rexec/rexec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/rexec/rexec.go -------------------------------------------------------------------------------- /go/pkg/rexec/rexec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/rexec/rexec_test.go -------------------------------------------------------------------------------- /go/pkg/symlinkopts/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/symlinkopts/BUILD.bazel -------------------------------------------------------------------------------- /go/pkg/symlinkopts/opts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/symlinkopts/opts.go -------------------------------------------------------------------------------- /go/pkg/symlinkopts/opts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/symlinkopts/opts_test.go -------------------------------------------------------------------------------- /go/pkg/testutil/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/testutil/BUILD.bazel -------------------------------------------------------------------------------- /go/pkg/testutil/testutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/testutil/testutil.go -------------------------------------------------------------------------------- /go/pkg/tool/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/tool/BUILD.bazel -------------------------------------------------------------------------------- /go/pkg/tool/embeddedtool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/tool/embeddedtool.go -------------------------------------------------------------------------------- /go/pkg/tool/tool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/tool/tool.go -------------------------------------------------------------------------------- /go/pkg/tool/tool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/tool/tool_test.go -------------------------------------------------------------------------------- /go/pkg/uploadinfo/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/uploadinfo/BUILD.bazel -------------------------------------------------------------------------------- /go/pkg/uploadinfo/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go/pkg/uploadinfo/entry.go -------------------------------------------------------------------------------- /go_deps.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/go_deps.bzl -------------------------------------------------------------------------------- /setup-githooks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/remote-apis-sdks/HEAD/setup-githooks.sh --------------------------------------------------------------------------------