├── LICENSE ├── README.md ├── deployments └── echo.yaml ├── echo ├── Dockerfile ├── Gopkg.lock ├── Gopkg.toml ├── README.md ├── handler.go ├── main.go └── vendor │ ├── cloud.google.com │ └── go │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── MIGRATION.md │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── authexample_test.go │ │ ├── bigquery │ │ ├── benchmarks │ │ │ ├── README.md │ │ │ ├── bench.go │ │ │ └── queries.json │ │ ├── bigquery.go │ │ ├── copy.go │ │ ├── copy_test.go │ │ ├── dataset.go │ │ ├── dataset_test.go │ │ ├── datatransfer │ │ │ └── apiv1 │ │ │ │ ├── ListDataSources_smoke_test.go │ │ │ │ ├── data_transfer_client.go │ │ │ │ ├── data_transfer_client_example_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── mock_test.go │ │ │ │ └── path_funcs.go │ │ ├── doc.go │ │ ├── error.go │ │ ├── error_test.go │ │ ├── examples_test.go │ │ ├── external.go │ │ ├── external_test.go │ │ ├── extract.go │ │ ├── extract_test.go │ │ ├── file.go │ │ ├── file_test.go │ │ ├── gcs.go │ │ ├── integration_test.go │ │ ├── iterator.go │ │ ├── iterator_test.go │ │ ├── job.go │ │ ├── job_test.go │ │ ├── load.go │ │ ├── load_test.go │ │ ├── nulls.go │ │ ├── nulls_test.go │ │ ├── params.go │ │ ├── params_test.go │ │ ├── query.go │ │ ├── query_test.go │ │ ├── read_test.go │ │ ├── schema.go │ │ ├── schema_test.go │ │ ├── table.go │ │ ├── table_test.go │ │ ├── uploader.go │ │ ├── uploader_test.go │ │ ├── value.go │ │ └── value_test.go │ │ ├── bigtable │ │ ├── admin.go │ │ ├── admin_test.go │ │ ├── bigtable.go │ │ ├── bigtable_test.go │ │ ├── bttest │ │ │ ├── example_test.go │ │ │ ├── inmem.go │ │ │ └── inmem_test.go │ │ ├── cmd │ │ │ ├── cbt │ │ │ │ ├── cbt.go │ │ │ │ ├── cbt_test.go │ │ │ │ └── cbtdoc.go │ │ │ ├── emulator │ │ │ │ └── cbtemulator.go │ │ │ ├── loadtest │ │ │ │ └── loadtest.go │ │ │ └── scantest │ │ │ │ └── scantest.go │ │ ├── doc.go │ │ ├── export_test.go │ │ ├── filter.go │ │ ├── gc.go │ │ ├── gc_test.go │ │ ├── internal │ │ │ ├── cbtconfig │ │ │ │ └── cbtconfig.go │ │ │ ├── gax │ │ │ │ ├── call_option.go │ │ │ │ ├── invoke.go │ │ │ │ └── invoke_test.go │ │ │ ├── option │ │ │ │ └── option.go │ │ │ └── stat │ │ │ │ └── stats.go │ │ ├── reader.go │ │ ├── reader_test.go │ │ ├── retry_test.go │ │ └── testdata │ │ │ └── read-rows-acceptance-test.json │ │ ├── civil │ │ ├── civil.go │ │ └── civil_test.go │ │ ├── cloud.go │ │ ├── cmd │ │ └── go-cloud-debug-agent │ │ │ ├── debuglet.go │ │ │ └── internal │ │ │ ├── breakpoints │ │ │ ├── breakpoints.go │ │ │ └── breakpoints_test.go │ │ │ ├── controller │ │ │ ├── client.go │ │ │ └── client_test.go │ │ │ └── valuecollector │ │ │ ├── valuecollector.go │ │ │ └── valuecollector_test.go │ │ ├── compute │ │ └── metadata │ │ │ ├── metadata.go │ │ │ └── metadata_test.go │ │ ├── container │ │ ├── apiv1 │ │ │ ├── ListClusters_smoke_test.go │ │ │ ├── cluster_manager_client.go │ │ │ ├── cluster_manager_client_example_test.go │ │ │ ├── doc.go │ │ │ └── mock_test.go │ │ └── container.go │ │ ├── dataproc │ │ └── apiv1 │ │ │ ├── ListClusters_smoke_test.go │ │ │ ├── cluster_controller_client.go │ │ │ ├── cluster_controller_client_example_test.go │ │ │ ├── doc.go │ │ │ ├── job_controller_client.go │ │ │ ├── job_controller_client_example_test.go │ │ │ └── mock_test.go │ │ ├── datastore │ │ ├── client.go │ │ ├── datastore.go │ │ ├── datastore.replay │ │ ├── datastore_test.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── example_test.go │ │ ├── integration_test.go │ │ ├── key.go │ │ ├── key_test.go │ │ ├── load.go │ │ ├── load_test.go │ │ ├── prop.go │ │ ├── query.go │ │ ├── query_test.go │ │ ├── save.go │ │ ├── save_test.go │ │ ├── testdata │ │ │ └── index.yaml │ │ ├── time.go │ │ ├── time_test.go │ │ └── transaction.go │ │ ├── debugger │ │ └── apiv2 │ │ │ ├── controller2_client.go │ │ │ ├── controller2_client_example_test.go │ │ │ ├── debugger2_client.go │ │ │ ├── debugger2_client_example_test.go │ │ │ ├── doc.go │ │ │ └── mock_test.go │ │ ├── dlp │ │ └── apiv2beta1 │ │ │ ├── InspectContent_smoke_test.go │ │ │ ├── dlp_client.go │ │ │ ├── dlp_client_example_test.go │ │ │ ├── doc.go │ │ │ ├── mock_test.go │ │ │ └── path_funcs.go │ │ ├── errorreporting │ │ ├── apiv1beta1 │ │ │ ├── ReportErrorEvent_smoke_test.go │ │ │ ├── doc.go │ │ │ ├── error_group_client.go │ │ │ ├── error_group_client_example_test.go │ │ │ ├── error_stats_client.go │ │ │ ├── error_stats_client_example_test.go │ │ │ ├── mock_test.go │ │ │ ├── path_funcs.go │ │ │ ├── report_errors_client.go │ │ │ └── report_errors_client_example_test.go │ │ ├── errors.go │ │ ├── errors_test.go │ │ ├── example_test.go │ │ └── stack_test.go │ │ ├── firestore │ │ ├── apiv1beta1 │ │ │ ├── doc.go │ │ │ ├── firestore_client.go │ │ │ ├── firestore_client_example_test.go │ │ │ ├── mock_test.go │ │ │ └── path_funcs.go │ │ ├── client.go │ │ ├── client_test.go │ │ ├── collref.go │ │ ├── collref_test.go │ │ ├── cross_language_test.go │ │ ├── doc.go │ │ ├── docref.go │ │ ├── docref_test.go │ │ ├── document.go │ │ ├── document_test.go │ │ ├── examples_test.go │ │ ├── fieldpath.go │ │ ├── fieldpath_test.go │ │ ├── from_value.go │ │ ├── from_value_test.go │ │ ├── genproto │ │ │ ├── README.md │ │ │ └── test.pb.go │ │ ├── integration_test.go │ │ ├── internal │ │ │ ├── Makefile │ │ │ ├── doc-snippets.go │ │ │ ├── doc.template │ │ │ └── snipdoc.awk │ │ ├── mock_test.go │ │ ├── options.go │ │ ├── options_test.go │ │ ├── query.go │ │ ├── query_test.go │ │ ├── testdata │ │ │ ├── Makefile │ │ │ ├── VERSION │ │ │ ├── create-basic.textproto │ │ │ ├── create-complex.textproto │ │ │ ├── create-del-noarray-nested.textproto │ │ │ ├── create-del-noarray.textproto │ │ │ ├── create-empty.textproto │ │ │ ├── create-nodel.textproto │ │ │ ├── create-nosplit.textproto │ │ │ ├── create-special-chars.textproto │ │ │ ├── create-st-alone.textproto │ │ │ ├── create-st-multi.textproto │ │ │ ├── create-st-nested.textproto │ │ │ ├── create-st-noarray-nested.textproto │ │ │ ├── create-st-noarray.textproto │ │ │ ├── create-st.textproto │ │ │ ├── delete-exists-precond.textproto │ │ │ ├── delete-no-precond.textproto │ │ │ ├── delete-time-precond.textproto │ │ │ ├── get-basic.textproto │ │ │ ├── set-basic.textproto │ │ │ ├── set-complex.textproto │ │ │ ├── set-del-merge-alone.textproto │ │ │ ├── set-del-merge.textproto │ │ │ ├── set-del-mergeall.textproto │ │ │ ├── set-del-noarray-nested.textproto │ │ │ ├── set-del-noarray.textproto │ │ │ ├── set-del-nomerge.textproto │ │ │ ├── set-del-nonleaf.textproto │ │ │ ├── set-del-wo-merge.textproto │ │ │ ├── set-empty.textproto │ │ │ ├── set-merge-fp.textproto │ │ │ ├── set-merge-nested.textproto │ │ │ ├── set-merge-nonleaf.textproto │ │ │ ├── set-merge-prefix.textproto │ │ │ ├── set-merge-present.textproto │ │ │ ├── set-merge.textproto │ │ │ ├── set-mergeall-empty.textproto │ │ │ ├── set-mergeall-nested.textproto │ │ │ ├── set-mergeall.textproto │ │ │ ├── set-nodel.textproto │ │ │ ├── set-nosplit.textproto │ │ │ ├── set-special-chars.textproto │ │ │ ├── set-st-alone-mergeall.textproto │ │ │ ├── set-st-alone.textproto │ │ │ ├── set-st-merge-both.textproto │ │ │ ├── set-st-merge-nonleaf-alone.textproto │ │ │ ├── set-st-merge-nonleaf.textproto │ │ │ ├── set-st-merge-nowrite.textproto │ │ │ ├── set-st-mergeall.textproto │ │ │ ├── set-st-multi.textproto │ │ │ ├── set-st-nested.textproto │ │ │ ├── set-st-noarray-nested.textproto │ │ │ ├── set-st-noarray.textproto │ │ │ ├── set-st-nomerge.textproto │ │ │ ├── set-st.textproto │ │ │ ├── update-badchar.textproto │ │ │ ├── update-basic.textproto │ │ │ ├── update-complex.textproto │ │ │ ├── update-del-alone.textproto │ │ │ ├── update-del-dot.textproto │ │ │ ├── update-del-nested.textproto │ │ │ ├── update-del-noarray-nested.textproto │ │ │ ├── update-del-noarray.textproto │ │ │ ├── update-del.textproto │ │ │ ├── update-exists-precond.textproto │ │ │ ├── update-fp-empty-component.textproto │ │ │ ├── update-no-paths.textproto │ │ │ ├── update-paths-basic.textproto │ │ │ ├── update-paths-complex.textproto │ │ │ ├── update-paths-del-alone.textproto │ │ │ ├── update-paths-del-nested.textproto │ │ │ ├── update-paths-del-noarray-nested.textproto │ │ │ ├── update-paths-del-noarray.textproto │ │ │ ├── update-paths-del.textproto │ │ │ ├── update-paths-exists-precond.textproto │ │ │ ├── update-paths-fp-dup.textproto │ │ │ ├── update-paths-fp-empty-component.textproto │ │ │ ├── update-paths-fp-empty.textproto │ │ │ ├── update-paths-fp-multi.textproto │ │ │ ├── update-paths-fp-nosplit.textproto │ │ │ ├── update-paths-no-paths.textproto │ │ │ ├── update-paths-prefix-1.textproto │ │ │ ├── update-paths-prefix-2.textproto │ │ │ ├── update-paths-prefix-3.textproto │ │ │ ├── update-paths-special-chars.textproto │ │ │ ├── update-paths-st-alone.textproto │ │ │ ├── update-paths-st-multi.textproto │ │ │ ├── update-paths-st-nested.textproto │ │ │ ├── update-paths-st-noarray-nested.textproto │ │ │ ├── update-paths-st-noarray.textproto │ │ │ ├── update-paths-st.textproto │ │ │ ├── update-paths-uptime.textproto │ │ │ ├── update-prefix-1.textproto │ │ │ ├── update-prefix-2.textproto │ │ │ ├── update-prefix-3.textproto │ │ │ ├── update-quoting.textproto │ │ │ ├── update-split-top-level.textproto │ │ │ ├── update-split.textproto │ │ │ ├── update-st-alone.textproto │ │ │ ├── update-st-dot.textproto │ │ │ ├── update-st-multi.textproto │ │ │ ├── update-st-nested.textproto │ │ │ ├── update-st-noarray-nested.textproto │ │ │ ├── update-st-noarray.textproto │ │ │ ├── update-st.textproto │ │ │ └── update-uptime.textproto │ │ ├── to_value.go │ │ ├── to_value_test.go │ │ ├── transaction.go │ │ ├── transaction_test.go │ │ ├── util_test.go │ │ ├── writebatch.go │ │ └── writebatch_test.go │ │ ├── iam │ │ ├── admin │ │ │ └── apiv1 │ │ │ │ ├── doc.go │ │ │ │ ├── iam_client.go │ │ │ │ ├── iam_client_example_test.go │ │ │ │ ├── mock_test.go │ │ │ │ └── policy_methods.go │ │ ├── iam.go │ │ └── iam_test.go │ │ ├── import_test.go │ │ ├── internal │ │ ├── annotate.go │ │ ├── annotate_test.go │ │ ├── atomiccache │ │ │ ├── atomiccache.go │ │ │ └── atomiccache_test.go │ │ ├── fields │ │ │ ├── fields.go │ │ │ ├── fields_test.go │ │ │ ├── fold.go │ │ │ └── fold_test.go │ │ ├── kokoro │ │ │ ├── build.sh │ │ │ └── kokoro-key.json.enc │ │ ├── optional │ │ │ ├── optional.go │ │ │ └── optional_test.go │ │ ├── pretty │ │ │ ├── diff.go │ │ │ ├── diff_test.go │ │ │ ├── pretty.go │ │ │ └── pretty_test.go │ │ ├── protostruct │ │ │ ├── protostruct.go │ │ │ └── protostruct_test.go │ │ ├── readme │ │ │ ├── Makefile │ │ │ ├── snipmd.awk │ │ │ ├── snippets.go │ │ │ └── testdata │ │ │ │ ├── bad-no-name.go │ │ │ │ ├── bad-no-open.go │ │ │ │ ├── bad-nosnip.md │ │ │ │ ├── bad-spec.md │ │ │ │ ├── bad-unclosed.go │ │ │ │ ├── good.md │ │ │ │ ├── snips.go │ │ │ │ └── want.md │ │ ├── retry.go │ │ ├── retry_test.go │ │ ├── snipdoc │ │ │ ├── README.md │ │ │ ├── sample-makefile │ │ │ └── snipdoc.awk │ │ ├── testutil │ │ │ ├── cmp.go │ │ │ ├── context.go │ │ │ ├── server.go │ │ │ ├── server_test.go │ │ │ ├── unique.go │ │ │ └── unique_test.go │ │ ├── tracecontext │ │ │ ├── tracecontext.go │ │ │ └── tracecontext_test.go │ │ └── version │ │ │ ├── update_version.sh │ │ │ ├── version.go │ │ │ └── version_test.go │ │ ├── keys.tar.enc │ │ ├── language │ │ ├── apiv1 │ │ │ ├── AnalyzeSentiment_smoke_test.go │ │ │ ├── doc.go │ │ │ ├── language_client.go │ │ │ ├── language_client_example_test.go │ │ │ └── mock_test.go │ │ └── apiv1beta2 │ │ │ ├── AnalyzeSentiment_smoke_test.go │ │ │ ├── doc.go │ │ │ ├── language_client.go │ │ │ ├── language_client_example_test.go │ │ │ └── mock_test.go │ │ ├── license_test.go │ │ ├── logging │ │ ├── apiv2 │ │ │ ├── README.md │ │ │ ├── WriteLogEntries_smoke_test.go │ │ │ ├── config_client.go │ │ │ ├── config_client_example_test.go │ │ │ ├── doc.go │ │ │ ├── logging_client.go │ │ │ ├── logging_client_example_test.go │ │ │ ├── metrics_client.go │ │ │ ├── metrics_client_example_test.go │ │ │ ├── mock_test.go │ │ │ └── path_funcs.go │ │ ├── doc.go │ │ ├── examples_test.go │ │ ├── internal │ │ │ ├── common.go │ │ │ └── testing │ │ │ │ ├── equal.go │ │ │ │ ├── fake.go │ │ │ │ └── fake_test.go │ │ ├── logadmin │ │ │ ├── example_entry_iterator_test.go │ │ │ ├── example_metric_iterator_test.go │ │ │ ├── example_paging_test.go │ │ │ ├── example_resource_iterator_test.go │ │ │ ├── example_sink_iterator_test.go │ │ │ ├── examples_test.go │ │ │ ├── logadmin.go │ │ │ ├── logadmin_test.go │ │ │ ├── metrics.go │ │ │ ├── metrics_test.go │ │ │ ├── resources.go │ │ │ ├── resources_test.go │ │ │ ├── sinks.go │ │ │ └── sinks_test.go │ │ ├── logging.go │ │ ├── logging_test.go │ │ └── logging_unexported_test.go │ │ ├── longrunning │ │ ├── autogen │ │ │ ├── doc.go │ │ │ ├── from_conn.go │ │ │ ├── mock_test.go │ │ │ ├── operations_client.go │ │ │ └── operations_client_example_test.go │ │ ├── example_test.go │ │ ├── longrunning.go │ │ └── longrunning_test.go │ │ ├── monitoring │ │ └── apiv3 │ │ │ ├── ListMonitoredResourceDescriptors_smoke_test.go │ │ │ ├── doc.go │ │ │ ├── group_client.go │ │ │ ├── group_client_example_test.go │ │ │ ├── metric_client.go │ │ │ ├── metric_client_example_test.go │ │ │ ├── mock_test.go │ │ │ ├── path_funcs.go │ │ │ ├── uptime_check_client.go │ │ │ └── uptime_check_client_example_test.go │ │ ├── old-news.md │ │ ├── oslogin │ │ └── apiv1beta │ │ │ ├── doc.go │ │ │ ├── mock_test.go │ │ │ ├── os_login_client.go │ │ │ └── os_login_client_example_test.go │ │ ├── profiler │ │ ├── busybench │ │ │ └── busybench.go │ │ ├── integration-test.sh │ │ ├── integration_test.go │ │ ├── mocks │ │ │ └── mock_profiler_client.go │ │ ├── mutex.go │ │ ├── mutex_go17.go │ │ ├── profiler.go │ │ ├── profiler_example_test.go │ │ ├── profiler_test.go │ │ ├── symbolizer.go │ │ └── symbolizer_test.go │ │ ├── pubsub │ │ ├── apiv1 │ │ │ ├── ListTopics_smoke_test.go │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── mock_test.go │ │ │ ├── path_funcs.go │ │ │ ├── publisher_client.go │ │ │ ├── publisher_client_example_test.go │ │ │ ├── subscriber_client.go │ │ │ └── subscriber_client_example_test.go │ │ ├── doc.go │ │ ├── endtoend_test.go │ │ ├── example_subscription_iterator_test.go │ │ ├── example_test.go │ │ ├── example_topic_iterator_test.go │ │ ├── fake_test.go │ │ ├── flow_controller.go │ │ ├── flow_controller_test.go │ │ ├── integration_test.go │ │ ├── internal │ │ │ └── distribution │ │ │ │ ├── distribution.go │ │ │ │ └── distribution_test.go │ │ ├── iterator.go │ │ ├── loadtest │ │ │ ├── benchmark_test.go │ │ │ ├── cmd │ │ │ │ └── loadtest.go │ │ │ ├── loadtest.go │ │ │ └── pb │ │ │ │ └── loadtest.pb.go │ │ ├── message.go │ │ ├── pstest │ │ │ ├── examples_test.go │ │ │ ├── fake.go │ │ │ └── fake_test.go │ │ ├── pubsub.go │ │ ├── pullstream.go │ │ ├── service.go │ │ ├── service_test.go │ │ ├── snapshot.go │ │ ├── streaming_pull_test.go │ │ ├── subscription.go │ │ ├── subscription_test.go │ │ ├── timeout_test.go │ │ ├── topic.go │ │ └── topic_test.go │ │ ├── regen-gapic.sh │ │ ├── rpcreplay │ │ ├── Makefile │ │ ├── doc.go │ │ ├── example_test.go │ │ ├── fake_test.go │ │ ├── proto │ │ │ ├── intstore │ │ │ │ ├── intstore.pb.go │ │ │ │ └── intstore.proto │ │ │ └── rpcreplay │ │ │ │ ├── rpcreplay.pb.go │ │ │ │ └── rpcreplay.proto │ │ ├── rpcreplay.go │ │ └── rpcreplay_test.go │ │ ├── run-tests.sh │ │ ├── spanner │ │ ├── admin │ │ │ ├── database │ │ │ │ └── apiv1 │ │ │ │ │ ├── database_admin_client.go │ │ │ │ │ ├── database_admin_client_example_test.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── mock_test.go │ │ │ │ │ └── path_funcs.go │ │ │ └── instance │ │ │ │ └── apiv1 │ │ │ │ ├── doc.go │ │ │ │ ├── instance_admin_client.go │ │ │ │ ├── instance_admin_client_example_test.go │ │ │ │ ├── mock_test.go │ │ │ │ └── path_funcs.go │ │ ├── apiv1 │ │ │ ├── doc.go │ │ │ ├── mock_test.go │ │ │ ├── path_funcs.go │ │ │ ├── spanner_client.go │ │ │ └── spanner_client_example_test.go │ │ ├── appengine.go │ │ ├── backoff.go │ │ ├── backoff_test.go │ │ ├── client.go │ │ ├── client_test.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── errors_test.go │ │ ├── examples_test.go │ │ ├── go18.go │ │ ├── internal │ │ │ └── testutil │ │ │ │ ├── mockclient.go │ │ │ │ └── mockserver.go │ │ ├── key.go │ │ ├── key_test.go │ │ ├── mutation.go │ │ ├── mutation_test.go │ │ ├── not_appengine.go │ │ ├── not_go18.go │ │ ├── protoutils.go │ │ ├── read.go │ │ ├── read_test.go │ │ ├── retry.go │ │ ├── retry_test.go │ │ ├── row.go │ │ ├── row_test.go │ │ ├── session.go │ │ ├── session_test.go │ │ ├── spanner_test.go │ │ ├── statement.go │ │ ├── statement_test.go │ │ ├── timestampbound.go │ │ ├── timestampbound_test.go │ │ ├── transaction.go │ │ ├── transaction_test.go │ │ ├── util.go │ │ ├── util_test.go │ │ ├── value.go │ │ ├── value_benchmarks_test.go │ │ └── value_test.go │ │ ├── speech │ │ ├── apiv1 │ │ │ ├── Recognize_smoke_test.go │ │ │ ├── doc.go │ │ │ ├── mock_test.go │ │ │ ├── speech_client.go │ │ │ └── speech_client_example_test.go │ │ └── apiv1beta1 │ │ │ ├── SyncRecognize_smoke_test.go │ │ │ ├── doc.go │ │ │ ├── mock_test.go │ │ │ ├── speech_client.go │ │ │ └── speech_client_example_test.go │ │ ├── storage │ │ ├── acl.go │ │ ├── bucket.go │ │ ├── bucket_test.go │ │ ├── copy.go │ │ ├── doc.go │ │ ├── example_test.go │ │ ├── go110.go │ │ ├── go17.go │ │ ├── iam.go │ │ ├── integration_test.go │ │ ├── invoke.go │ │ ├── invoke_test.go │ │ ├── not_go110.go │ │ ├── not_go17.go │ │ ├── notifications.go │ │ ├── notifications_test.go │ │ ├── reader.go │ │ ├── storage.go │ │ ├── storage_test.go │ │ ├── testdata │ │ │ ├── dummy_pem │ │ │ └── dummy_rsa │ │ ├── writer.go │ │ └── writer_test.go │ │ ├── trace │ │ ├── apiv1 │ │ │ ├── ListTraces_smoke_test.go │ │ │ ├── doc.go │ │ │ ├── mock_test.go │ │ │ ├── trace_client.go │ │ │ └── trace_client_example_test.go │ │ ├── apiv2 │ │ │ ├── BatchWriteSpans_smoke_test.go │ │ │ ├── doc.go │ │ │ ├── mock_test.go │ │ │ ├── path_funcs.go │ │ │ ├── trace_client.go │ │ │ └── trace_client_example_test.go │ │ ├── grpc.go │ │ ├── grpc_test.go │ │ ├── http.go │ │ ├── http_test.go │ │ ├── httpexample_test.go │ │ ├── sampling.go │ │ ├── testdata │ │ │ └── helloworld │ │ │ │ ├── helloworld.pb.go │ │ │ │ └── helloworld.proto │ │ ├── trace.go │ │ └── trace_test.go │ │ ├── translate │ │ ├── examples_test.go │ │ ├── internal │ │ │ └── translate │ │ │ │ └── v2 │ │ │ │ ├── README │ │ │ │ ├── regen.sh │ │ │ │ ├── translate-nov2016-api.json │ │ │ │ └── translate-nov2016-gen.go │ │ ├── translate.go │ │ └── translate_test.go │ │ ├── videointelligence │ │ ├── apiv1 │ │ │ ├── doc.go │ │ │ ├── mock_test.go │ │ │ ├── video_intelligence_client.go │ │ │ └── video_intelligence_client_example_test.go │ │ ├── apiv1beta1 │ │ │ ├── doc.go │ │ │ ├── mock_test.go │ │ │ ├── video_intelligence_client.go │ │ │ └── video_intelligence_client_example_test.go │ │ └── apiv1beta2 │ │ │ ├── doc.go │ │ │ ├── mock_test.go │ │ │ ├── video_intelligence_client.go │ │ │ ├── video_intelligence_client_example_test.go │ │ │ └── whitelist.go │ │ └── vision │ │ ├── apiv1 │ │ ├── BatchAnnotateImages_smoke_test.go │ │ ├── README.md │ │ ├── client.go │ │ ├── client_test.go │ │ ├── doc.go │ │ ├── examples_test.go │ │ ├── face.go │ │ ├── face_test.go │ │ ├── image.go │ │ ├── image_annotator_client.go │ │ ├── image_annotator_client_example_test.go │ │ └── mock_test.go │ │ └── apiv1p1beta1 │ │ ├── BatchAnnotateImages_smoke_test.go │ │ ├── doc.go │ │ ├── image_annotator_client.go │ │ ├── image_annotator_client_example_test.go │ │ └── mock_test.go │ ├── github.com │ ├── golang │ │ └── protobuf │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── Make.protobuf │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── _conformance │ │ │ ├── Makefile │ │ │ ├── conformance.go │ │ │ └── conformance_proto │ │ │ │ ├── conformance.pb.go │ │ │ │ └── conformance.proto │ │ │ ├── descriptor │ │ │ ├── descriptor.go │ │ │ └── descriptor_test.go │ │ │ ├── jsonpb │ │ │ ├── jsonpb.go │ │ │ ├── jsonpb_test.go │ │ │ └── jsonpb_test_proto │ │ │ │ ├── Makefile │ │ │ │ ├── more_test_objects.pb.go │ │ │ │ ├── more_test_objects.proto │ │ │ │ ├── test_objects.pb.go │ │ │ │ └── test_objects.proto │ │ │ ├── proto │ │ │ ├── Makefile │ │ │ ├── all_test.go │ │ │ ├── any_test.go │ │ │ ├── clone.go │ │ │ ├── clone_test.go │ │ │ ├── decode.go │ │ │ ├── decode_test.go │ │ │ ├── encode.go │ │ │ ├── encode_test.go │ │ │ ├── equal.go │ │ │ ├── equal_test.go │ │ │ ├── extensions.go │ │ │ ├── extensions_test.go │ │ │ ├── lib.go │ │ │ ├── map_test.go │ │ │ ├── message_set.go │ │ │ ├── message_set_test.go │ │ │ ├── pointer_reflect.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── properties.go │ │ │ ├── proto3_proto │ │ │ │ ├── proto3.pb.go │ │ │ │ └── proto3.proto │ │ │ ├── proto3_test.go │ │ │ ├── size2_test.go │ │ │ ├── size_test.go │ │ │ ├── testdata │ │ │ │ ├── Makefile │ │ │ │ ├── golden_test.go │ │ │ │ ├── test.pb.go │ │ │ │ └── test.proto │ │ │ ├── text.go │ │ │ ├── text_parser.go │ │ │ ├── text_parser_test.go │ │ │ └── text_test.go │ │ │ ├── protoc-gen-go │ │ │ ├── Makefile │ │ │ ├── descriptor │ │ │ │ ├── Makefile │ │ │ │ ├── descriptor.pb.go │ │ │ │ └── descriptor.proto │ │ │ ├── doc.go │ │ │ ├── generator │ │ │ │ ├── Makefile │ │ │ │ ├── generator.go │ │ │ │ └── name_test.go │ │ │ ├── grpc │ │ │ │ └── grpc.go │ │ │ ├── link_grpc.go │ │ │ ├── main.go │ │ │ ├── plugin │ │ │ │ ├── Makefile │ │ │ │ ├── plugin.pb.go │ │ │ │ ├── plugin.pb.golden │ │ │ │ └── plugin.proto │ │ │ └── testdata │ │ │ │ ├── Makefile │ │ │ │ ├── extension_base.proto │ │ │ │ ├── extension_extra.proto │ │ │ │ ├── extension_test.go │ │ │ │ ├── extension_user.proto │ │ │ │ ├── grpc.proto │ │ │ │ ├── imp.pb.go.golden │ │ │ │ ├── imp.proto │ │ │ │ ├── imp2.proto │ │ │ │ ├── imp3.proto │ │ │ │ ├── main_test.go │ │ │ │ ├── multi │ │ │ │ ├── multi1.proto │ │ │ │ ├── multi2.proto │ │ │ │ └── multi3.proto │ │ │ │ ├── my_test │ │ │ │ ├── test.pb.go │ │ │ │ ├── test.pb.go.golden │ │ │ │ └── test.proto │ │ │ │ └── proto3.proto │ │ │ └── ptypes │ │ │ ├── any.go │ │ │ ├── any │ │ │ ├── any.pb.go │ │ │ └── any.proto │ │ │ ├── any_test.go │ │ │ ├── doc.go │ │ │ ├── duration.go │ │ │ ├── duration │ │ │ ├── duration.pb.go │ │ │ └── duration.proto │ │ │ ├── duration_test.go │ │ │ ├── empty │ │ │ ├── empty.pb.go │ │ │ └── empty.proto │ │ │ ├── regen.sh │ │ │ ├── struct │ │ │ ├── struct.pb.go │ │ │ └── struct.proto │ │ │ ├── timestamp.go │ │ │ ├── timestamp │ │ │ ├── timestamp.pb.go │ │ │ └── timestamp.proto │ │ │ ├── timestamp_test.go │ │ │ └── wrappers │ │ │ ├── wrappers.pb.go │ │ │ └── wrappers.proto │ └── googleapis │ │ └── gax-go │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── call_option.go │ │ ├── call_option_test.go │ │ ├── gax.go │ │ ├── header.go │ │ ├── header_test.go │ │ ├── invoke.go │ │ └── invoke_test.go │ ├── golang.org │ └── x │ │ ├── net │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README.md │ │ ├── bpf │ │ │ ├── asm.go │ │ │ ├── constants.go │ │ │ ├── doc.go │ │ │ ├── instructions.go │ │ │ ├── instructions_test.go │ │ │ ├── setter.go │ │ │ ├── testdata │ │ │ │ ├── all_instructions.bpf │ │ │ │ └── all_instructions.txt │ │ │ ├── vm.go │ │ │ ├── vm_aluop_test.go │ │ │ ├── vm_bpf_test.go │ │ │ ├── vm_extension_test.go │ │ │ ├── vm_instructions.go │ │ │ ├── vm_jump_test.go │ │ │ ├── vm_load_test.go │ │ │ ├── vm_ret_test.go │ │ │ ├── vm_scratch_test.go │ │ │ └── vm_test.go │ │ ├── codereview.cfg │ │ ├── context │ │ │ ├── context.go │ │ │ ├── context_test.go │ │ │ ├── ctxhttp │ │ │ │ ├── ctxhttp.go │ │ │ │ ├── ctxhttp_17_test.go │ │ │ │ ├── ctxhttp_pre17.go │ │ │ │ ├── ctxhttp_pre17_test.go │ │ │ │ └── ctxhttp_test.go │ │ │ ├── go17.go │ │ │ ├── go19.go │ │ │ ├── pre_go17.go │ │ │ ├── pre_go19.go │ │ │ └── withtimeout_test.go │ │ ├── dict │ │ │ └── dict.go │ │ ├── dns │ │ │ └── dnsmessage │ │ │ │ ├── example_test.go │ │ │ │ ├── message.go │ │ │ │ └── message_test.go │ │ ├── html │ │ │ ├── atom │ │ │ │ ├── atom.go │ │ │ │ ├── atom_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── table.go │ │ │ │ └── table_test.go │ │ │ ├── charset │ │ │ │ ├── charset.go │ │ │ │ ├── charset_test.go │ │ │ │ └── testdata │ │ │ │ │ ├── HTTP-charset.html │ │ │ │ │ ├── HTTP-vs-UTF-8-BOM.html │ │ │ │ │ ├── HTTP-vs-meta-charset.html │ │ │ │ │ ├── HTTP-vs-meta-content.html │ │ │ │ │ ├── No-encoding-declaration.html │ │ │ │ │ ├── README │ │ │ │ │ ├── UTF-16BE-BOM.html │ │ │ │ │ ├── UTF-16LE-BOM.html │ │ │ │ │ ├── UTF-8-BOM-vs-meta-charset.html │ │ │ │ │ ├── UTF-8-BOM-vs-meta-content.html │ │ │ │ │ ├── meta-charset-attribute.html │ │ │ │ │ └── meta-content-attribute.html │ │ │ ├── const.go │ │ │ ├── doc.go │ │ │ ├── doctype.go │ │ │ ├── entity.go │ │ │ ├── entity_test.go │ │ │ ├── escape.go │ │ │ ├── escape_test.go │ │ │ ├── example_test.go │ │ │ ├── foreign.go │ │ │ ├── node.go │ │ │ ├── node_test.go │ │ │ ├── parse.go │ │ │ ├── parse_test.go │ │ │ ├── render.go │ │ │ ├── render_test.go │ │ │ ├── testdata │ │ │ │ ├── go1.html │ │ │ │ └── webkit │ │ │ │ │ ├── README │ │ │ │ │ ├── adoption01.dat │ │ │ │ │ ├── adoption02.dat │ │ │ │ │ ├── comments01.dat │ │ │ │ │ ├── doctype01.dat │ │ │ │ │ ├── entities01.dat │ │ │ │ │ ├── entities02.dat │ │ │ │ │ ├── html5test-com.dat │ │ │ │ │ ├── inbody01.dat │ │ │ │ │ ├── isindex.dat │ │ │ │ │ ├── pending-spec-changes-plain-text-unsafe.dat │ │ │ │ │ ├── pending-spec-changes.dat │ │ │ │ │ ├── plain-text-unsafe.dat │ │ │ │ │ ├── scriptdata01.dat │ │ │ │ │ ├── scripted │ │ │ │ │ ├── adoption01.dat │ │ │ │ │ └── webkit01.dat │ │ │ │ │ ├── tables01.dat │ │ │ │ │ ├── tests1.dat │ │ │ │ │ ├── tests10.dat │ │ │ │ │ ├── tests11.dat │ │ │ │ │ ├── tests12.dat │ │ │ │ │ ├── tests14.dat │ │ │ │ │ ├── tests15.dat │ │ │ │ │ ├── tests16.dat │ │ │ │ │ ├── tests17.dat │ │ │ │ │ ├── tests18.dat │ │ │ │ │ ├── tests19.dat │ │ │ │ │ ├── tests2.dat │ │ │ │ │ ├── tests20.dat │ │ │ │ │ ├── tests21.dat │ │ │ │ │ ├── tests22.dat │ │ │ │ │ ├── tests23.dat │ │ │ │ │ ├── tests24.dat │ │ │ │ │ ├── tests25.dat │ │ │ │ │ ├── tests26.dat │ │ │ │ │ ├── tests3.dat │ │ │ │ │ ├── tests4.dat │ │ │ │ │ ├── tests5.dat │ │ │ │ │ ├── tests6.dat │ │ │ │ │ ├── tests7.dat │ │ │ │ │ ├── tests8.dat │ │ │ │ │ ├── tests9.dat │ │ │ │ │ ├── tests_innerHTML_1.dat │ │ │ │ │ ├── tricky01.dat │ │ │ │ │ ├── webkit01.dat │ │ │ │ │ └── webkit02.dat │ │ │ ├── token.go │ │ │ └── token_test.go │ │ ├── http │ │ │ └── httpproxy │ │ │ │ ├── export_test.go │ │ │ │ ├── go19_test.go │ │ │ │ ├── proxy.go │ │ │ │ └── proxy_test.go │ │ ├── http2 │ │ │ ├── .gitignore │ │ │ ├── Dockerfile │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── ciphers.go │ │ │ ├── ciphers_test.go │ │ │ ├── client_conn_pool.go │ │ │ ├── configure_transport.go │ │ │ ├── databuffer.go │ │ │ ├── databuffer_test.go │ │ │ ├── errors.go │ │ │ ├── errors_test.go │ │ │ ├── flow.go │ │ │ ├── flow_test.go │ │ │ ├── frame.go │ │ │ ├── frame_test.go │ │ │ ├── go16.go │ │ │ ├── go17.go │ │ │ ├── go17_not18.go │ │ │ ├── go18.go │ │ │ ├── go18_test.go │ │ │ ├── go19.go │ │ │ ├── go19_test.go │ │ │ ├── gotrack.go │ │ │ ├── gotrack_test.go │ │ │ ├── h2demo │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── h2demo.go │ │ │ │ ├── launch.go │ │ │ │ ├── rootCA.key │ │ │ │ ├── rootCA.pem │ │ │ │ ├── rootCA.srl │ │ │ │ ├── server.crt │ │ │ │ ├── server.key │ │ │ │ └── tmpl.go │ │ │ ├── h2i │ │ │ │ ├── README.md │ │ │ │ └── h2i.go │ │ │ ├── headermap.go │ │ │ ├── hpack │ │ │ │ ├── encode.go │ │ │ │ ├── encode_test.go │ │ │ │ ├── hpack.go │ │ │ │ ├── hpack_test.go │ │ │ │ ├── huffman.go │ │ │ │ ├── tables.go │ │ │ │ └── tables_test.go │ │ │ ├── http2.go │ │ │ ├── http2_test.go │ │ │ ├── not_go16.go │ │ │ ├── not_go17.go │ │ │ ├── not_go18.go │ │ │ ├── not_go19.go │ │ │ ├── pipe.go │ │ │ ├── pipe_test.go │ │ │ ├── server.go │ │ │ ├── server_push_test.go │ │ │ ├── server_test.go │ │ │ ├── testdata │ │ │ │ └── draft-ietf-httpbis-http2.xml │ │ │ ├── transport.go │ │ │ ├── transport_test.go │ │ │ ├── write.go │ │ │ ├── writesched.go │ │ │ ├── writesched_priority.go │ │ │ ├── writesched_priority_test.go │ │ │ ├── writesched_random.go │ │ │ ├── writesched_random_test.go │ │ │ ├── writesched_test.go │ │ │ └── z_spec_test.go │ │ ├── icmp │ │ │ ├── dstunreach.go │ │ │ ├── echo.go │ │ │ ├── endpoint.go │ │ │ ├── example_test.go │ │ │ ├── extension.go │ │ │ ├── extension_test.go │ │ │ ├── helper_posix.go │ │ │ ├── interface.go │ │ │ ├── ipv4.go │ │ │ ├── ipv4_test.go │ │ │ ├── ipv6.go │ │ │ ├── listen_posix.go │ │ │ ├── listen_stub.go │ │ │ ├── message.go │ │ │ ├── message_test.go │ │ │ ├── messagebody.go │ │ │ ├── mpls.go │ │ │ ├── multipart.go │ │ │ ├── multipart_test.go │ │ │ ├── packettoobig.go │ │ │ ├── paramprob.go │ │ │ ├── ping_test.go │ │ │ ├── sys_freebsd.go │ │ │ └── timeexceeded.go │ │ ├── idna │ │ │ ├── example_test.go │ │ │ ├── idna.go │ │ │ ├── idna_test.go │ │ │ ├── punycode.go │ │ │ ├── punycode_test.go │ │ │ ├── tables.go │ │ │ ├── trie.go │ │ │ └── trieval.go │ │ ├── internal │ │ │ ├── iana │ │ │ │ ├── const.go │ │ │ │ └── gen.go │ │ │ ├── nettest │ │ │ │ ├── helper_bsd.go │ │ │ │ ├── helper_nobsd.go │ │ │ │ ├── helper_posix.go │ │ │ │ ├── helper_stub.go │ │ │ │ ├── helper_unix.go │ │ │ │ ├── helper_windows.go │ │ │ │ ├── interface.go │ │ │ │ ├── rlimit.go │ │ │ │ └── stack.go │ │ │ ├── socket │ │ │ │ ├── cmsghdr.go │ │ │ │ ├── cmsghdr_bsd.go │ │ │ │ ├── cmsghdr_linux_32bit.go │ │ │ │ ├── cmsghdr_linux_64bit.go │ │ │ │ ├── cmsghdr_solaris_64bit.go │ │ │ │ ├── cmsghdr_stub.go │ │ │ │ ├── defs_darwin.go │ │ │ │ ├── defs_dragonfly.go │ │ │ │ ├── defs_freebsd.go │ │ │ │ ├── defs_linux.go │ │ │ │ ├── defs_netbsd.go │ │ │ │ ├── defs_openbsd.go │ │ │ │ ├── defs_solaris.go │ │ │ │ ├── error_unix.go │ │ │ │ ├── error_windows.go │ │ │ │ ├── iovec_32bit.go │ │ │ │ ├── iovec_64bit.go │ │ │ │ ├── iovec_solaris_64bit.go │ │ │ │ ├── iovec_stub.go │ │ │ │ ├── mmsghdr_stub.go │ │ │ │ ├── mmsghdr_unix.go │ │ │ │ ├── msghdr_bsd.go │ │ │ │ ├── msghdr_bsdvar.go │ │ │ │ ├── msghdr_linux.go │ │ │ │ ├── msghdr_linux_32bit.go │ │ │ │ ├── msghdr_linux_64bit.go │ │ │ │ ├── msghdr_openbsd.go │ │ │ │ ├── msghdr_solaris_64bit.go │ │ │ │ ├── msghdr_stub.go │ │ │ │ ├── rawconn.go │ │ │ │ ├── rawconn_mmsg.go │ │ │ │ ├── rawconn_msg.go │ │ │ │ ├── rawconn_nommsg.go │ │ │ │ ├── rawconn_nomsg.go │ │ │ │ ├── rawconn_stub.go │ │ │ │ ├── reflect.go │ │ │ │ ├── socket.go │ │ │ │ ├── socket_go1_9_test.go │ │ │ │ ├── socket_test.go │ │ │ │ ├── sys.go │ │ │ │ ├── sys_bsd.go │ │ │ │ ├── sys_bsdvar.go │ │ │ │ ├── sys_darwin.go │ │ │ │ ├── sys_dragonfly.go │ │ │ │ ├── sys_linux.go │ │ │ │ ├── sys_linux_386.go │ │ │ │ ├── sys_linux_386.s │ │ │ │ ├── sys_linux_amd64.go │ │ │ │ ├── sys_linux_arm.go │ │ │ │ ├── sys_linux_arm64.go │ │ │ │ ├── sys_linux_mips.go │ │ │ │ ├── sys_linux_mips64.go │ │ │ │ ├── sys_linux_mips64le.go │ │ │ │ ├── sys_linux_mipsle.go │ │ │ │ ├── sys_linux_ppc64.go │ │ │ │ ├── sys_linux_ppc64le.go │ │ │ │ ├── sys_linux_s390x.go │ │ │ │ ├── sys_linux_s390x.s │ │ │ │ ├── sys_netbsd.go │ │ │ │ ├── sys_posix.go │ │ │ │ ├── sys_solaris.go │ │ │ │ ├── sys_solaris_amd64.s │ │ │ │ ├── sys_stub.go │ │ │ │ ├── sys_unix.go │ │ │ │ ├── sys_windows.go │ │ │ │ ├── zsys_darwin_386.go │ │ │ │ ├── zsys_darwin_amd64.go │ │ │ │ ├── zsys_darwin_arm.go │ │ │ │ ├── zsys_darwin_arm64.go │ │ │ │ ├── zsys_dragonfly_amd64.go │ │ │ │ ├── zsys_freebsd_386.go │ │ │ │ ├── zsys_freebsd_amd64.go │ │ │ │ ├── zsys_freebsd_arm.go │ │ │ │ ├── zsys_linux_386.go │ │ │ │ ├── zsys_linux_amd64.go │ │ │ │ ├── zsys_linux_arm.go │ │ │ │ ├── zsys_linux_arm64.go │ │ │ │ ├── zsys_linux_mips.go │ │ │ │ ├── zsys_linux_mips64.go │ │ │ │ ├── zsys_linux_mips64le.go │ │ │ │ ├── zsys_linux_mipsle.go │ │ │ │ ├── zsys_linux_ppc64.go │ │ │ │ ├── zsys_linux_ppc64le.go │ │ │ │ ├── zsys_linux_s390x.go │ │ │ │ ├── zsys_netbsd_386.go │ │ │ │ ├── zsys_netbsd_amd64.go │ │ │ │ ├── zsys_netbsd_arm.go │ │ │ │ ├── zsys_openbsd_386.go │ │ │ │ ├── zsys_openbsd_amd64.go │ │ │ │ ├── zsys_openbsd_arm.go │ │ │ │ └── zsys_solaris_amd64.go │ │ │ └── timeseries │ │ │ │ ├── timeseries.go │ │ │ │ └── timeseries_test.go │ │ ├── ipv4 │ │ │ ├── batch.go │ │ │ ├── bpf_test.go │ │ │ ├── control.go │ │ │ ├── control_bsd.go │ │ │ ├── control_pktinfo.go │ │ │ ├── control_stub.go │ │ │ ├── control_test.go │ │ │ ├── control_unix.go │ │ │ ├── control_windows.go │ │ │ ├── defs_darwin.go │ │ │ ├── defs_dragonfly.go │ │ │ ├── defs_freebsd.go │ │ │ ├── defs_linux.go │ │ │ ├── defs_netbsd.go │ │ │ ├── defs_openbsd.go │ │ │ ├── defs_solaris.go │ │ │ ├── dgramopt.go │ │ │ ├── doc.go │ │ │ ├── endpoint.go │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── genericopt.go │ │ │ ├── header.go │ │ │ ├── header_test.go │ │ │ ├── helper.go │ │ │ ├── iana.go │ │ │ ├── icmp.go │ │ │ ├── icmp_linux.go │ │ │ ├── icmp_stub.go │ │ │ ├── icmp_test.go │ │ │ ├── multicast_test.go │ │ │ ├── multicastlistener_test.go │ │ │ ├── multicastsockopt_test.go │ │ │ ├── packet.go │ │ │ ├── packet_go1_8.go │ │ │ ├── packet_go1_9.go │ │ │ ├── payload.go │ │ │ ├── payload_cmsg.go │ │ │ ├── payload_cmsg_go1_8.go │ │ │ ├── payload_cmsg_go1_9.go │ │ │ ├── payload_nocmsg.go │ │ │ ├── readwrite_go1_8_test.go │ │ │ ├── readwrite_go1_9_test.go │ │ │ ├── readwrite_test.go │ │ │ ├── sockopt.go │ │ │ ├── sockopt_posix.go │ │ │ ├── sockopt_stub.go │ │ │ ├── sys_asmreq.go │ │ │ ├── sys_asmreq_stub.go │ │ │ ├── sys_asmreqn.go │ │ │ ├── sys_asmreqn_stub.go │ │ │ ├── sys_bpf.go │ │ │ ├── sys_bpf_stub.go │ │ │ ├── sys_bsd.go │ │ │ ├── sys_darwin.go │ │ │ ├── sys_dragonfly.go │ │ │ ├── sys_freebsd.go │ │ │ ├── sys_linux.go │ │ │ ├── sys_solaris.go │ │ │ ├── sys_ssmreq.go │ │ │ ├── sys_ssmreq_stub.go │ │ │ ├── sys_stub.go │ │ │ ├── sys_windows.go │ │ │ ├── unicast_test.go │ │ │ ├── unicastsockopt_test.go │ │ │ ├── zsys_darwin.go │ │ │ ├── zsys_dragonfly.go │ │ │ ├── zsys_freebsd_386.go │ │ │ ├── zsys_freebsd_amd64.go │ │ │ ├── zsys_freebsd_arm.go │ │ │ ├── zsys_linux_386.go │ │ │ ├── zsys_linux_amd64.go │ │ │ ├── zsys_linux_arm.go │ │ │ ├── zsys_linux_arm64.go │ │ │ ├── zsys_linux_mips.go │ │ │ ├── zsys_linux_mips64.go │ │ │ ├── zsys_linux_mips64le.go │ │ │ ├── zsys_linux_mipsle.go │ │ │ ├── zsys_linux_ppc.go │ │ │ ├── zsys_linux_ppc64.go │ │ │ ├── zsys_linux_ppc64le.go │ │ │ ├── zsys_linux_s390x.go │ │ │ ├── zsys_netbsd.go │ │ │ ├── zsys_openbsd.go │ │ │ └── zsys_solaris.go │ │ ├── ipv6 │ │ │ ├── batch.go │ │ │ ├── bpf_test.go │ │ │ ├── control.go │ │ │ ├── control_rfc2292_unix.go │ │ │ ├── control_rfc3542_unix.go │ │ │ ├── control_stub.go │ │ │ ├── control_test.go │ │ │ ├── control_unix.go │ │ │ ├── control_windows.go │ │ │ ├── defs_darwin.go │ │ │ ├── defs_dragonfly.go │ │ │ ├── defs_freebsd.go │ │ │ ├── defs_linux.go │ │ │ ├── defs_netbsd.go │ │ │ ├── defs_openbsd.go │ │ │ ├── defs_solaris.go │ │ │ ├── dgramopt.go │ │ │ ├── doc.go │ │ │ ├── endpoint.go │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── genericopt.go │ │ │ ├── header.go │ │ │ ├── header_test.go │ │ │ ├── helper.go │ │ │ ├── iana.go │ │ │ ├── icmp.go │ │ │ ├── icmp_bsd.go │ │ │ ├── icmp_linux.go │ │ │ ├── icmp_solaris.go │ │ │ ├── icmp_stub.go │ │ │ ├── icmp_test.go │ │ │ ├── icmp_windows.go │ │ │ ├── mocktransponder_test.go │ │ │ ├── multicast_test.go │ │ │ ├── multicastlistener_test.go │ │ │ ├── multicastsockopt_test.go │ │ │ ├── payload.go │ │ │ ├── payload_cmsg.go │ │ │ ├── payload_cmsg_go1_8.go │ │ │ ├── payload_cmsg_go1_9.go │ │ │ ├── payload_nocmsg.go │ │ │ ├── readwrite_go1_8_test.go │ │ │ ├── readwrite_go1_9_test.go │ │ │ ├── readwrite_test.go │ │ │ ├── sockopt.go │ │ │ ├── sockopt_posix.go │ │ │ ├── sockopt_stub.go │ │ │ ├── sockopt_test.go │ │ │ ├── sys_asmreq.go │ │ │ ├── sys_asmreq_stub.go │ │ │ ├── sys_bpf.go │ │ │ ├── sys_bpf_stub.go │ │ │ ├── sys_bsd.go │ │ │ ├── sys_darwin.go │ │ │ ├── sys_freebsd.go │ │ │ ├── sys_linux.go │ │ │ ├── sys_solaris.go │ │ │ ├── sys_ssmreq.go │ │ │ ├── sys_ssmreq_stub.go │ │ │ ├── sys_stub.go │ │ │ ├── sys_windows.go │ │ │ ├── unicast_test.go │ │ │ ├── unicastsockopt_test.go │ │ │ ├── zsys_darwin.go │ │ │ ├── zsys_dragonfly.go │ │ │ ├── zsys_freebsd_386.go │ │ │ ├── zsys_freebsd_amd64.go │ │ │ ├── zsys_freebsd_arm.go │ │ │ ├── zsys_linux_386.go │ │ │ ├── zsys_linux_amd64.go │ │ │ ├── zsys_linux_arm.go │ │ │ ├── zsys_linux_arm64.go │ │ │ ├── zsys_linux_mips.go │ │ │ ├── zsys_linux_mips64.go │ │ │ ├── zsys_linux_mips64le.go │ │ │ ├── zsys_linux_mipsle.go │ │ │ ├── zsys_linux_ppc.go │ │ │ ├── zsys_linux_ppc64.go │ │ │ ├── zsys_linux_ppc64le.go │ │ │ ├── zsys_linux_s390x.go │ │ │ ├── zsys_netbsd.go │ │ │ ├── zsys_openbsd.go │ │ │ └── zsys_solaris.go │ │ ├── lex │ │ │ └── httplex │ │ │ │ ├── httplex.go │ │ │ │ └── httplex_test.go │ │ ├── lif │ │ │ ├── address.go │ │ │ ├── address_test.go │ │ │ ├── binary.go │ │ │ ├── defs_solaris.go │ │ │ ├── lif.go │ │ │ ├── link.go │ │ │ ├── link_test.go │ │ │ ├── sys.go │ │ │ ├── sys_solaris_amd64.s │ │ │ ├── syscall.go │ │ │ └── zsys_solaris_amd64.go │ │ ├── nettest │ │ │ ├── conntest.go │ │ │ ├── conntest_go16.go │ │ │ ├── conntest_go17.go │ │ │ └── conntest_test.go │ │ ├── netutil │ │ │ ├── listen.go │ │ │ └── listen_test.go │ │ ├── proxy │ │ │ ├── direct.go │ │ │ ├── per_host.go │ │ │ ├── per_host_test.go │ │ │ ├── proxy.go │ │ │ ├── proxy_test.go │ │ │ └── socks5.go │ │ ├── publicsuffix │ │ │ ├── gen.go │ │ │ ├── list.go │ │ │ ├── list_test.go │ │ │ ├── table.go │ │ │ └── table_test.go │ │ ├── route │ │ │ ├── address.go │ │ │ ├── address_darwin_test.go │ │ │ ├── address_test.go │ │ │ ├── binary.go │ │ │ ├── defs_darwin.go │ │ │ ├── defs_dragonfly.go │ │ │ ├── defs_freebsd.go │ │ │ ├── defs_netbsd.go │ │ │ ├── defs_openbsd.go │ │ │ ├── interface.go │ │ │ ├── interface_announce.go │ │ │ ├── interface_classic.go │ │ │ ├── interface_freebsd.go │ │ │ ├── interface_multicast.go │ │ │ ├── interface_openbsd.go │ │ │ ├── message.go │ │ │ ├── message_darwin_test.go │ │ │ ├── message_freebsd_test.go │ │ │ ├── message_test.go │ │ │ ├── route.go │ │ │ ├── route_classic.go │ │ │ ├── route_openbsd.go │ │ │ ├── route_test.go │ │ │ ├── sys.go │ │ │ ├── sys_darwin.go │ │ │ ├── sys_dragonfly.go │ │ │ ├── sys_freebsd.go │ │ │ ├── sys_netbsd.go │ │ │ ├── sys_openbsd.go │ │ │ ├── syscall.go │ │ │ ├── zsys_darwin.go │ │ │ ├── zsys_dragonfly.go │ │ │ ├── zsys_freebsd_386.go │ │ │ ├── zsys_freebsd_amd64.go │ │ │ ├── zsys_freebsd_arm.go │ │ │ ├── zsys_netbsd.go │ │ │ └── zsys_openbsd.go │ │ ├── trace │ │ │ ├── events.go │ │ │ ├── histogram.go │ │ │ ├── histogram_test.go │ │ │ ├── trace.go │ │ │ ├── trace_go16.go │ │ │ ├── trace_go17.go │ │ │ └── trace_test.go │ │ ├── webdav │ │ │ ├── file.go │ │ │ ├── file_go1.6.go │ │ │ ├── file_go1.7.go │ │ │ ├── file_test.go │ │ │ ├── if.go │ │ │ ├── if_test.go │ │ │ ├── internal │ │ │ │ └── xml │ │ │ │ │ ├── README │ │ │ │ │ ├── atom_test.go │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── marshal.go │ │ │ │ │ ├── marshal_test.go │ │ │ │ │ ├── read.go │ │ │ │ │ ├── read_test.go │ │ │ │ │ ├── typeinfo.go │ │ │ │ │ ├── xml.go │ │ │ │ │ └── xml_test.go │ │ │ ├── litmus_test_server.go │ │ │ ├── lock.go │ │ │ ├── lock_test.go │ │ │ ├── prop.go │ │ │ ├── prop_test.go │ │ │ ├── webdav.go │ │ │ ├── webdav_test.go │ │ │ ├── xml.go │ │ │ └── xml_test.go │ │ ├── websocket │ │ │ ├── client.go │ │ │ ├── dial.go │ │ │ ├── dial_test.go │ │ │ ├── exampledial_test.go │ │ │ ├── examplehandler_test.go │ │ │ ├── hybi.go │ │ │ ├── hybi_test.go │ │ │ ├── server.go │ │ │ ├── websocket.go │ │ │ └── websocket_test.go │ │ └── xsrftoken │ │ │ ├── xsrf.go │ │ │ └── xsrf_test.go │ │ ├── oauth2 │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── amazon │ │ │ └── amazon.go │ │ ├── bitbucket │ │ │ └── bitbucket.go │ │ ├── clientcredentials │ │ │ ├── clientcredentials.go │ │ │ └── clientcredentials_test.go │ │ ├── example_test.go │ │ ├── facebook │ │ │ └── facebook.go │ │ ├── fitbit │ │ │ └── fitbit.go │ │ ├── foursquare │ │ │ └── foursquare.go │ │ ├── github │ │ │ └── github.go │ │ ├── google │ │ │ ├── appengine.go │ │ │ ├── appengine_hook.go │ │ │ ├── appengineflex_hook.go │ │ │ ├── default.go │ │ │ ├── example_test.go │ │ │ ├── google.go │ │ │ ├── google_test.go │ │ │ ├── jwt.go │ │ │ ├── jwt_test.go │ │ │ ├── sdk.go │ │ │ ├── sdk_test.go │ │ │ └── testdata │ │ │ │ └── gcloud │ │ │ │ ├── credentials │ │ │ │ └── properties │ │ ├── heroku │ │ │ └── heroku.go │ │ ├── hipchat │ │ │ └── hipchat.go │ │ ├── internal │ │ │ ├── client_appengine.go │ │ │ ├── doc.go │ │ │ ├── oauth2.go │ │ │ ├── token.go │ │ │ ├── token_test.go │ │ │ └── transport.go │ │ ├── jws │ │ │ ├── jws.go │ │ │ └── jws_test.go │ │ ├── jwt │ │ │ ├── example_test.go │ │ │ ├── jwt.go │ │ │ └── jwt_test.go │ │ ├── linkedin │ │ │ └── linkedin.go │ │ ├── mailru │ │ │ └── mailru.go │ │ ├── mediamath │ │ │ └── mediamath.go │ │ ├── microsoft │ │ │ └── microsoft.go │ │ ├── oauth2.go │ │ ├── oauth2_test.go │ │ ├── odnoklassniki │ │ │ └── odnoklassniki.go │ │ ├── paypal │ │ │ └── paypal.go │ │ ├── slack │ │ │ └── slack.go │ │ ├── spotify │ │ │ └── spotify.go │ │ ├── token.go │ │ ├── token_test.go │ │ ├── transport.go │ │ ├── transport_test.go │ │ ├── twitch │ │ │ └── twitch.go │ │ ├── uber │ │ │ └── uber.go │ │ ├── vk │ │ │ └── vk.go │ │ ├── yahoo │ │ │ └── yahoo.go │ │ └── yandex │ │ │ └── yandex.go │ │ ├── sync │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README.md │ │ ├── codereview.cfg │ │ ├── errgroup │ │ │ ├── errgroup.go │ │ │ ├── errgroup_example_md5all_test.go │ │ │ └── errgroup_test.go │ │ ├── semaphore │ │ │ ├── semaphore.go │ │ │ ├── semaphore_bench_test.go │ │ │ ├── semaphore_example_test.go │ │ │ └── semaphore_test.go │ │ ├── singleflight │ │ │ ├── singleflight.go │ │ │ └── singleflight_test.go │ │ └── syncmap │ │ │ ├── map.go │ │ │ ├── map_bench_test.go │ │ │ ├── map_reference_test.go │ │ │ └── map_test.go │ │ ├── text │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README.md │ │ ├── cases │ │ │ ├── cases.go │ │ │ ├── context.go │ │ │ ├── context_test.go │ │ │ ├── example_test.go │ │ │ ├── fold.go │ │ │ ├── fold_test.go │ │ │ ├── gen.go │ │ │ ├── gen_trieval.go │ │ │ ├── icu.go │ │ │ ├── icu_test.go │ │ │ ├── info.go │ │ │ ├── map.go │ │ │ ├── map_test.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables10.0.0_test.go │ │ │ ├── tables9.0.0.go │ │ │ ├── tables9.0.0_test.go │ │ │ └── trieval.go │ │ ├── cmd │ │ │ └── gotext │ │ │ │ ├── common.go │ │ │ │ ├── doc.go │ │ │ │ ├── examples │ │ │ │ ├── extract │ │ │ │ │ ├── catalog.go │ │ │ │ │ ├── locales │ │ │ │ │ │ ├── de │ │ │ │ │ │ │ ├── messages.gotext.json │ │ │ │ │ │ │ └── out.gotext.json │ │ │ │ │ │ ├── en-US │ │ │ │ │ │ │ ├── messages.gotext.json │ │ │ │ │ │ │ └── out.gotext.json │ │ │ │ │ │ └── zh │ │ │ │ │ │ │ ├── messages.gotext.json │ │ │ │ │ │ │ └── out.gotext.json │ │ │ │ │ └── main.go │ │ │ │ ├── extract_http │ │ │ │ │ ├── catalog_gen.go │ │ │ │ │ ├── locales │ │ │ │ │ │ ├── de │ │ │ │ │ │ │ └── out.gotext.json │ │ │ │ │ │ ├── en-US │ │ │ │ │ │ │ └── out.gotext.json │ │ │ │ │ │ ├── en │ │ │ │ │ │ │ └── out.gotext.json │ │ │ │ │ │ └── zh │ │ │ │ │ │ │ └── out.gotext.json │ │ │ │ │ ├── main.go │ │ │ │ │ └── pkg │ │ │ │ │ │ └── pkg.go │ │ │ │ └── rewrite │ │ │ │ │ ├── main.go │ │ │ │ │ └── printer.go │ │ │ │ ├── extract.go │ │ │ │ ├── generate.go │ │ │ │ ├── main.go │ │ │ │ ├── rewrite.go │ │ │ │ └── update.go │ │ ├── codereview.cfg │ │ ├── collate │ │ │ ├── build │ │ │ │ ├── builder.go │ │ │ │ ├── builder_test.go │ │ │ │ ├── colelem.go │ │ │ │ ├── colelem_test.go │ │ │ │ ├── contract.go │ │ │ │ ├── contract_test.go │ │ │ │ ├── order.go │ │ │ │ ├── order_test.go │ │ │ │ ├── table.go │ │ │ │ ├── trie.go │ │ │ │ └── trie_test.go │ │ │ ├── collate.go │ │ │ ├── collate_test.go │ │ │ ├── export_test.go │ │ │ ├── index.go │ │ │ ├── maketables.go │ │ │ ├── option.go │ │ │ ├── option_test.go │ │ │ ├── reg_test.go │ │ │ ├── sort.go │ │ │ ├── sort_test.go │ │ │ ├── table_test.go │ │ │ ├── tables.go │ │ │ └── tools │ │ │ │ └── colcmp │ │ │ │ ├── Makefile │ │ │ │ ├── chars.go │ │ │ │ ├── col.go │ │ │ │ ├── colcmp.go │ │ │ │ ├── darwin.go │ │ │ │ ├── gen.go │ │ │ │ └── icu.go │ │ ├── currency │ │ │ ├── common.go │ │ │ ├── currency.go │ │ │ ├── currency_test.go │ │ │ ├── example_test.go │ │ │ ├── format.go │ │ │ ├── format_test.go │ │ │ ├── gen.go │ │ │ ├── gen_common.go │ │ │ ├── query.go │ │ │ ├── query_test.go │ │ │ ├── tables.go │ │ │ └── tables_test.go │ │ ├── date │ │ │ ├── data_test.go │ │ │ ├── gen.go │ │ │ ├── gen_test.go │ │ │ └── tables.go │ │ ├── doc.go │ │ ├── encoding │ │ │ ├── charmap │ │ │ │ ├── charmap.go │ │ │ │ ├── charmap_test.go │ │ │ │ ├── maketables.go │ │ │ │ └── tables.go │ │ │ ├── encoding.go │ │ │ ├── encoding_test.go │ │ │ ├── example_test.go │ │ │ ├── htmlindex │ │ │ │ ├── gen.go │ │ │ │ ├── htmlindex.go │ │ │ │ ├── htmlindex_test.go │ │ │ │ ├── map.go │ │ │ │ └── tables.go │ │ │ ├── ianaindex │ │ │ │ ├── example_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── ianaindex.go │ │ │ │ ├── ianaindex_test.go │ │ │ │ └── tables.go │ │ │ ├── internal │ │ │ │ ├── enctest │ │ │ │ │ └── enctest.go │ │ │ │ ├── identifier │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── identifier.go │ │ │ │ │ └── mib.go │ │ │ │ └── internal.go │ │ │ ├── japanese │ │ │ │ ├── all.go │ │ │ │ ├── all_test.go │ │ │ │ ├── eucjp.go │ │ │ │ ├── iso2022jp.go │ │ │ │ ├── maketables.go │ │ │ │ ├── shiftjis.go │ │ │ │ └── tables.go │ │ │ ├── korean │ │ │ │ ├── all_test.go │ │ │ │ ├── euckr.go │ │ │ │ ├── maketables.go │ │ │ │ └── tables.go │ │ │ ├── simplifiedchinese │ │ │ │ ├── all.go │ │ │ │ ├── all_test.go │ │ │ │ ├── gbk.go │ │ │ │ ├── hzgb2312.go │ │ │ │ ├── maketables.go │ │ │ │ └── tables.go │ │ │ ├── testdata │ │ │ │ ├── candide-gb18030.txt │ │ │ │ ├── candide-utf-16le.txt │ │ │ │ ├── candide-utf-32be.txt │ │ │ │ ├── candide-utf-8.txt │ │ │ │ ├── candide-windows-1252.txt │ │ │ │ ├── rashomon-euc-jp.txt │ │ │ │ ├── rashomon-iso-2022-jp.txt │ │ │ │ ├── rashomon-shift-jis.txt │ │ │ │ ├── rashomon-utf-8.txt │ │ │ │ ├── sunzi-bingfa-gb-levels-1-and-2-hz-gb2312.txt │ │ │ │ ├── sunzi-bingfa-gb-levels-1-and-2-utf-8.txt │ │ │ │ ├── sunzi-bingfa-simplified-gbk.txt │ │ │ │ ├── sunzi-bingfa-simplified-utf-8.txt │ │ │ │ ├── sunzi-bingfa-traditional-big5.txt │ │ │ │ ├── sunzi-bingfa-traditional-utf-8.txt │ │ │ │ ├── unsu-joh-eun-nal-euc-kr.txt │ │ │ │ └── unsu-joh-eun-nal-utf-8.txt │ │ │ ├── traditionalchinese │ │ │ │ ├── all_test.go │ │ │ │ ├── big5.go │ │ │ │ ├── maketables.go │ │ │ │ └── tables.go │ │ │ └── unicode │ │ │ │ ├── override.go │ │ │ │ ├── unicode.go │ │ │ │ ├── unicode_test.go │ │ │ │ └── utf32 │ │ │ │ ├── utf32.go │ │ │ │ └── utf32_test.go │ │ ├── feature │ │ │ └── plural │ │ │ │ ├── common.go │ │ │ │ ├── data_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen_common.go │ │ │ │ ├── message.go │ │ │ │ ├── message_test.go │ │ │ │ ├── plural.go │ │ │ │ ├── plural_test.go │ │ │ │ └── tables.go │ │ ├── gen.go │ │ ├── internal │ │ │ ├── catmsg │ │ │ │ ├── catmsg.go │ │ │ │ ├── catmsg_test.go │ │ │ │ ├── codec.go │ │ │ │ ├── varint.go │ │ │ │ └── varint_test.go │ │ │ ├── cldrtree │ │ │ │ ├── cldrtree.go │ │ │ │ ├── cldrtree_test.go │ │ │ │ ├── generate.go │ │ │ │ ├── option.go │ │ │ │ ├── testdata │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ └── main │ │ │ │ │ │ │ │ └── root.xml │ │ │ │ │ │ └── output.go │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── common │ │ │ │ │ │ └── main │ │ │ │ │ │ │ ├── en.xml │ │ │ │ │ │ │ ├── en_001.xml │ │ │ │ │ │ │ ├── en_GB.xml │ │ │ │ │ │ │ └── root.xml │ │ │ │ │ │ └── output.go │ │ │ │ ├── tree.go │ │ │ │ └── type.go │ │ │ ├── colltab │ │ │ │ ├── collate_test.go │ │ │ │ ├── collelem.go │ │ │ │ ├── collelem_test.go │ │ │ │ ├── colltab.go │ │ │ │ ├── colltab_test.go │ │ │ │ ├── contract.go │ │ │ │ ├── contract_test.go │ │ │ │ ├── iter.go │ │ │ │ ├── iter_test.go │ │ │ │ ├── numeric.go │ │ │ │ ├── numeric_test.go │ │ │ │ ├── table.go │ │ │ │ ├── trie.go │ │ │ │ ├── trie_test.go │ │ │ │ ├── weighter.go │ │ │ │ └── weighter_test.go │ │ │ ├── export │ │ │ │ ├── README │ │ │ │ └── idna │ │ │ │ │ ├── common_test.go │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── gen10.0.0_test.go │ │ │ │ │ ├── gen9.0.0_test.go │ │ │ │ │ ├── gen_common.go │ │ │ │ │ ├── gen_trieval.go │ │ │ │ │ ├── idna10.0.0.go │ │ │ │ │ ├── idna10.0.0_test.go │ │ │ │ │ ├── idna9.0.0.go │ │ │ │ │ ├── idna9.0.0_test.go │ │ │ │ │ ├── idna_test.go │ │ │ │ │ ├── punycode.go │ │ │ │ │ ├── punycode_test.go │ │ │ │ │ ├── tables10.0.0.go │ │ │ │ │ ├── tables9.0.0.go │ │ │ │ │ ├── trie.go │ │ │ │ │ └── trieval.go │ │ │ ├── format │ │ │ │ ├── format.go │ │ │ │ ├── parser.go │ │ │ │ └── parser_test.go │ │ │ ├── gen.go │ │ │ ├── gen │ │ │ │ ├── code.go │ │ │ │ └── gen.go │ │ │ ├── gen_test.go │ │ │ ├── internal.go │ │ │ ├── internal_test.go │ │ │ ├── match.go │ │ │ ├── match_test.go │ │ │ ├── number │ │ │ │ ├── common.go │ │ │ │ ├── decimal.go │ │ │ │ ├── decimal_test.go │ │ │ │ ├── format.go │ │ │ │ ├── format_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen_common.go │ │ │ │ ├── number.go │ │ │ │ ├── number_test.go │ │ │ │ ├── pattern.go │ │ │ │ ├── pattern_test.go │ │ │ │ ├── roundingmode_string.go │ │ │ │ ├── tables.go │ │ │ │ └── tables_test.go │ │ │ ├── stringset │ │ │ │ ├── set.go │ │ │ │ └── set_test.go │ │ │ ├── tables.go │ │ │ ├── tag │ │ │ │ ├── tag.go │ │ │ │ └── tag_test.go │ │ │ ├── testtext │ │ │ │ ├── codesize.go │ │ │ │ ├── flag.go │ │ │ │ ├── gc.go │ │ │ │ ├── gccgo.go │ │ │ │ ├── go1_6.go │ │ │ │ ├── go1_7.go │ │ │ │ └── text.go │ │ │ ├── triegen │ │ │ │ ├── compact.go │ │ │ │ ├── data_test.go │ │ │ │ ├── example_compact_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── gen_test.go │ │ │ │ ├── print.go │ │ │ │ └── triegen.go │ │ │ ├── ucd │ │ │ │ ├── example_test.go │ │ │ │ ├── ucd.go │ │ │ │ └── ucd_test.go │ │ │ └── utf8internal │ │ │ │ └── utf8internal.go │ │ ├── language │ │ │ ├── Makefile │ │ │ ├── common.go │ │ │ ├── coverage.go │ │ │ ├── coverage_test.go │ │ │ ├── display │ │ │ │ ├── dict.go │ │ │ │ ├── dict_test.go │ │ │ │ ├── display.go │ │ │ │ ├── display_test.go │ │ │ │ ├── examples_test.go │ │ │ │ ├── lookup.go │ │ │ │ ├── maketables.go │ │ │ │ └── tables.go │ │ │ ├── doc.go │ │ │ ├── examples_test.go │ │ │ ├── gen.go │ │ │ ├── gen_common.go │ │ │ ├── gen_index.go │ │ │ ├── go1_1.go │ │ │ ├── go1_2.go │ │ │ ├── httpexample_test.go │ │ │ ├── index.go │ │ │ ├── language.go │ │ │ ├── language_test.go │ │ │ ├── lookup.go │ │ │ ├── lookup_test.go │ │ │ ├── match.go │ │ │ ├── match_test.go │ │ │ ├── parse.go │ │ │ ├── parse_test.go │ │ │ ├── tables.go │ │ │ ├── tags.go │ │ │ └── testdata │ │ │ │ ├── CLDRLocaleMatcherTest.txt │ │ │ │ └── GoLocaleMatcherTest.txt │ │ ├── message │ │ │ ├── catalog.go │ │ │ ├── catalog │ │ │ │ ├── catalog.go │ │ │ │ ├── catalog_test.go │ │ │ │ ├── dict.go │ │ │ │ ├── go19.go │ │ │ │ └── gopre19.go │ │ │ ├── catalog_test.go │ │ │ ├── doc.go │ │ │ ├── examples_test.go │ │ │ ├── fmt_test.go │ │ │ ├── format.go │ │ │ ├── message.go │ │ │ ├── message_test.go │ │ │ ├── pipeline │ │ │ │ ├── extract.go │ │ │ │ ├── generate.go │ │ │ │ ├── go19_test.go │ │ │ │ ├── message.go │ │ │ │ ├── pipeline.go │ │ │ │ ├── pipeline_test.go │ │ │ │ ├── rewrite.go │ │ │ │ └── testdata │ │ │ │ │ └── test1 │ │ │ │ │ ├── catalog_gen.go │ │ │ │ │ ├── catalog_gen.go.want │ │ │ │ │ ├── catalog_test.go │ │ │ │ │ ├── extracted.gotext.json │ │ │ │ │ ├── extracted.gotext.json.want │ │ │ │ │ ├── locales │ │ │ │ │ ├── de │ │ │ │ │ │ ├── messages.gotext.json │ │ │ │ │ │ ├── out.gotext.json │ │ │ │ │ │ └── out.gotext.json.want │ │ │ │ │ ├── en-US │ │ │ │ │ │ ├── messages.gotext.json │ │ │ │ │ │ ├── out.gotext.json │ │ │ │ │ │ └── out.gotext.json.want │ │ │ │ │ └── zh │ │ │ │ │ │ ├── messages.gotext.json │ │ │ │ │ │ ├── out.gotext.json │ │ │ │ │ │ └── out.gotext.json.want │ │ │ │ │ └── test1.go │ │ │ └── print.go │ │ ├── number │ │ │ ├── doc.go │ │ │ ├── examples_test.go │ │ │ ├── format.go │ │ │ ├── format_test.go │ │ │ ├── number.go │ │ │ ├── number_test.go │ │ │ └── option.go │ │ ├── runes │ │ │ ├── cond.go │ │ │ ├── cond_test.go │ │ │ ├── example_test.go │ │ │ ├── runes.go │ │ │ └── runes_test.go │ │ ├── search │ │ │ ├── index.go │ │ │ ├── pattern.go │ │ │ ├── pattern_test.go │ │ │ ├── search.go │ │ │ └── tables.go │ │ ├── secure │ │ │ ├── bidirule │ │ │ │ ├── bench_test.go │ │ │ │ ├── bidirule.go │ │ │ │ ├── bidirule10.0.0.go │ │ │ │ ├── bidirule10.0.0_test.go │ │ │ │ ├── bidirule9.0.0.go │ │ │ │ ├── bidirule9.0.0_test.go │ │ │ │ └── bidirule_test.go │ │ │ ├── doc.go │ │ │ └── precis │ │ │ │ ├── benchmark_test.go │ │ │ │ ├── class.go │ │ │ │ ├── class_test.go │ │ │ │ ├── context.go │ │ │ │ ├── doc.go │ │ │ │ ├── enforce10.0.0_test.go │ │ │ │ ├── enforce9.0.0_test.go │ │ │ │ ├── enforce_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen_trieval.go │ │ │ │ ├── nickname.go │ │ │ │ ├── options.go │ │ │ │ ├── profile.go │ │ │ │ ├── profile_test.go │ │ │ │ ├── profiles.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ ├── tables_test.go │ │ │ │ ├── transformer.go │ │ │ │ └── trieval.go │ │ ├── transform │ │ │ ├── examples_test.go │ │ │ ├── transform.go │ │ │ └── transform_test.go │ │ ├── unicode │ │ │ ├── bidi │ │ │ │ ├── bidi.go │ │ │ │ ├── bracket.go │ │ │ │ ├── core.go │ │ │ │ ├── core_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen_ranges.go │ │ │ │ ├── gen_trieval.go │ │ │ │ ├── prop.go │ │ │ │ ├── ranges_test.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ ├── tables_test.go │ │ │ │ └── trieval.go │ │ │ ├── cldr │ │ │ │ ├── base.go │ │ │ │ ├── cldr.go │ │ │ │ ├── cldr_test.go │ │ │ │ ├── collate.go │ │ │ │ ├── collate_test.go │ │ │ │ ├── data_test.go │ │ │ │ ├── decode.go │ │ │ │ ├── examples_test.go │ │ │ │ ├── makexml.go │ │ │ │ ├── resolve.go │ │ │ │ ├── resolve_test.go │ │ │ │ ├── slice.go │ │ │ │ ├── slice_test.go │ │ │ │ └── xml.go │ │ │ ├── doc.go │ │ │ ├── norm │ │ │ │ ├── composition.go │ │ │ │ ├── composition_test.go │ │ │ │ ├── data10.0.0_test.go │ │ │ │ ├── data9.0.0_test.go │ │ │ │ ├── example_iter_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── forminfo.go │ │ │ │ ├── forminfo_test.go │ │ │ │ ├── input.go │ │ │ │ ├── iter.go │ │ │ │ ├── iter_test.go │ │ │ │ ├── maketables.go │ │ │ │ ├── normalize.go │ │ │ │ ├── normalize_test.go │ │ │ │ ├── readwriter.go │ │ │ │ ├── readwriter_test.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ ├── transform.go │ │ │ │ ├── transform_test.go │ │ │ │ ├── trie.go │ │ │ │ ├── triegen.go │ │ │ │ └── ucd_test.go │ │ │ ├── rangetable │ │ │ │ ├── gen.go │ │ │ │ ├── merge.go │ │ │ │ ├── merge_test.go │ │ │ │ ├── rangetable.go │ │ │ │ ├── rangetable_test.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ └── tables9.0.0.go │ │ │ └── runenames │ │ │ │ ├── bits.go │ │ │ │ ├── example_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen_bits.go │ │ │ │ ├── runenames.go │ │ │ │ ├── runenames_test.go │ │ │ │ └── tables.go │ │ └── width │ │ │ ├── common_test.go │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── gen_common.go │ │ │ ├── gen_trieval.go │ │ │ ├── kind_string.go │ │ │ ├── runes_test.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── tables_test.go │ │ │ ├── transform.go │ │ │ ├── transform_test.go │ │ │ ├── trieval.go │ │ │ └── width.go │ │ └── time │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README.md │ │ └── rate │ │ ├── rate.go │ │ ├── rate_go16.go │ │ ├── rate_go17.go │ │ └── rate_test.go │ └── google.golang.org │ ├── api │ ├── .gitignore │ ├── .hgtags │ ├── .travis.yml │ ├── AUTHORS │ ├── CONTRIBUTING.md │ ├── CONTRIBUTORS │ ├── GettingStarted.md │ ├── LICENSE │ ├── NOTES │ ├── README.md │ ├── TODO │ ├── abusiveexperiencereport │ │ └── v1 │ │ │ ├── abusiveexperiencereport-api.json │ │ │ └── abusiveexperiencereport-gen.go │ ├── acceleratedmobilepageurl │ │ └── v1 │ │ │ ├── acceleratedmobilepageurl-api.json │ │ │ └── acceleratedmobilepageurl-gen.go │ ├── adexchangebuyer │ │ ├── v1.2 │ │ │ ├── adexchangebuyer-api.json │ │ │ └── adexchangebuyer-gen.go │ │ ├── v1.3 │ │ │ ├── adexchangebuyer-api.json │ │ │ └── adexchangebuyer-gen.go │ │ └── v1.4 │ │ │ ├── adexchangebuyer-api.json │ │ │ └── adexchangebuyer-gen.go │ ├── adexchangebuyer2 │ │ └── v2beta1 │ │ │ ├── adexchangebuyer2-api.json │ │ │ └── adexchangebuyer2-gen.go │ ├── adexchangeseller │ │ ├── v1.1 │ │ │ ├── adexchangeseller-api.json │ │ │ └── adexchangeseller-gen.go │ │ ├── v1 │ │ │ ├── adexchangeseller-api.json │ │ │ └── adexchangeseller-gen.go │ │ └── v2.0 │ │ │ ├── adexchangeseller-api.json │ │ │ └── adexchangeseller-gen.go │ ├── adexperiencereport │ │ └── v1 │ │ │ ├── adexperiencereport-api.json │ │ │ └── adexperiencereport-gen.go │ ├── admin │ │ ├── datatransfer │ │ │ └── v1 │ │ │ │ ├── admin-api.json │ │ │ │ └── admin-gen.go │ │ ├── directory │ │ │ └── v1 │ │ │ │ ├── admin-api.json │ │ │ │ └── admin-gen.go │ │ └── reports │ │ │ └── v1 │ │ │ ├── admin-api.json │ │ │ └── admin-gen.go │ ├── adsense │ │ ├── v1.3 │ │ │ ├── adsense-api.json │ │ │ └── adsense-gen.go │ │ └── v1.4 │ │ │ ├── adsense-api.json │ │ │ └── adsense-gen.go │ ├── adsensehost │ │ └── v4.1 │ │ │ ├── adsensehost-api.json │ │ │ └── adsensehost-gen.go │ ├── analytics │ │ ├── v2.4 │ │ │ ├── analytics-api.json │ │ │ └── analytics-gen.go │ │ └── v3 │ │ │ ├── analytics-api.json │ │ │ └── analytics-gen.go │ ├── analyticsreporting │ │ └── v4 │ │ │ ├── analyticsreporting-api.json │ │ │ └── analyticsreporting-gen.go │ ├── androiddeviceprovisioning │ │ └── v1 │ │ │ ├── androiddeviceprovisioning-api.json │ │ │ └── androiddeviceprovisioning-gen.go │ ├── androidenterprise │ │ └── v1 │ │ │ ├── androidenterprise-api.json │ │ │ └── androidenterprise-gen.go │ ├── androidmanagement │ │ └── v1 │ │ │ ├── androidmanagement-api.json │ │ │ └── androidmanagement-gen.go │ ├── androidpublisher │ │ ├── v1.1 │ │ │ ├── androidpublisher-api.json │ │ │ └── androidpublisher-gen.go │ │ ├── v1 │ │ │ ├── androidpublisher-api.json │ │ │ └── androidpublisher-gen.go │ │ └── v2 │ │ │ ├── androidpublisher-api.json │ │ │ └── androidpublisher-gen.go │ ├── api-list.json │ ├── appengine │ │ ├── v1 │ │ │ ├── appengine-api.json │ │ │ └── appengine-gen.go │ │ ├── v1alpha │ │ │ ├── appengine-api.json │ │ │ └── appengine-gen.go │ │ ├── v1beta │ │ │ ├── appengine-api.json │ │ │ └── appengine-gen.go │ │ ├── v1beta4 │ │ │ ├── appengine-api.json │ │ │ └── appengine-gen.go │ │ └── v1beta5 │ │ │ ├── appengine-api.json │ │ │ └── appengine-gen.go │ ├── appsactivity │ │ └── v1 │ │ │ ├── appsactivity-api.json │ │ │ └── appsactivity-gen.go │ ├── appstate │ │ └── v1 │ │ │ ├── appstate-api.json │ │ │ └── appstate-gen.go │ ├── bigquery │ │ └── v2 │ │ │ ├── bigquery-api.json │ │ │ └── bigquery-gen.go │ ├── bigquerydatatransfer │ │ └── v1 │ │ │ ├── bigquerydatatransfer-api.json │ │ │ └── bigquerydatatransfer-gen.go │ ├── blogger │ │ ├── v2 │ │ │ ├── blogger-api.json │ │ │ └── blogger-gen.go │ │ └── v3 │ │ │ ├── blogger-api.json │ │ │ └── blogger-gen.go │ ├── books │ │ └── v1 │ │ │ ├── books-api.json │ │ │ └── books-gen.go │ ├── calendar │ │ └── v3 │ │ │ ├── calendar-api.json │ │ │ └── calendar-gen.go │ ├── civicinfo │ │ └── v2 │ │ │ ├── civicinfo-api.json │ │ │ └── civicinfo-gen.go │ ├── classroom │ │ └── v1 │ │ │ ├── classroom-api.json │ │ │ └── classroom-gen.go │ ├── cloudbilling │ │ └── v1 │ │ │ ├── cloudbilling-api.json │ │ │ └── cloudbilling-gen.go │ ├── cloudbuild │ │ └── v1 │ │ │ ├── cloudbuild-api.json │ │ │ └── cloudbuild-gen.go │ ├── clouddebugger │ │ └── v2 │ │ │ ├── clouddebugger-api.json │ │ │ └── clouddebugger-gen.go │ ├── clouderrorreporting │ │ └── v1beta1 │ │ │ ├── clouderrorreporting-api.json │ │ │ └── clouderrorreporting-gen.go │ ├── cloudfunctions │ │ ├── v1 │ │ │ ├── cloudfunctions-api.json │ │ │ └── cloudfunctions-gen.go │ │ └── v1beta2 │ │ │ ├── cloudfunctions-api.json │ │ │ └── cloudfunctions-gen.go │ ├── cloudiot │ │ ├── v1 │ │ │ ├── cloudiot-api.json │ │ │ └── cloudiot-gen.go │ │ └── v1beta1 │ │ │ ├── cloudiot-api.json │ │ │ └── cloudiot-gen.go │ ├── cloudkms │ │ └── v1 │ │ │ ├── cloudkms-api.json │ │ │ └── cloudkms-gen.go │ ├── cloudmonitoring │ │ └── v2beta2 │ │ │ ├── cloudmonitoring-api.json │ │ │ └── cloudmonitoring-gen.go │ ├── cloudresourcemanager │ │ ├── v1 │ │ │ ├── cloudresourcemanager-api.json │ │ │ └── cloudresourcemanager-gen.go │ │ ├── v1beta1 │ │ │ ├── cloudresourcemanager-api.json │ │ │ └── cloudresourcemanager-gen.go │ │ └── v2beta1 │ │ │ ├── cloudresourcemanager-api.json │ │ │ └── cloudresourcemanager-gen.go │ ├── cloudshell │ │ ├── v1 │ │ │ ├── cloudshell-api.json │ │ │ └── cloudshell-gen.go │ │ └── v1alpha1 │ │ │ ├── cloudshell-api.json │ │ │ └── cloudshell-gen.go │ ├── cloudtasks │ │ └── v2beta2 │ │ │ ├── cloudtasks-api.json │ │ │ └── cloudtasks-gen.go │ ├── cloudtrace │ │ ├── v1 │ │ │ ├── cloudtrace-api.json │ │ │ └── cloudtrace-gen.go │ │ └── v2 │ │ │ ├── cloudtrace-api.json │ │ │ └── cloudtrace-gen.go │ ├── clouduseraccounts │ │ ├── v0.alpha │ │ │ ├── clouduseraccounts-api.json │ │ │ └── clouduseraccounts-gen.go │ │ ├── v0.beta │ │ │ ├── clouduseraccounts-api.json │ │ │ └── clouduseraccounts-gen.go │ │ ├── vm_alpha │ │ │ ├── clouduseraccounts-api.json │ │ │ └── clouduseraccounts-gen.go │ │ └── vm_beta │ │ │ ├── clouduseraccounts-api.json │ │ │ └── clouduseraccounts-gen.go │ ├── compute │ │ ├── v0.alpha │ │ │ ├── compute-api.json │ │ │ └── compute-gen.go │ │ ├── v0.beta │ │ │ ├── compute-api.json │ │ │ └── compute-gen.go │ │ └── v1 │ │ │ ├── compute-api.json │ │ │ └── compute-gen.go │ ├── consumersurveys │ │ └── v2 │ │ │ ├── consumersurveys-api.json │ │ │ └── consumersurveys-gen.go │ ├── container │ │ ├── v1 │ │ │ ├── container-api.json │ │ │ └── container-gen.go │ │ └── v1beta1 │ │ │ ├── container-api.json │ │ │ └── container-gen.go │ ├── content │ │ ├── v2 │ │ │ ├── content-api.json │ │ │ └── content-gen.go │ │ └── v2sandbox │ │ │ ├── content-api.json │ │ │ └── content-gen.go │ ├── customsearch │ │ └── v1 │ │ │ ├── customsearch-api.json │ │ │ └── customsearch-gen.go │ ├── dataflow │ │ └── v1b3 │ │ │ ├── dataflow-api.json │ │ │ └── dataflow-gen.go │ ├── dataproc │ │ ├── v1 │ │ │ ├── dataproc-api.json │ │ │ └── dataproc-gen.go │ │ ├── v1alpha1 │ │ │ ├── dataproc-api.json │ │ │ └── dataproc-gen.go │ │ ├── v1beta1 │ │ │ ├── dataproc-api.json │ │ │ └── dataproc-gen.go │ │ └── v1beta2 │ │ │ ├── dataproc-api.json │ │ │ └── dataproc-gen.go │ ├── datastore │ │ ├── v1 │ │ │ ├── datastore-api.json │ │ │ └── datastore-gen.go │ │ ├── v1beta1 │ │ │ ├── datastore-api.json │ │ │ └── datastore-gen.go │ │ └── v1beta3 │ │ │ ├── datastore-api.json │ │ │ └── datastore-gen.go │ ├── deploymentmanager │ │ ├── v0.alpha │ │ │ ├── deploymentmanager-api.json │ │ │ └── deploymentmanager-gen.go │ │ ├── v2 │ │ │ ├── deploymentmanager-api.json │ │ │ └── deploymentmanager-gen.go │ │ └── v2beta │ │ │ ├── deploymentmanager-api.json │ │ │ └── deploymentmanager-gen.go │ ├── dfareporting │ │ ├── v2.7 │ │ │ ├── dfareporting-api.json │ │ │ └── dfareporting-gen.go │ │ └── v3.0 │ │ │ ├── dfareporting-api.json │ │ │ └── dfareporting-gen.go │ ├── dialogflow │ │ └── v2beta1 │ │ │ ├── dialogflow-api.json │ │ │ └── dialogflow-gen.go │ ├── digitalassetlinks │ │ └── v1 │ │ │ ├── digitalassetlinks-api.json │ │ │ └── digitalassetlinks-gen.go │ ├── discovery │ │ └── v1 │ │ │ ├── discovery-api.json │ │ │ └── discovery-gen.go │ ├── dlp │ │ ├── v2beta1 │ │ │ ├── dlp-api.json │ │ │ └── dlp-gen.go │ │ └── v2beta2 │ │ │ ├── dlp-api.json │ │ │ └── dlp-gen.go │ ├── dns │ │ ├── v1 │ │ │ ├── dns-api.json │ │ │ └── dns-gen.go │ │ ├── v1beta2 │ │ │ ├── dns-api.json │ │ │ └── dns-gen.go │ │ └── v2beta1 │ │ │ ├── dns-api.json │ │ │ └── dns-gen.go │ ├── doubleclickbidmanager │ │ └── v1 │ │ │ ├── doubleclickbidmanager-api.json │ │ │ └── doubleclickbidmanager-gen.go │ ├── doubleclicksearch │ │ └── v2 │ │ │ ├── doubleclicksearch-api.json │ │ │ └── doubleclicksearch-gen.go │ ├── drive │ │ ├── v2 │ │ │ ├── drive-api.json │ │ │ └── drive-gen.go │ │ └── v3 │ │ │ ├── drive-api.json │ │ │ └── drive-gen.go │ ├── examples │ │ ├── bigquery.go │ │ ├── books.go │ │ ├── calendar.go │ │ ├── compute.go │ │ ├── debug.go │ │ ├── drive.go │ │ ├── fitness.go │ │ ├── gmail.go │ │ ├── gopher.png │ │ ├── main.go │ │ ├── mirror.go │ │ ├── prediction.go │ │ ├── pubsub.go │ │ ├── storage.go │ │ ├── tasks.go │ │ ├── urlshortener.go │ │ └── youtube.go │ ├── firebasedynamiclinks │ │ └── v1 │ │ │ ├── firebasedynamiclinks-api.json │ │ │ └── firebasedynamiclinks-gen.go │ ├── firebaseremoteconfig │ │ └── v1 │ │ │ ├── firebaseremoteconfig-api.json │ │ │ └── firebaseremoteconfig-gen.go │ ├── firebaserules │ │ └── v1 │ │ │ ├── firebaserules-api.json │ │ │ └── firebaserules-gen.go │ ├── firestore │ │ └── v1beta1 │ │ │ ├── firestore-api.json │ │ │ └── firestore-gen.go │ ├── fitness │ │ └── v1 │ │ │ ├── fitness-api.json │ │ │ └── fitness-gen.go │ ├── fusiontables │ │ ├── v1 │ │ │ ├── fusiontables-api.json │ │ │ └── fusiontables-gen.go │ │ └── v2 │ │ │ ├── fusiontables-api.json │ │ │ └── fusiontables-gen.go │ ├── games │ │ └── v1 │ │ │ ├── games-api.json │ │ │ └── games-gen.go │ ├── gamesconfiguration │ │ └── v1configuration │ │ │ ├── gamesconfiguration-api.json │ │ │ └── gamesconfiguration-gen.go │ ├── gamesmanagement │ │ └── v1management │ │ │ ├── gamesmanagement-api.json │ │ │ └── gamesmanagement-gen.go │ ├── genomics │ │ ├── v1 │ │ │ ├── genomics-api.json │ │ │ └── genomics-gen.go │ │ └── v1alpha2 │ │ │ ├── genomics-api.json │ │ │ └── genomics-gen.go │ ├── gensupport │ │ ├── backoff.go │ │ ├── backoff_test.go │ │ ├── buffer.go │ │ ├── buffer_test.go │ │ ├── doc.go │ │ ├── header.go │ │ ├── header_test.go │ │ ├── json.go │ │ ├── json_test.go │ │ ├── jsonfloat.go │ │ ├── jsonfloat_test.go │ │ ├── media.go │ │ ├── media_test.go │ │ ├── params.go │ │ ├── resumable.go │ │ ├── resumable_test.go │ │ ├── retry.go │ │ ├── retry_test.go │ │ ├── send.go │ │ ├── send_test.go │ │ └── util_test.go │ ├── gmail │ │ └── v1 │ │ │ ├── gmail-api.json │ │ │ └── gmail-gen.go │ ├── google-api-go-generator │ │ ├── Makefile │ │ ├── clients_test.go │ │ ├── docurls.go │ │ ├── gen.go │ │ ├── gen_test.go │ │ ├── internal │ │ │ └── disco │ │ │ │ ├── disco.go │ │ │ │ ├── disco_test.go │ │ │ │ └── testdata │ │ │ │ ├── error.json │ │ │ │ └── test-api.json │ │ ├── paging_test.go │ │ └── testdata │ │ │ ├── any.json │ │ │ ├── any.want │ │ │ ├── arrayofarray-1.json │ │ │ ├── arrayofarray-1.want │ │ │ ├── arrayofenum.json │ │ │ ├── arrayofenum.want │ │ │ ├── arrayofmapofobjects.json │ │ │ ├── arrayofmapofobjects.want │ │ │ ├── arrayofmapofstrings.json │ │ │ ├── arrayofmapofstrings.want │ │ │ ├── blogger-3.json │ │ │ ├── blogger-3.want │ │ │ ├── floats.json │ │ │ ├── floats.want │ │ │ ├── getwithoutbody.json │ │ │ ├── getwithoutbody.want │ │ │ ├── mapofany.json │ │ │ ├── mapofany.want │ │ │ ├── mapofarrayofobjects.json │ │ │ ├── mapofarrayofobjects.want │ │ │ ├── mapofint64strings.json │ │ │ ├── mapofint64strings.want │ │ │ ├── mapofobjects.json │ │ │ ├── mapofobjects.want │ │ │ ├── mapofstrings-1.json │ │ │ ├── mapofstrings-1.want │ │ │ ├── paging.json │ │ │ ├── param-rename.json │ │ │ ├── param-rename.want │ │ │ ├── quotednum.json │ │ │ ├── quotednum.want │ │ │ ├── repeated.json │ │ │ ├── repeated.want │ │ │ ├── resource-named-service.json │ │ │ ├── resource-named-service.want │ │ │ ├── unfortunatedefaults.json │ │ │ ├── unfortunatedefaults.want │ │ │ ├── variants.json │ │ │ ├── variants.want │ │ │ ├── wrapnewlines.json │ │ │ └── wrapnewlines.want │ ├── googleapi │ │ ├── googleapi.go │ │ ├── googleapi_test.go │ │ ├── internal │ │ │ └── uritemplates │ │ │ │ ├── LICENSE │ │ │ │ ├── uritemplates.go │ │ │ │ ├── uritemplates_test.go │ │ │ │ └── utils.go │ │ ├── transport │ │ │ └── apikey.go │ │ ├── types.go │ │ └── types_test.go │ ├── groupsmigration │ │ └── v1 │ │ │ ├── groupsmigration-api.json │ │ │ └── groupsmigration-gen.go │ ├── groupssettings │ │ └── v1 │ │ │ ├── groupssettings-api.json │ │ │ └── groupssettings-gen.go │ ├── iam │ │ └── v1 │ │ │ ├── iam-api.json │ │ │ └── iam-gen.go │ ├── identitytoolkit │ │ └── v3 │ │ │ ├── identitytoolkit-api.json │ │ │ └── identitytoolkit-gen.go │ ├── integration-tests │ │ └── storage │ │ │ └── integration_test.go │ ├── internal │ │ ├── creds.go │ │ ├── creds_test.go │ │ ├── pool.go │ │ ├── pool_test.go │ │ ├── service-account.json │ │ ├── settings.go │ │ └── settings_test.go │ ├── iterator │ │ ├── examples_test.go │ │ ├── iterator.go │ │ ├── iterator_test.go │ │ └── testing │ │ │ ├── testing.go │ │ │ └── testing_test.go │ ├── key.json.enc │ ├── kgsearch │ │ └── v1 │ │ │ ├── kgsearch-api.json │ │ │ └── kgsearch-gen.go │ ├── language │ │ ├── v1 │ │ │ ├── language-api.json │ │ │ └── language-gen.go │ │ ├── v1beta1 │ │ │ ├── language-api.json │ │ │ └── language-gen.go │ │ └── v1beta2 │ │ │ ├── language-api.json │ │ │ └── language-gen.go │ ├── lib │ │ └── codereview │ │ │ └── codereview.cfg │ ├── licensing │ │ └── v1 │ │ │ ├── licensing-api.json │ │ │ └── licensing-gen.go │ ├── logging │ │ ├── v2 │ │ │ ├── logging-api.json │ │ │ └── logging-gen.go │ │ └── v2beta1 │ │ │ ├── logging-api.json │ │ │ └── logging-gen.go │ ├── manufacturers │ │ └── v1 │ │ │ ├── manufacturers-api.json │ │ │ └── manufacturers-gen.go │ ├── mirror │ │ └── v1 │ │ │ ├── mirror-api.json │ │ │ └── mirror-gen.go │ ├── ml │ │ └── v1 │ │ │ ├── ml-api.json │ │ │ └── ml-gen.go │ ├── monitoring │ │ └── v3 │ │ │ ├── monitoring-api.json │ │ │ └── monitoring-gen.go │ ├── oauth2 │ │ ├── v1 │ │ │ ├── oauth2-api.json │ │ │ └── oauth2-gen.go │ │ └── v2 │ │ │ ├── oauth2-api.json │ │ │ └── oauth2-gen.go │ ├── option │ │ ├── option.go │ │ └── option_test.go │ ├── oslogin │ │ ├── v1 │ │ │ ├── oslogin-api.json │ │ │ └── oslogin-gen.go │ │ ├── v1alpha │ │ │ ├── oslogin-api.json │ │ │ └── oslogin-gen.go │ │ └── v1beta │ │ │ ├── oslogin-api.json │ │ │ └── oslogin-gen.go │ ├── pagespeedonline │ │ ├── v1 │ │ │ ├── pagespeedonline-api.json │ │ │ └── pagespeedonline-gen.go │ │ └── v2 │ │ │ ├── pagespeedonline-api.json │ │ │ └── pagespeedonline-gen.go │ ├── partners │ │ └── v2 │ │ │ ├── partners-api.json │ │ │ └── partners-gen.go │ ├── people │ │ └── v1 │ │ │ ├── people-api.json │ │ │ └── people-gen.go │ ├── playcustomapp │ │ └── v1 │ │ │ ├── playcustomapp-api.json │ │ │ └── playcustomapp-gen.go │ ├── playmoviespartner │ │ └── v1 │ │ │ ├── playmoviespartner-api.json │ │ │ └── playmoviespartner-gen.go │ ├── plus │ │ └── v1 │ │ │ ├── plus-api.json │ │ │ └── plus-gen.go │ ├── plusdomains │ │ └── v1 │ │ │ ├── plusdomains-api.json │ │ │ └── plusdomains-gen.go │ ├── poly │ │ └── v1 │ │ │ ├── poly-api.json │ │ │ └── poly-gen.go │ ├── prediction │ │ ├── v1.2 │ │ │ ├── prediction-api.json │ │ │ └── prediction-gen.go │ │ ├── v1.3 │ │ │ ├── prediction-api.json │ │ │ └── prediction-gen.go │ │ ├── v1.4 │ │ │ ├── prediction-api.json │ │ │ └── prediction-gen.go │ │ └── v1.5 │ │ │ ├── prediction-api.json │ │ │ └── prediction-gen.go │ ├── proximitybeacon │ │ └── v1beta1 │ │ │ ├── proximitybeacon-api.json │ │ │ └── proximitybeacon-gen.go │ ├── pubsub │ │ ├── v1 │ │ │ ├── pubsub-api.json │ │ │ └── pubsub-gen.go │ │ ├── v1beta1a │ │ │ ├── pubsub-api.json │ │ │ └── pubsub-gen.go │ │ └── v1beta2 │ │ │ ├── pubsub-api.json │ │ │ └── pubsub-gen.go │ ├── qpxexpress │ │ └── v1 │ │ │ ├── qpxexpress-api.json │ │ │ └── qpxexpress-gen.go │ ├── replicapool │ │ ├── v1beta1 │ │ │ ├── replicapool-api.json │ │ │ └── replicapool-gen.go │ │ └── v1beta2 │ │ │ ├── replicapool-api.json │ │ │ └── replicapool-gen.go │ ├── replicapoolupdater │ │ └── v1beta1 │ │ │ ├── replicapoolupdater-api.json │ │ │ └── replicapoolupdater-gen.go │ ├── reseller │ │ └── v1 │ │ │ ├── reseller-api.json │ │ │ └── reseller-gen.go │ ├── resourceviews │ │ ├── v1beta1 │ │ │ ├── resourceviews-api.json │ │ │ └── resourceviews-gen.go │ │ └── v1beta2 │ │ │ ├── resourceviews-api.json │ │ │ └── resourceviews-gen.go │ ├── runtimeconfig │ │ ├── v1 │ │ │ ├── runtimeconfig-api.json │ │ │ └── runtimeconfig-gen.go │ │ └── v1beta1 │ │ │ ├── runtimeconfig-api.json │ │ │ └── runtimeconfig-gen.go │ ├── safebrowsing │ │ └── v4 │ │ │ ├── safebrowsing-api.json │ │ │ └── safebrowsing-gen.go │ ├── script │ │ └── v1 │ │ │ ├── script-api.json │ │ │ └── script-gen.go │ ├── searchconsole │ │ └── v1 │ │ │ ├── searchconsole-api.json │ │ │ └── searchconsole-gen.go │ ├── serviceconsumermanagement │ │ └── v1 │ │ │ ├── serviceconsumermanagement-api.json │ │ │ └── serviceconsumermanagement-gen.go │ ├── servicecontrol │ │ └── v1 │ │ │ ├── servicecontrol-api.json │ │ │ └── servicecontrol-gen.go │ ├── servicemanagement │ │ └── v1 │ │ │ ├── servicemanagement-api.json │ │ │ └── servicemanagement-gen.go │ ├── serviceuser │ │ └── v1 │ │ │ ├── serviceuser-api.json │ │ │ └── serviceuser-gen.go │ ├── sheets │ │ └── v4 │ │ │ ├── sheets-api.json │ │ │ └── sheets-gen.go │ ├── siteverification │ │ └── v1 │ │ │ ├── siteverification-api.json │ │ │ └── siteverification-gen.go │ ├── slides │ │ └── v1 │ │ │ ├── slides-api.json │ │ │ └── slides-gen.go │ ├── sourcerepo │ │ └── v1 │ │ │ ├── sourcerepo-api.json │ │ │ └── sourcerepo-gen.go │ ├── spanner │ │ └── v1 │ │ │ ├── spanner-api.json │ │ │ └── spanner-gen.go │ ├── spectrum │ │ └── v1explorer │ │ │ ├── spectrum-api.json │ │ │ └── spectrum-gen.go │ ├── speech │ │ ├── v1 │ │ │ ├── speech-api.json │ │ │ └── speech-gen.go │ │ └── v1beta1 │ │ │ ├── speech-api.json │ │ │ └── speech-gen.go │ ├── sqladmin │ │ ├── v1beta3 │ │ │ ├── sqladmin-api.json │ │ │ └── sqladmin-gen.go │ │ └── v1beta4 │ │ │ ├── sqladmin-api.json │ │ │ └── sqladmin-gen.go │ ├── storage │ │ ├── v1 │ │ │ ├── storage-api.json │ │ │ └── storage-gen.go │ │ ├── v1beta1 │ │ │ ├── storage-api.json │ │ │ └── storage-gen.go │ │ └── v1beta2 │ │ │ ├── storage-api.json │ │ │ └── storage-gen.go │ ├── storagetransfer │ │ └── v1 │ │ │ ├── storagetransfer-api.json │ │ │ └── storagetransfer-gen.go │ ├── streetviewpublish │ │ └── v1 │ │ │ ├── streetviewpublish-api.json │ │ │ └── streetviewpublish-gen.go │ ├── support │ │ └── bundler │ │ │ ├── bundler.go │ │ │ └── bundler_test.go │ ├── surveys │ │ └── v2 │ │ │ ├── surveys-api.json │ │ │ └── surveys-gen.go │ ├── tagmanager │ │ ├── v1 │ │ │ ├── tagmanager-api.json │ │ │ └── tagmanager-gen.go │ │ └── v2 │ │ │ ├── tagmanager-api.json │ │ │ └── tagmanager-gen.go │ ├── taskqueue │ │ ├── v1beta1 │ │ │ ├── taskqueue-api.json │ │ │ └── taskqueue-gen.go │ │ └── v1beta2 │ │ │ ├── taskqueue-api.json │ │ │ └── taskqueue-gen.go │ ├── tasks │ │ └── v1 │ │ │ ├── tasks-api.json │ │ │ └── tasks-gen.go │ ├── testing │ │ └── v1 │ │ │ ├── testing-api.json │ │ │ └── testing-gen.go │ ├── toolresults │ │ ├── v1beta3 │ │ │ ├── toolresults-api.json │ │ │ └── toolresults-gen.go │ │ └── v1beta3firstparty │ │ │ ├── toolresults-api.json │ │ │ └── toolresults-gen.go │ ├── tpu │ │ └── v1alpha1 │ │ │ ├── tpu-api.json │ │ │ └── tpu-gen.go │ ├── tracing │ │ └── v2 │ │ │ ├── tracing-api.json │ │ │ └── tracing-gen.go │ ├── translate │ │ └── v2 │ │ │ ├── translate-api.json │ │ │ └── translate-gen.go │ ├── transport │ │ ├── bytestream │ │ │ ├── client.go │ │ │ ├── client_test.go │ │ │ ├── examples_test.go │ │ │ └── internal │ │ │ │ ├── examples_test.go │ │ │ │ ├── server.go │ │ │ │ └── server_test.go │ │ ├── dial.go │ │ ├── grpc │ │ │ ├── dial.go │ │ │ ├── dial_appengine.go │ │ │ └── dial_test.go │ │ └── http │ │ │ ├── dial.go │ │ │ └── dial_appengine.go │ ├── urlshortener │ │ └── v1 │ │ │ ├── urlshortener-api.json │ │ │ └── urlshortener-gen.go │ ├── vault │ │ └── v1 │ │ │ ├── vault-api.json │ │ │ └── vault-gen.go │ ├── videointelligence │ │ └── v1beta1 │ │ │ ├── videointelligence-api.json │ │ │ └── videointelligence-gen.go │ ├── vision │ │ ├── v1 │ │ │ ├── vision-api.json │ │ │ └── vision-gen.go │ │ └── v1p1beta1 │ │ │ ├── vision-api.json │ │ │ └── vision-gen.go │ ├── webfonts │ │ └── v1 │ │ │ ├── webfonts-api.json │ │ │ └── webfonts-gen.go │ ├── webmasters │ │ └── v3 │ │ │ ├── webmasters-api.json │ │ │ └── webmasters-gen.go │ ├── youtube │ │ └── v3 │ │ │ ├── youtube-api.json │ │ │ └── youtube-gen.go │ ├── youtubeanalytics │ │ ├── v1 │ │ │ ├── youtubeanalytics-api.json │ │ │ └── youtubeanalytics-gen.go │ │ └── v1beta1 │ │ │ ├── youtubeanalytics-api.json │ │ │ └── youtubeanalytics-gen.go │ └── youtubereporting │ │ └── v1 │ │ ├── youtubereporting-api.json │ │ └── youtubereporting-gen.go │ ├── appengine │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── aetest │ │ ├── doc.go │ │ ├── instance.go │ │ ├── instance_classic.go │ │ ├── instance_test.go │ │ ├── instance_vm.go │ │ └── user.go │ ├── appengine.go │ ├── appengine_test.go │ ├── appengine_vm.go │ ├── blobstore │ │ ├── blobstore.go │ │ ├── blobstore_test.go │ │ └── read.go │ ├── capability │ │ └── capability.go │ ├── channel │ │ ├── channel.go │ │ └── channel_test.go │ ├── cloudsql │ │ ├── cloudsql.go │ │ ├── cloudsql_classic.go │ │ └── cloudsql_vm.go │ ├── cmd │ │ ├── aebundler │ │ │ └── aebundler.go │ │ ├── aedeploy │ │ │ └── aedeploy.go │ │ └── aefix │ │ │ ├── ae.go │ │ │ ├── ae_test.go │ │ │ ├── fix.go │ │ │ ├── main.go │ │ │ ├── main_test.go │ │ │ └── typecheck.go │ ├── datastore │ │ ├── datastore.go │ │ ├── datastore_test.go │ │ ├── doc.go │ │ ├── key.go │ │ ├── key_test.go │ │ ├── load.go │ │ ├── metadata.go │ │ ├── prop.go │ │ ├── prop_test.go │ │ ├── query.go │ │ ├── query_test.go │ │ ├── save.go │ │ ├── time_test.go │ │ └── transaction.go │ ├── delay │ │ ├── delay.go │ │ └── delay_test.go │ ├── demos │ │ ├── guestbook │ │ │ ├── app.yaml │ │ │ ├── favicon.ico │ │ │ ├── guestbook.go │ │ │ ├── index.yaml │ │ │ └── templates │ │ │ │ └── guestbook.html │ │ └── helloworld │ │ │ ├── app.yaml │ │ │ ├── favicon.ico │ │ │ └── helloworld.go │ ├── errors.go │ ├── file │ │ └── file.go │ ├── identity.go │ ├── image │ │ └── image.go │ ├── internal │ │ ├── aetesting │ │ │ └── fake.go │ │ ├── api.go │ │ ├── api_classic.go │ │ ├── api_common.go │ │ ├── api_race_test.go │ │ ├── api_test.go │ │ ├── app_id.go │ │ ├── app_id_test.go │ │ ├── app_identity │ │ │ ├── app_identity_service.pb.go │ │ │ └── app_identity_service.proto │ │ ├── base │ │ │ ├── api_base.pb.go │ │ │ └── api_base.proto │ │ ├── blobstore │ │ │ ├── blobstore_service.pb.go │ │ │ └── blobstore_service.proto │ │ ├── capability │ │ │ ├── capability_service.pb.go │ │ │ └── capability_service.proto │ │ ├── channel │ │ │ ├── channel_service.pb.go │ │ │ └── channel_service.proto │ │ ├── datastore │ │ │ ├── datastore_v3.pb.go │ │ │ └── datastore_v3.proto │ │ ├── identity.go │ │ ├── identity_classic.go │ │ ├── identity_vm.go │ │ ├── image │ │ │ ├── images_service.pb.go │ │ │ └── images_service.proto │ │ ├── internal.go │ │ ├── internal_vm_test.go │ │ ├── log │ │ │ ├── log_service.pb.go │ │ │ └── log_service.proto │ │ ├── mail │ │ │ ├── mail_service.pb.go │ │ │ └── mail_service.proto │ │ ├── main.go │ │ ├── main_vm.go │ │ ├── memcache │ │ │ ├── memcache_service.pb.go │ │ │ └── memcache_service.proto │ │ ├── metadata.go │ │ ├── modules │ │ │ ├── modules_service.pb.go │ │ │ └── modules_service.proto │ │ ├── net.go │ │ ├── net_test.go │ │ ├── regen.sh │ │ ├── remote_api │ │ │ ├── remote_api.pb.go │ │ │ └── remote_api.proto │ │ ├── search │ │ │ ├── search.pb.go │ │ │ └── search.proto │ │ ├── socket │ │ │ ├── socket_service.pb.go │ │ │ └── socket_service.proto │ │ ├── system │ │ │ ├── system_service.pb.go │ │ │ └── system_service.proto │ │ ├── taskqueue │ │ │ ├── taskqueue_service.pb.go │ │ │ └── taskqueue_service.proto │ │ ├── transaction.go │ │ ├── urlfetch │ │ │ ├── urlfetch_service.pb.go │ │ │ └── urlfetch_service.proto │ │ ├── user │ │ │ ├── user_service.pb.go │ │ │ └── user_service.proto │ │ └── xmpp │ │ │ ├── xmpp_service.pb.go │ │ │ └── xmpp_service.proto │ ├── log │ │ ├── api.go │ │ ├── log.go │ │ └── log_test.go │ ├── mail │ │ ├── mail.go │ │ └── mail_test.go │ ├── memcache │ │ ├── memcache.go │ │ └── memcache_test.go │ ├── module │ │ ├── module.go │ │ └── module_test.go │ ├── namespace.go │ ├── namespace_test.go │ ├── remote_api │ │ ├── client.go │ │ ├── client_test.go │ │ └── remote_api.go │ ├── runtime │ │ ├── runtime.go │ │ └── runtime_test.go │ ├── search │ │ ├── doc.go │ │ ├── field.go │ │ ├── search.go │ │ ├── search_test.go │ │ ├── struct.go │ │ └── struct_test.go │ ├── socket │ │ ├── doc.go │ │ ├── socket_classic.go │ │ └── socket_vm.go │ ├── taskqueue │ │ ├── taskqueue.go │ │ └── taskqueue_test.go │ ├── timeout.go │ ├── urlfetch │ │ └── urlfetch.go │ ├── user │ │ ├── oauth.go │ │ ├── user.go │ │ ├── user_classic.go │ │ ├── user_test.go │ │ └── user_vm.go │ └── xmpp │ │ ├── xmpp.go │ │ └── xmpp_test.go │ ├── genproto │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── googleapis │ │ ├── api │ │ │ ├── annotations │ │ │ │ ├── annotations.pb.go │ │ │ │ └── http.pb.go │ │ │ ├── authorization_config.pb.go │ │ │ ├── configchange │ │ │ │ └── config_change.pb.go │ │ │ ├── distribution │ │ │ │ └── distribution.pb.go │ │ │ ├── experimental.pb.go │ │ │ ├── httpbody │ │ │ │ └── httpbody.pb.go │ │ │ ├── label │ │ │ │ └── label.pb.go │ │ │ ├── metric │ │ │ │ └── metric.pb.go │ │ │ ├── monitoredres │ │ │ │ └── monitored_resource.pb.go │ │ │ ├── serviceconfig │ │ │ │ ├── auth.pb.go │ │ │ │ ├── backend.pb.go │ │ │ │ ├── billing.pb.go │ │ │ │ ├── consumer.pb.go │ │ │ │ ├── context.pb.go │ │ │ │ ├── control.pb.go │ │ │ │ ├── documentation.pb.go │ │ │ │ ├── endpoint.pb.go │ │ │ │ ├── log.pb.go │ │ │ │ ├── logging.pb.go │ │ │ │ ├── monitoring.pb.go │ │ │ │ ├── quota.pb.go │ │ │ │ ├── service.pb.go │ │ │ │ ├── source_info.pb.go │ │ │ │ ├── system_parameter.pb.go │ │ │ │ └── usage.pb.go │ │ │ ├── servicecontrol │ │ │ │ └── v1 │ │ │ │ │ ├── check_error.pb.go │ │ │ │ │ ├── distribution.pb.go │ │ │ │ │ ├── log_entry.pb.go │ │ │ │ │ ├── metric_value.pb.go │ │ │ │ │ ├── operation.pb.go │ │ │ │ │ ├── quota_controller.pb.go │ │ │ │ │ └── service_controller.pb.go │ │ │ └── servicemanagement │ │ │ │ └── v1 │ │ │ │ ├── resources.pb.go │ │ │ │ └── servicemanager.pb.go │ │ ├── appengine │ │ │ ├── legacy │ │ │ │ └── audit_data.pb.go │ │ │ ├── logging │ │ │ │ └── v1 │ │ │ │ │ └── request_log.pb.go │ │ │ └── v1 │ │ │ │ ├── app_yaml.pb.go │ │ │ │ ├── appengine.pb.go │ │ │ │ ├── application.pb.go │ │ │ │ ├── audit_data.pb.go │ │ │ │ ├── deploy.pb.go │ │ │ │ ├── instance.pb.go │ │ │ │ ├── location.pb.go │ │ │ │ ├── operation.pb.go │ │ │ │ ├── service.pb.go │ │ │ │ └── version.pb.go │ │ ├── assistant │ │ │ └── embedded │ │ │ │ ├── v1alpha1 │ │ │ │ └── embedded_assistant.pb.go │ │ │ │ └── v1alpha2 │ │ │ │ └── embedded_assistant.pb.go │ │ ├── bigtable │ │ │ ├── admin │ │ │ │ ├── cluster │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── bigtable_cluster_data.pb.go │ │ │ │ │ │ ├── bigtable_cluster_service.pb.go │ │ │ │ │ │ └── bigtable_cluster_service_messages.pb.go │ │ │ │ ├── table │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── bigtable_table_data.pb.go │ │ │ │ │ │ ├── bigtable_table_service.pb.go │ │ │ │ │ │ └── bigtable_table_service_messages.pb.go │ │ │ │ └── v2 │ │ │ │ │ ├── bigtable_instance_admin.pb.go │ │ │ │ │ ├── bigtable_table_admin.pb.go │ │ │ │ │ ├── common.pb.go │ │ │ │ │ ├── instance.pb.go │ │ │ │ │ └── table.pb.go │ │ │ ├── v1 │ │ │ │ ├── bigtable_data.pb.go │ │ │ │ ├── bigtable_service.pb.go │ │ │ │ └── bigtable_service_messages.pb.go │ │ │ └── v2 │ │ │ │ ├── bigtable.pb.go │ │ │ │ └── data.pb.go │ │ ├── bytestream │ │ │ └── bytestream.pb.go │ │ ├── cloud │ │ │ ├── audit │ │ │ │ └── audit_log.pb.go │ │ │ ├── bigquery │ │ │ │ ├── datatransfer │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── datatransfer.pb.go │ │ │ │ │ │ └── transfer.pb.go │ │ │ │ └── logging │ │ │ │ │ └── v1 │ │ │ │ │ └── audit_data.pb.go │ │ │ ├── billing │ │ │ │ └── v1 │ │ │ │ │ └── cloud_billing.pb.go │ │ │ ├── dataproc │ │ │ │ ├── v1 │ │ │ │ │ ├── clusters.pb.go │ │ │ │ │ ├── jobs.pb.go │ │ │ │ │ └── operations.pb.go │ │ │ │ └── v1beta2 │ │ │ │ │ ├── clusters.pb.go │ │ │ │ │ ├── jobs.pb.go │ │ │ │ │ ├── operations.pb.go │ │ │ │ │ └── workflow_templates.pb.go │ │ │ ├── functions │ │ │ │ └── v1beta2 │ │ │ │ │ ├── functions.pb.go │ │ │ │ │ └── operations.pb.go │ │ │ ├── iot │ │ │ │ └── v1 │ │ │ │ │ ├── device_manager.pb.go │ │ │ │ │ └── resources.pb.go │ │ │ ├── language │ │ │ │ ├── v1 │ │ │ │ │ └── language_service.pb.go │ │ │ │ ├── v1beta1 │ │ │ │ │ └── language_service.pb.go │ │ │ │ └── v1beta2 │ │ │ │ │ └── language_service.pb.go │ │ │ ├── location │ │ │ │ └── locations.pb.go │ │ │ ├── ml │ │ │ │ ├── v1 │ │ │ │ │ ├── job_service.pb.go │ │ │ │ │ ├── model_service.pb.go │ │ │ │ │ ├── operation_metadata.pb.go │ │ │ │ │ ├── prediction_service.pb.go │ │ │ │ │ └── project_service.pb.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── job_service.pb.go │ │ │ │ │ ├── model_service.pb.go │ │ │ │ │ ├── operation_metadata.pb.go │ │ │ │ │ ├── prediction_service.pb.go │ │ │ │ │ └── project_service.pb.go │ │ │ ├── oslogin │ │ │ │ ├── common │ │ │ │ │ └── common.pb.go │ │ │ │ ├── v1alpha │ │ │ │ │ └── oslogin.pb.go │ │ │ │ └── v1beta │ │ │ │ │ └── oslogin.pb.go │ │ │ ├── resourcemanager │ │ │ │ └── v2 │ │ │ │ │ └── folders.pb.go │ │ │ ├── runtimeconfig │ │ │ │ └── v1beta1 │ │ │ │ │ ├── resources.pb.go │ │ │ │ │ └── runtimeconfig.pb.go │ │ │ ├── speech │ │ │ │ ├── v1 │ │ │ │ │ └── cloud_speech.pb.go │ │ │ │ ├── v1beta1 │ │ │ │ │ └── cloud_speech.pb.go │ │ │ │ └── v1p1beta1 │ │ │ │ │ └── cloud_speech.pb.go │ │ │ ├── support │ │ │ │ ├── common │ │ │ │ │ └── common.pb.go │ │ │ │ └── v1alpha1 │ │ │ │ │ └── cloud_support.pb.go │ │ │ ├── videointelligence │ │ │ │ ├── v1 │ │ │ │ │ └── video_intelligence.pb.go │ │ │ │ ├── v1beta1 │ │ │ │ │ └── video_intelligence.pb.go │ │ │ │ └── v1beta2 │ │ │ │ │ └── video_intelligence.pb.go │ │ │ └── vision │ │ │ │ ├── v1 │ │ │ │ ├── geometry.pb.go │ │ │ │ ├── image_annotator.pb.go │ │ │ │ ├── text_annotation.pb.go │ │ │ │ └── web_detection.pb.go │ │ │ │ └── v1p1beta1 │ │ │ │ ├── geometry.pb.go │ │ │ │ ├── image_annotator.pb.go │ │ │ │ ├── text_annotation.pb.go │ │ │ │ └── web_detection.pb.go │ │ ├── container │ │ │ ├── v1 │ │ │ │ └── cluster_service.pb.go │ │ │ ├── v1alpha1 │ │ │ │ └── cluster_service.pb.go │ │ │ └── v1beta1 │ │ │ │ └── cluster_service.pb.go │ │ ├── datastore │ │ │ ├── admin │ │ │ │ └── v1beta1 │ │ │ │ │ └── datastore_admin.pb.go │ │ │ ├── v1 │ │ │ │ ├── datastore.pb.go │ │ │ │ ├── entity.pb.go │ │ │ │ └── query.pb.go │ │ │ └── v1beta3 │ │ │ │ ├── datastore.pb.go │ │ │ │ ├── entity.pb.go │ │ │ │ └── query.pb.go │ │ ├── devtools │ │ │ ├── build │ │ │ │ └── v1 │ │ │ │ │ ├── build_events.pb.go │ │ │ │ │ ├── build_status.pb.go │ │ │ │ │ └── publish_build_event.pb.go │ │ │ ├── cloudbuild │ │ │ │ └── v1 │ │ │ │ │ └── cloudbuild.pb.go │ │ │ ├── clouddebugger │ │ │ │ └── v2 │ │ │ │ │ ├── controller.pb.go │ │ │ │ │ ├── data.pb.go │ │ │ │ │ └── debugger.pb.go │ │ │ ├── clouderrorreporting │ │ │ │ └── v1beta1 │ │ │ │ │ ├── common.pb.go │ │ │ │ │ ├── error_group_service.pb.go │ │ │ │ │ ├── error_stats_service.pb.go │ │ │ │ │ └── report_errors_service.pb.go │ │ │ ├── cloudprofiler │ │ │ │ └── v2 │ │ │ │ │ └── profiler.pb.go │ │ │ ├── cloudtrace │ │ │ │ ├── v1 │ │ │ │ │ └── trace.pb.go │ │ │ │ └── v2 │ │ │ │ │ ├── trace.pb.go │ │ │ │ │ └── tracing.pb.go │ │ │ ├── containeranalysis │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── bill_of_materials.pb.go │ │ │ │ │ ├── containeranalysis.pb.go │ │ │ │ │ ├── image_basis.pb.go │ │ │ │ │ ├── package_vulnerability.pb.go │ │ │ │ │ ├── provenance.pb.go │ │ │ │ │ └── source_context.pb.go │ │ │ ├── remoteexecution │ │ │ │ └── v1test │ │ │ │ │ └── remote_execution.pb.go │ │ │ ├── source │ │ │ │ └── v1 │ │ │ │ │ └── source_context.pb.go │ │ │ └── sourcerepo │ │ │ │ └── v1 │ │ │ │ └── sourcerepo.pb.go │ │ ├── example │ │ │ └── library │ │ │ │ └── v1 │ │ │ │ └── library.pb.go │ │ ├── firestore │ │ │ ├── admin │ │ │ │ └── v1beta1 │ │ │ │ │ ├── firestore_admin.pb.go │ │ │ │ │ └── index.pb.go │ │ │ └── v1beta1 │ │ │ │ ├── common.pb.go │ │ │ │ ├── document.pb.go │ │ │ │ ├── firestore.pb.go │ │ │ │ ├── query.pb.go │ │ │ │ └── write.pb.go │ │ ├── genomics │ │ │ ├── v1 │ │ │ │ ├── annotations.pb.go │ │ │ │ ├── cigar.pb.go │ │ │ │ ├── datasets.pb.go │ │ │ │ ├── operations.pb.go │ │ │ │ ├── position.pb.go │ │ │ │ ├── range.pb.go │ │ │ │ ├── readalignment.pb.go │ │ │ │ ├── readgroup.pb.go │ │ │ │ ├── readgroupset.pb.go │ │ │ │ ├── reads.pb.go │ │ │ │ ├── references.pb.go │ │ │ │ └── variants.pb.go │ │ │ └── v1alpha2 │ │ │ │ └── pipelines.pb.go │ │ ├── iam │ │ │ ├── admin │ │ │ │ └── v1 │ │ │ │ │ └── iam.pb.go │ │ │ └── v1 │ │ │ │ ├── iam_policy.pb.go │ │ │ │ ├── logging │ │ │ │ └── audit_data.pb.go │ │ │ │ └── policy.pb.go │ │ ├── logging │ │ │ ├── type │ │ │ │ ├── http_request.pb.go │ │ │ │ └── log_severity.pb.go │ │ │ └── v2 │ │ │ │ ├── log_entry.pb.go │ │ │ │ ├── logging.pb.go │ │ │ │ ├── logging_config.pb.go │ │ │ │ └── logging_metrics.pb.go │ │ ├── longrunning │ │ │ └── operations.pb.go │ │ ├── monitoring │ │ │ └── v3 │ │ │ │ ├── common.pb.go │ │ │ │ ├── group.pb.go │ │ │ │ ├── group_service.pb.go │ │ │ │ ├── metric.pb.go │ │ │ │ ├── metric_service.pb.go │ │ │ │ ├── uptime.pb.go │ │ │ │ └── uptime_service.pb.go │ │ ├── privacy │ │ │ └── dlp │ │ │ │ └── v2beta1 │ │ │ │ ├── dlp.pb.go │ │ │ │ └── storage.pb.go │ │ ├── pubsub │ │ │ ├── v1 │ │ │ │ └── pubsub.pb.go │ │ │ └── v1beta2 │ │ │ │ └── pubsub.pb.go │ │ ├── rpc │ │ │ ├── code │ │ │ │ └── code.pb.go │ │ │ ├── errdetails │ │ │ │ └── error_details.pb.go │ │ │ └── status │ │ │ │ └── status.pb.go │ │ ├── spanner │ │ │ ├── admin │ │ │ │ ├── database │ │ │ │ │ └── v1 │ │ │ │ │ │ └── spanner_database_admin.pb.go │ │ │ │ └── instance │ │ │ │ │ └── v1 │ │ │ │ │ └── spanner_instance_admin.pb.go │ │ │ └── v1 │ │ │ │ ├── keys.pb.go │ │ │ │ ├── mutation.pb.go │ │ │ │ ├── query_plan.pb.go │ │ │ │ ├── result_set.pb.go │ │ │ │ ├── spanner.pb.go │ │ │ │ ├── transaction.pb.go │ │ │ │ └── type.pb.go │ │ ├── storagetransfer │ │ │ └── v1 │ │ │ │ ├── transfer.pb.go │ │ │ │ └── transfer_types.pb.go │ │ ├── streetview │ │ │ └── publish │ │ │ │ └── v1 │ │ │ │ ├── resources.pb.go │ │ │ │ ├── rpcmessages.pb.go │ │ │ │ └── streetview_publish.pb.go │ │ ├── tracing │ │ │ └── v1 │ │ │ │ └── trace.pb.go │ │ ├── type │ │ │ ├── color │ │ │ │ └── color.pb.go │ │ │ ├── date │ │ │ │ └── date.pb.go │ │ │ ├── dayofweek │ │ │ │ └── dayofweek.pb.go │ │ │ ├── latlng │ │ │ │ └── latlng.pb.go │ │ │ ├── money │ │ │ │ └── money.pb.go │ │ │ ├── postaladdress │ │ │ │ └── postal_address.pb.go │ │ │ └── timeofday │ │ │ │ └── timeofday.pb.go │ │ └── watcher │ │ │ └── v1 │ │ │ └── watch.pb.go │ ├── protobuf │ │ ├── api │ │ │ └── api.pb.go │ │ ├── field_mask │ │ │ └── field_mask.pb.go │ │ ├── ptype │ │ │ └── type.pb.go │ │ └── source_context │ │ │ └── source_context.pb.go │ ├── regen.go │ └── regen.sh │ └── grpc │ ├── .github │ └── ISSUE_TEMPLATE │ ├── .please-update │ ├── .travis.yml │ ├── AUTHORS │ ├── CONTRIBUTING.md │ ├── Documentation │ ├── compression.md │ ├── gomock-example.md │ ├── grpc-auth-support.md │ ├── grpc-metadata.md │ ├── server-reflection-tutorial.md │ └── versioning.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── backoff.go │ ├── backoff_test.go │ ├── balancer.go │ ├── balancer │ ├── balancer.go │ ├── base │ │ ├── balancer.go │ │ └── base.go │ └── roundrobin │ │ ├── roundrobin.go │ │ └── roundrobin_test.go │ ├── balancer_conn_wrappers.go │ ├── balancer_switching_test.go │ ├── balancer_test.go │ ├── balancer_v1_wrapper.go │ ├── benchmark │ ├── benchmain │ │ └── main.go │ ├── benchmark.go │ ├── benchmark16_test.go │ ├── benchmark17_test.go │ ├── benchresult │ │ └── main.go │ ├── client │ │ └── main.go │ ├── grpc_testing │ │ ├── control.pb.go │ │ ├── control.proto │ │ ├── messages.pb.go │ │ ├── messages.proto │ │ ├── payloads.pb.go │ │ ├── payloads.proto │ │ ├── services.pb.go │ │ ├── services.proto │ │ ├── stats.pb.go │ │ └── stats.proto │ ├── latency │ │ ├── latency.go │ │ └── latency_test.go │ ├── primitives │ │ ├── code_string_test.go │ │ ├── context_test.go │ │ └── primitives_test.go │ ├── server │ │ └── main.go │ ├── stats │ │ ├── histogram.go │ │ ├── stats.go │ │ └── util.go │ └── worker │ │ ├── benchmark_client.go │ │ ├── benchmark_server.go │ │ ├── main.go │ │ └── util.go │ ├── call.go │ ├── call_test.go │ ├── clientconn.go │ ├── clientconn_test.go │ ├── codec.go │ ├── codec_benchmark_test.go │ ├── codec_test.go │ ├── codegen.sh │ ├── codes │ ├── code_string.go │ ├── codes.go │ └── codes_test.go │ ├── connectivity │ └── connectivity.go │ ├── credentials │ ├── credentials.go │ ├── credentials_test.go │ ├── credentials_util_go17.go │ ├── credentials_util_go18.go │ ├── credentials_util_pre_go17.go │ └── oauth │ │ └── oauth.go │ ├── doc.go │ ├── encoding │ ├── encoding.go │ └── gzip │ │ └── gzip.go │ ├── examples │ ├── README.md │ ├── gotutorial.md │ ├── helloworld │ │ ├── greeter_client │ │ │ └── main.go │ │ ├── greeter_server │ │ │ └── main.go │ │ ├── helloworld │ │ │ ├── helloworld.pb.go │ │ │ └── helloworld.proto │ │ └── mock_helloworld │ │ │ ├── hw_mock.go │ │ │ └── hw_mock_test.go │ └── route_guide │ │ ├── README.md │ │ ├── client │ │ └── client.go │ │ ├── mock_routeguide │ │ ├── rg_mock.go │ │ └── rg_mock_test.go │ │ ├── routeguide │ │ ├── route_guide.pb.go │ │ └── route_guide.proto │ │ ├── server │ │ └── server.go │ │ └── testdata │ │ └── route_guide_db.json │ ├── go16.go │ ├── go17.go │ ├── grpclb.go │ ├── grpclb │ ├── grpc_lb_v1 │ │ ├── messages │ │ │ ├── messages.pb.go │ │ │ └── messages.proto │ │ └── service │ │ │ ├── service.pb.go │ │ │ └── service.proto │ └── grpclb_test.go │ ├── grpclb_picker.go │ ├── grpclb_remote_balancer.go │ ├── grpclb_util.go │ ├── grpclog │ ├── glogger │ │ └── glogger.go │ ├── grpclog.go │ ├── logger.go │ ├── loggerv2.go │ └── loggerv2_test.go │ ├── health │ ├── grpc_health_v1 │ │ ├── health.pb.go │ │ └── health.proto │ └── health.go │ ├── interceptor.go │ ├── internal │ └── internal.go │ ├── interop │ ├── client │ │ └── client.go │ ├── grpc_testing │ │ ├── test.pb.go │ │ └── test.proto │ ├── http2 │ │ └── negative_http2_client.go │ ├── server │ │ └── server.go │ └── test_utils.go │ ├── keepalive │ └── keepalive.go │ ├── metadata │ ├── metadata.go │ └── metadata_test.go │ ├── naming │ ├── dns_resolver.go │ ├── dns_resolver_test.go │ ├── go17.go │ ├── go17_test.go │ ├── go18.go │ ├── go18_test.go │ └── naming.go │ ├── peer │ └── peer.go │ ├── picker_wrapper.go │ ├── picker_wrapper_test.go │ ├── pickfirst.go │ ├── pickfirst_test.go │ ├── proxy.go │ ├── proxy_test.go │ ├── reflection │ ├── README.md │ ├── grpc_reflection_v1alpha │ │ ├── reflection.pb.go │ │ └── reflection.proto │ ├── grpc_testing │ │ ├── proto2.pb.go │ │ ├── proto2.proto │ │ ├── proto2_ext.pb.go │ │ ├── proto2_ext.proto │ │ ├── proto2_ext2.pb.go │ │ ├── proto2_ext2.proto │ │ ├── test.pb.go │ │ └── test.proto │ ├── grpc_testingv3 │ │ ├── testv3.pb.go │ │ └── testv3.proto │ ├── serverreflection.go │ └── serverreflection_test.go │ ├── resolver │ ├── dns │ │ ├── dns_resolver.go │ │ ├── dns_resolver_test.go │ │ ├── go17.go │ │ ├── go17_test.go │ │ ├── go18.go │ │ └── go18_test.go │ ├── manual │ │ └── manual.go │ ├── passthrough │ │ └── passthrough.go │ └── resolver.go │ ├── resolver_conn_wrapper.go │ ├── resolver_conn_wrapper_test.go │ ├── resolver_test.go │ ├── rpc_util.go │ ├── rpc_util_test.go │ ├── server.go │ ├── server_test.go │ ├── service_config.go │ ├── service_config_test.go │ ├── stats │ ├── grpc_testing │ │ ├── test.pb.go │ │ └── test.proto │ ├── handlers.go │ ├── stats.go │ └── stats_test.go │ ├── status │ ├── status.go │ └── status_test.go │ ├── stream.go │ ├── stress │ ├── client │ │ └── main.go │ ├── grpc_testing │ │ ├── metrics.pb.go │ │ └── metrics.proto │ └── metrics_client │ │ └── main.go │ ├── tap │ └── tap.go │ ├── test │ ├── bufconn │ │ ├── bufconn.go │ │ └── bufconn_test.go │ ├── codec_perf │ │ ├── perf.pb.go │ │ └── perf.proto │ ├── end2end_test.go │ ├── gracefulstop_test.go │ ├── grpc_testing │ │ ├── test.pb.go │ │ └── test.proto │ ├── leakcheck │ │ ├── leakcheck.go │ │ └── leakcheck_test.go │ ├── race.go │ └── servertester.go │ ├── testdata │ ├── ca.pem │ ├── server1.key │ ├── server1.pem │ └── testdata.go │ ├── trace.go │ ├── transport │ ├── bdp_estimator.go │ ├── control.go │ ├── go16.go │ ├── go17.go │ ├── handler_server.go │ ├── handler_server_test.go │ ├── http2_client.go │ ├── http2_server.go │ ├── http_util.go │ ├── http_util_test.go │ ├── log.go │ ├── transport.go │ └── transport_test.go │ └── vet.sh ├── podpresets ├── echo.yaml └── gcp-pubsub-and-trace.yaml └── stackdriver-trace.png /LICENSE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /deployments/echo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/deployments/echo.yaml -------------------------------------------------------------------------------- /echo/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/Dockerfile -------------------------------------------------------------------------------- /echo/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/Gopkg.lock -------------------------------------------------------------------------------- /echo/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/Gopkg.toml -------------------------------------------------------------------------------- /echo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/README.md -------------------------------------------------------------------------------- /echo/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/handler.go -------------------------------------------------------------------------------- /echo/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/main.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/.travis.yml -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/AUTHORS -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/CONTRIBUTING.md -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/CONTRIBUTORS -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/LICENSE -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/MIGRATION.md -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/README.md -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/appveyor.yml -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/authexample_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/authexample_test.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/bigquery/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/bigquery/copy.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/bigquery/dataset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/bigquery/dataset.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/bigquery/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/bigquery/doc.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/bigquery/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/bigquery/error.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/bigquery/extract.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/bigquery/extract.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/bigquery/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/bigquery/file.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/bigquery/gcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/bigquery/gcs.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/bigquery/job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/bigquery/job.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/bigquery/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/bigquery/load.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/bigquery/nulls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/bigquery/nulls.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/bigquery/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/bigquery/params.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/bigquery/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/bigquery/query.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/bigquery/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/bigquery/schema.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/bigquery/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/bigquery/table.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/bigquery/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/bigquery/value.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/bigtable/admin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/bigtable/admin.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/bigtable/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/bigtable/doc.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/bigtable/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/bigtable/filter.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/bigtable/gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/bigtable/gc.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/bigtable/gc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/bigtable/gc_test.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/bigtable/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/bigtable/reader.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/civil/civil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/civil/civil.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/civil/civil_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/civil/civil_test.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/cloud.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/cloud.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/datastore/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/datastore/client.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/datastore/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/datastore/doc.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/datastore/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/datastore/errors.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/datastore/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/datastore/key.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/datastore/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/datastore/load.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/datastore/prop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/datastore/prop.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/datastore/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/datastore/query.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/datastore/save.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/datastore/save.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/datastore/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/datastore/time.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/firestore/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/firestore/client.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/firestore/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/firestore/doc.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/firestore/docref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/firestore/docref.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/firestore/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/firestore/query.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/iam/iam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/iam/iam.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/iam/iam_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/iam/iam_test.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/import_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/import_test.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/internal/readme/testdata/bad-nosnip.md: -------------------------------------------------------------------------------- 1 | [snip]:# (unknown) 2 | 3 | -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/internal/readme/testdata/bad-spec.md: -------------------------------------------------------------------------------- 1 | [snip]:# missing-parens 2 | -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/internal/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/internal/retry.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/keys.tar.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/keys.tar.enc -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/license_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/license_test.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/logging/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/logging/doc.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/logging/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/logging/logging.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/old-news.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/old-news.md -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/profiler/mutex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/profiler/mutex.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/pubsub/apiv1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/pubsub/apiv1/doc.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/pubsub/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/pubsub/doc.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/pubsub/fake_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/pubsub/fake_test.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/pubsub/iterator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/pubsub/iterator.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/pubsub/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/pubsub/message.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/pubsub/pubsub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/pubsub/pubsub.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/pubsub/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/pubsub/service.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/pubsub/snapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/pubsub/snapshot.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/pubsub/topic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/pubsub/topic.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/regen-gapic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/regen-gapic.sh -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/rpcreplay/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/rpcreplay/Makefile -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/rpcreplay/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/rpcreplay/doc.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/run-tests.sh -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/spanner/backoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/spanner/backoff.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/spanner/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/spanner/client.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/spanner/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/spanner/doc.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/spanner/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/spanner/errors.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/spanner/go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/spanner/go18.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/spanner/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/spanner/key.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/spanner/key_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/spanner/key_test.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/spanner/mutation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/spanner/mutation.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/spanner/not_go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/spanner/not_go18.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/spanner/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/spanner/read.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/spanner/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/spanner/retry.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/spanner/row.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/spanner/row.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/spanner/row_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/spanner/row_test.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/spanner/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/spanner/session.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/spanner/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/spanner/util.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/spanner/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/spanner/value.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/speech/apiv1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/speech/apiv1/doc.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/storage/acl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/storage/acl.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/storage/bucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/storage/bucket.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/storage/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/storage/copy.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/storage/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/storage/doc.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/storage/go110.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/storage/go110.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/storage/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/storage/go17.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/storage/iam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/storage/iam.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/storage/invoke.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/storage/invoke.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/storage/not_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/storage/not_go17.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/storage/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/storage/reader.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/storage/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/storage/storage.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/storage/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/storage/writer.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/trace/apiv1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/trace/apiv1/doc.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/trace/apiv2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/trace/apiv2/doc.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/trace/grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/trace/grpc.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/trace/grpc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/trace/grpc_test.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/trace/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/trace/http.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/trace/http_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/trace/http_test.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/trace/sampling.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/trace/sampling.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/trace/trace.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/trace/trace_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/trace/trace_test.go -------------------------------------------------------------------------------- /echo/vendor/cloud.google.com/go/vision/apiv1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/cloud.google.com/go/vision/apiv1/doc.go -------------------------------------------------------------------------------- /echo/vendor/github.com/golang/protobuf/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/github.com/golang/protobuf/.gitignore -------------------------------------------------------------------------------- /echo/vendor/github.com/golang/protobuf/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/github.com/golang/protobuf/.travis.yml -------------------------------------------------------------------------------- /echo/vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/github.com/golang/protobuf/AUTHORS -------------------------------------------------------------------------------- /echo/vendor/github.com/golang/protobuf/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/github.com/golang/protobuf/CONTRIBUTORS -------------------------------------------------------------------------------- /echo/vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /echo/vendor/github.com/golang/protobuf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/github.com/golang/protobuf/Makefile -------------------------------------------------------------------------------- /echo/vendor/github.com/golang/protobuf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/github.com/golang/protobuf/README.md -------------------------------------------------------------------------------- /echo/vendor/github.com/golang/protobuf/proto/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/github.com/golang/protobuf/proto/lib.go -------------------------------------------------------------------------------- /echo/vendor/github.com/googleapis/gax-go/.gitignore: -------------------------------------------------------------------------------- 1 | *.cover 2 | -------------------------------------------------------------------------------- /echo/vendor/github.com/googleapis/gax-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/github.com/googleapis/gax-go/LICENSE -------------------------------------------------------------------------------- /echo/vendor/github.com/googleapis/gax-go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/github.com/googleapis/gax-go/README.md -------------------------------------------------------------------------------- /echo/vendor/github.com/googleapis/gax-go/gax.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/github.com/googleapis/gax-go/gax.go -------------------------------------------------------------------------------- /echo/vendor/github.com/googleapis/gax-go/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/github.com/googleapis/gax-go/header.go -------------------------------------------------------------------------------- /echo/vendor/github.com/googleapis/gax-go/invoke.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/github.com/googleapis/gax-go/invoke.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/.gitattributes -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/.gitignore -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/CONTRIBUTING.md -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/README.md -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/bpf/asm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/bpf/asm.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/bpf/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/bpf/constants.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/bpf/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/bpf/doc.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/bpf/instructions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/bpf/instructions.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/bpf/setter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/bpf/setter.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/bpf/vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/bpf/vm.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/bpf/vm_aluop_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/bpf/vm_aluop_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/bpf/vm_bpf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/bpf/vm_bpf_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/bpf/vm_instructions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/bpf/vm_instructions.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/bpf/vm_jump_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/bpf/vm_jump_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/bpf/vm_load_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/bpf/vm_load_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/bpf/vm_ret_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/bpf/vm_ret_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/bpf/vm_scratch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/bpf/vm_scratch_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/bpf/vm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/bpf/vm_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/context/context.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/context/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/context/go17.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/context/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/context/go19.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/context/pre_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/context/pre_go17.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/context/pre_go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/context/pre_go19.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/dict/dict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/dict/dict.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/html/atom/atom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/html/atom/atom.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/html/atom/atom_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/html/atom/atom_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/html/atom/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/html/atom/gen.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/html/atom/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/html/atom/table.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/html/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/html/const.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/html/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/html/doc.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/html/doctype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/html/doctype.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/html/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/html/entity.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/html/entity_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/html/entity_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/html/escape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/html/escape.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/html/escape_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/html/escape_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/html/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/html/example_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/html/foreign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/html/foreign.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/html/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/html/node.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/html/node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/html/node_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/html/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/html/parse.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/html/parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/html/parse_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/html/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/html/render.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/html/render_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/html/render_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/html/testdata/go1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/html/testdata/go1.html -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/html/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/html/token.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/html/token_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/html/token_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/Dockerfile -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/README -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/ciphers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/ciphers.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/ciphers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/ciphers_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/databuffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/databuffer.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/errors_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/flow_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/flow_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/frame_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/frame_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/go16.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/go17.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/go17_not18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/go17_not18.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/go18.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/go18_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/go18_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/go19.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/go19_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/go19_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/gotrack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/gotrack.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/gotrack_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/gotrack_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/h2demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/h2demo/Makefile -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/h2demo/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/h2demo/README -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/h2demo/h2demo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/h2demo/h2demo.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/h2demo/launch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/h2demo/launch.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/h2demo/rootCA.srl: -------------------------------------------------------------------------------- 1 | E2CE26BF3285059C 2 | -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/h2demo/tmpl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/h2demo/tmpl.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/h2i/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/h2i/README.md -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/h2i/h2i.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/h2i/h2i.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/headermap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/headermap.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/hpack/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/hpack/encode.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/hpack/hpack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/hpack/hpack.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/hpack/huffman.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/hpack/huffman.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/hpack/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/hpack/tables.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/http2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/http2_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/not_go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/not_go16.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/not_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/not_go17.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/not_go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/not_go18.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/not_go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/not_go19.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/pipe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/pipe_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/server_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/transport.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/writesched.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/writesched.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/http2/z_spec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/http2/z_spec_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/icmp/dstunreach.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/icmp/dstunreach.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/icmp/echo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/icmp/echo.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/icmp/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/icmp/endpoint.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/icmp/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/icmp/example_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/icmp/extension.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/icmp/extension.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/icmp/extension_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/icmp/extension_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/icmp/helper_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/icmp/helper_posix.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/icmp/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/icmp/interface.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/icmp/ipv4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/icmp/ipv4.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/icmp/ipv4_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/icmp/ipv4_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/icmp/ipv6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/icmp/ipv6.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/icmp/listen_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/icmp/listen_posix.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/icmp/listen_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/icmp/listen_stub.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/icmp/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/icmp/message.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/icmp/message_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/icmp/message_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/icmp/messagebody.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/icmp/messagebody.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/icmp/mpls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/icmp/mpls.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/icmp/multipart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/icmp/multipart.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/icmp/multipart_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/icmp/multipart_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/icmp/packettoobig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/icmp/packettoobig.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/icmp/paramprob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/icmp/paramprob.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/icmp/ping_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/icmp/ping_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/icmp/sys_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/icmp/sys_freebsd.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/icmp/timeexceeded.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/icmp/timeexceeded.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/idna/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/idna/example_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/idna/idna.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/idna/idna.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/idna/idna_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/idna/idna_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/idna/punycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/idna/punycode.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/idna/punycode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/idna/punycode_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/idna/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/idna/tables.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/internal/iana/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/internal/iana/const.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/internal/iana/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/internal/iana/gen.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/internal/socket/sys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/internal/socket/sys.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/batch.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/bpf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/bpf_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/control.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/control_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/control_bsd.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/control_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/control_stub.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/control_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/control_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/control_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/control_unix.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/defs_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/defs_darwin.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/defs_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/defs_dragonfly.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/defs_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/defs_freebsd.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/defs_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/defs_linux.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/defs_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/defs_netbsd.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/defs_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/defs_openbsd.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/defs_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/defs_solaris.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/dgramopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/dgramopt.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/doc.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/endpoint.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/example_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/gen.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/genericopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/genericopt.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/header.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/header_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/header_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/helper.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/iana.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/icmp.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/icmp_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/icmp_linux.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/icmp_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/icmp_stub.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/icmp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/icmp_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/multicast_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/multicast_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/packet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/packet.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/packet_go1_8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/packet_go1_8.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/packet_go1_9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/packet_go1_9.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/payload.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/payload_cmsg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/payload_cmsg.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/payload_nocmsg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/payload_nocmsg.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/readwrite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/readwrite_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/sockopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/sockopt.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/sockopt_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/sockopt_posix.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/sockopt_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/sockopt_stub.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/sys_asmreq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/sys_asmreq.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/sys_asmreqn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/sys_asmreqn.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/sys_bpf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/sys_bpf.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/sys_bpf_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/sys_bpf_stub.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/sys_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/sys_bsd.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/sys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/sys_darwin.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/sys_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/sys_dragonfly.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/sys_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/sys_freebsd.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/sys_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/sys_linux.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/sys_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/sys_solaris.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/sys_ssmreq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/sys_ssmreq.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/sys_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/sys_stub.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/sys_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/sys_windows.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/unicast_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/unicast_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/zsys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/zsys_darwin.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/zsys_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/zsys_dragonfly.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/zsys_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/zsys_linux_386.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/zsys_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/zsys_linux_arm.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/zsys_linux_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/zsys_linux_ppc.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/zsys_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/zsys_netbsd.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/zsys_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/zsys_openbsd.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv4/zsys_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv4/zsys_solaris.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/batch.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/bpf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/bpf_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/control.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/control_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/control_stub.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/control_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/control_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/control_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/control_unix.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/defs_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/defs_darwin.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/defs_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/defs_dragonfly.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/defs_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/defs_freebsd.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/defs_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/defs_linux.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/defs_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/defs_netbsd.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/defs_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/defs_openbsd.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/defs_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/defs_solaris.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/dgramopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/dgramopt.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/doc.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/endpoint.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/example_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/gen.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/genericopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/genericopt.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/header.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/header_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/header_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/helper.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/iana.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/icmp.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/icmp_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/icmp_bsd.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/icmp_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/icmp_linux.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/icmp_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/icmp_solaris.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/icmp_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/icmp_stub.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/icmp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/icmp_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/icmp_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/icmp_windows.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/multicast_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/multicast_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/payload.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/payload_cmsg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/payload_cmsg.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/payload_nocmsg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/payload_nocmsg.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/readwrite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/readwrite_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/sockopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/sockopt.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/sockopt_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/sockopt_posix.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/sockopt_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/sockopt_stub.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/sockopt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/sockopt_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/sys_asmreq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/sys_asmreq.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/sys_bpf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/sys_bpf.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/sys_bpf_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/sys_bpf_stub.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/sys_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/sys_bsd.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/sys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/sys_darwin.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/sys_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/sys_freebsd.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/sys_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/sys_linux.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/sys_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/sys_solaris.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/sys_ssmreq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/sys_ssmreq.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/sys_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/sys_stub.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/sys_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/sys_windows.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/unicast_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/unicast_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/zsys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/zsys_darwin.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/zsys_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/zsys_dragonfly.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/zsys_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/zsys_linux_386.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/zsys_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/zsys_linux_arm.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/zsys_linux_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/zsys_linux_ppc.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/zsys_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/zsys_netbsd.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/zsys_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/zsys_openbsd.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/ipv6/zsys_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/ipv6/zsys_solaris.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/lex/httplex/httplex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/lex/httplex/httplex.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/lif/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/lif/address.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/lif/address_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/lif/address_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/lif/binary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/lif/binary.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/lif/defs_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/lif/defs_solaris.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/lif/lif.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/lif/lif.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/lif/link.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/lif/link.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/lif/link_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/lif/link_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/lif/sys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/lif/sys.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/lif/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/lif/syscall.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/nettest/conntest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/nettest/conntest.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/netutil/listen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/netutil/listen.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/netutil/listen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/netutil/listen_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/proxy/direct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/proxy/direct.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/proxy/per_host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/proxy/per_host.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/proxy/per_host_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/proxy/per_host_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/proxy/proxy.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/proxy/proxy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/proxy/proxy_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/proxy/socks5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/proxy/socks5.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/publicsuffix/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/publicsuffix/gen.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/publicsuffix/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/publicsuffix/list.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/publicsuffix/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/publicsuffix/table.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/route/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/route/address.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/route/address_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/route/address_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/route/binary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/route/binary.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/route/defs_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/route/defs_darwin.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/route/defs_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/route/defs_freebsd.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/route/defs_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/route/defs_netbsd.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/route/defs_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/route/defs_openbsd.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/route/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/route/interface.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/route/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/route/message.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/route/message_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/route/message_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/route/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/route/route.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/route/route_classic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/route/route_classic.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/route/route_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/route/route_openbsd.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/route/route_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/route/route_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/route/sys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/route/sys.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/route/sys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/route/sys_darwin.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/route/sys_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/route/sys_dragonfly.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/route/sys_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/route/sys_freebsd.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/route/sys_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/route/sys_netbsd.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/route/sys_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/route/sys_openbsd.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/route/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/route/syscall.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/route/zsys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/route/zsys_darwin.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/route/zsys_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/route/zsys_netbsd.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/route/zsys_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/route/zsys_openbsd.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/trace/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/trace/events.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/trace/histogram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/trace/histogram.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/trace/trace_go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/trace/trace_go16.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/trace/trace_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/trace/trace_go17.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/trace/trace_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/trace/trace_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/webdav/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/webdav/file.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/webdav/file_go1.6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/webdav/file_go1.6.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/webdav/file_go1.7.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/webdav/file_go1.7.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/webdav/file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/webdav/file_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/webdav/if.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/webdav/if.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/webdav/if_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/webdav/if_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/webdav/lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/webdav/lock.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/webdav/lock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/webdav/lock_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/webdav/prop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/webdav/prop.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/webdav/prop_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/webdav/prop_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/webdav/webdav.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/webdav/webdav.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/webdav/webdav_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/webdav/webdav_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/webdav/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/webdav/xml.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/webdav/xml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/webdav/xml_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/websocket/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/websocket/client.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/websocket/dial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/websocket/dial.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/websocket/dial_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/websocket/dial_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/websocket/hybi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/websocket/hybi.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/websocket/hybi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/websocket/hybi_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/websocket/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/websocket/server.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/websocket/websocket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/websocket/websocket.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/xsrftoken/xsrf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/xsrftoken/xsrf.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/net/xsrftoken/xsrf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/net/xsrftoken/xsrf_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/oauth2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/oauth2/.travis.yml -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/oauth2/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/oauth2/AUTHORS -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/oauth2/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/oauth2/CONTRIBUTING.md -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/oauth2/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/oauth2/CONTRIBUTORS -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/oauth2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/oauth2/LICENSE -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/oauth2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/oauth2/README.md -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/oauth2/amazon/amazon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/oauth2/amazon/amazon.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/oauth2/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/oauth2/example_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/oauth2/fitbit/fitbit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/oauth2/fitbit/fitbit.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/oauth2/github/github.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/oauth2/github/github.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/oauth2/google/appengine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/oauth2/google/appengine.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/oauth2/google/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/oauth2/google/default.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/oauth2/google/google.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/oauth2/google/google.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/oauth2/google/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/oauth2/google/jwt.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/oauth2/google/jwt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/oauth2/google/jwt_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/oauth2/google/sdk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/oauth2/google/sdk.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/oauth2/google/sdk_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/oauth2/google/sdk_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/oauth2/google/testdata/gcloud/properties: -------------------------------------------------------------------------------- 1 | [core] 2 | account = bar@example.com -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/oauth2/heroku/heroku.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/oauth2/heroku/heroku.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/oauth2/hipchat/hipchat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/oauth2/hipchat/hipchat.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/oauth2/internal/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/oauth2/internal/doc.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/oauth2/internal/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/oauth2/internal/oauth2.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/oauth2/internal/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/oauth2/internal/token.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/oauth2/jws/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/oauth2/jws/jws.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/oauth2/jws/jws_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/oauth2/jws/jws_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/oauth2/jwt/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/oauth2/jwt/example_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/oauth2/jwt/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/oauth2/jwt/jwt.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/oauth2/jwt/jwt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/oauth2/jwt/jwt_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/oauth2/mailru/mailru.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/oauth2/mailru/mailru.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/oauth2/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/oauth2/oauth2.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/oauth2/oauth2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/oauth2/oauth2_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/oauth2/paypal/paypal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/oauth2/paypal/paypal.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/oauth2/slack/slack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/oauth2/slack/slack.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/oauth2/spotify/spotify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/oauth2/spotify/spotify.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/oauth2/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/oauth2/token.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/oauth2/token_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/oauth2/token_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/oauth2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/oauth2/transport.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/oauth2/transport_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/oauth2/transport_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/oauth2/twitch/twitch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/oauth2/twitch/twitch.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/oauth2/uber/uber.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/oauth2/uber/uber.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/oauth2/vk/vk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/oauth2/vk/vk.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/oauth2/yahoo/yahoo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/oauth2/yahoo/yahoo.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/oauth2/yandex/yandex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/oauth2/yandex/yandex.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/sync/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/sync/AUTHORS -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/sync/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/sync/CONTRIBUTING.md -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/sync/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/sync/CONTRIBUTORS -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/sync/LICENSE -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/sync/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/sync/PATENTS -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/sync/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/sync/README.md -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/sync/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/sync/errgroup/errgroup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/sync/errgroup/errgroup.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/sync/syncmap/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/sync/syncmap/map.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/sync/syncmap/map_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/sync/syncmap/map_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/.gitattributes -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/.gitignore -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/CONTRIBUTING.md -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/CONTRIBUTORS -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/README.md -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/cases/cases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/cases/cases.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/cases/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/cases/context.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/cases/context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/cases/context_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/cases/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/cases/example_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/cases/fold.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/cases/fold.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/cases/fold_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/cases/fold_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/cases/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/cases/gen.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/cases/gen_trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/cases/gen_trieval.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/cases/icu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/cases/icu.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/cases/icu_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/cases/icu_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/cases/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/cases/info.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/cases/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/cases/map.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/cases/map_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/cases/map_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/cases/tables10.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/cases/tables10.0.0.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/cases/tables9.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/cases/tables9.0.0.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/cases/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/cases/trieval.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/cmd/gotext/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/cmd/gotext/common.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/cmd/gotext/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/cmd/gotext/doc.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/cmd/gotext/extract.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/cmd/gotext/extract.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/cmd/gotext/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/cmd/gotext/main.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/cmd/gotext/rewrite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/cmd/gotext/rewrite.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/cmd/gotext/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/cmd/gotext/update.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/collate/build/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/collate/build/trie.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/collate/collate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/collate/collate.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/collate/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/collate/index.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/collate/maketables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/collate/maketables.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/collate/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/collate/option.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/collate/reg_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/collate/reg_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/collate/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/collate/sort.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/collate/sort_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/collate/sort_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/collate/table_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/collate/table_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/collate/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/collate/tables.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/currency/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/currency/common.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/currency/currency.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/currency/currency.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/currency/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/currency/format.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/currency/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/currency/gen.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/currency/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/currency/query.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/currency/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/currency/tables.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/date/data_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/date/data_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/date/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/date/gen.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/date/gen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/date/gen_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/date/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/date/tables.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/doc.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/encoding/encoding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/encoding/encoding.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/feature/plural/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/feature/plural/gen.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/gen.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/internal/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/internal/gen.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/internal/gen/code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/internal/gen/code.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/internal/gen/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/internal/gen/gen.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/internal/gen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/internal/gen_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/internal/internal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/internal/internal.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/internal/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/internal/match.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/internal/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/internal/tables.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/internal/tag/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/internal/tag/tag.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/internal/ucd/ucd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/internal/ucd/ucd.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/language/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/language/Makefile -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/language/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/language/common.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/language/coverage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/language/coverage.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/language/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/language/doc.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/language/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/language/gen.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/language/gen_index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/language/gen_index.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/language/go1_1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/language/go1_1.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/language/go1_2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/language/go1_2.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/language/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/language/index.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/language/language.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/language/language.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/language/lookup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/language/lookup.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/language/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/language/match.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/language/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/language/parse.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/language/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/language/tables.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/language/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/language/tags.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/message/catalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/message/catalog.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/message/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/message/doc.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/message/fmt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/message/fmt_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/message/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/message/format.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/message/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/message/message.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/message/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/message/print.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/number/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/number/doc.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/number/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/number/format.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/number/format_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/number/format_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/number/number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/number/number.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/number/number_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/number/number_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/number/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/number/option.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/runes/cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/runes/cond.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/runes/cond_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/runes/cond_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/runes/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/runes/example_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/runes/runes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/runes/runes.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/runes/runes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/runes/runes_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/search/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/search/index.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/search/pattern.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/search/pattern.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/search/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/search/search.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/search/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/search/tables.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/secure/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/secure/doc.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/secure/precis/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/secure/precis/doc.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/secure/precis/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/secure/precis/gen.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/unicode/bidi/bidi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/unicode/bidi/bidi.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/unicode/bidi/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/unicode/bidi/core.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/unicode/bidi/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/unicode/bidi/gen.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/unicode/bidi/prop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/unicode/bidi/prop.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/unicode/cldr/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/unicode/cldr/base.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/unicode/cldr/cldr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/unicode/cldr/cldr.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/unicode/cldr/slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/unicode/cldr/slice.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/unicode/cldr/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/unicode/cldr/xml.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/unicode/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/unicode/doc.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/unicode/norm/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/unicode/norm/input.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/unicode/norm/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/unicode/norm/iter.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/unicode/norm/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/unicode/norm/trie.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/width/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/width/common_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/width/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/width/example_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/width/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/width/gen.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/width/gen_common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/width/gen_common.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/width/gen_trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/width/gen_trieval.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/width/kind_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/width/kind_string.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/width/runes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/width/runes_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/width/tables10.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/width/tables10.0.0.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/width/tables9.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/width/tables9.0.0.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/width/tables_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/width/tables_test.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/width/transform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/width/transform.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/width/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/width/trieval.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/text/width/width.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/text/width/width.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/time/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/time/AUTHORS -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/time/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/time/CONTRIBUTING.md -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/time/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/time/CONTRIBUTORS -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/time/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/time/LICENSE -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/time/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/time/PATENTS -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/time/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/time/README.md -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/time/rate/rate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/time/rate/rate.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/time/rate/rate_go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/time/rate/rate_go16.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/time/rate/rate_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/time/rate/rate_go17.go -------------------------------------------------------------------------------- /echo/vendor/golang.org/x/time/rate/rate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/golang.org/x/time/rate/rate_test.go -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/api/.gitignore -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/api/.hgtags: -------------------------------------------------------------------------------- 1 | b571b553f8c057cb6952ce817dfb09b6e34a8c0b release 2 | -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/api/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/api/.travis.yml -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/api/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/api/AUTHORS -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/api/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/api/CONTRIBUTING.md -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/api/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/api/CONTRIBUTORS -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/api/GettingStarted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/api/GettingStarted.md -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/api/LICENSE -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/api/NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/api/NOTES -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/api/README.md -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/api/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/api/TODO -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/api/api-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/api/api-list.json -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/api/dns/v1/dns-gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/api/dns/v1/dns-gen.go -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/api/examples/books.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/api/examples/books.go -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/api/examples/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/api/examples/debug.go -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/api/examples/drive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/api/examples/drive.go -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/api/examples/gmail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/api/examples/gmail.go -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/api/examples/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/api/examples/main.go -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/api/examples/tasks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/api/examples/tasks.go -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/api/gensupport/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/api/gensupport/doc.go -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/api/iam/v1/iam-gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/api/iam/v1/iam-gen.go -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/api/internal/creds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/api/internal/creds.go -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/api/internal/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/api/internal/pool.go -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/api/key.json.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/api/key.json.enc -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/api/lib/codereview/codereview.cfg: -------------------------------------------------------------------------------- 1 | defaultcc: golang-codereviews@googlegroups.com 2 | -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/api/ml/v1/ml-api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/api/ml/v1/ml-api.json -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/api/ml/v1/ml-gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/api/ml/v1/ml-gen.go -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/api/option/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/api/option/option.go -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/api/transport/dial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/api/transport/dial.go -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/appengine/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/appengine/.travis.yml -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/appengine/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/appengine/LICENSE -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/appengine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/appengine/README.md -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/appengine/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/appengine/errors.go -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/genproto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/genproto/LICENSE -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/genproto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/genproto/README.md -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/genproto/regen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/genproto/regen.go -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/genproto/regen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/genproto/regen.sh -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/grpc/.please-update: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/grpc/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/grpc/.travis.yml -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/grpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/grpc/Makefile -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/grpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/grpc/README.md -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/grpc/backoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/grpc/backoff.go -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/grpc/balancer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/grpc/balancer.go -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/grpc/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/grpc/call.go -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/grpc/call_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/grpc/call_test.go -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/grpc/clientconn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/grpc/clientconn.go -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/grpc/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/grpc/codec.go -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/grpc/codec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/grpc/codec_test.go -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/grpc/codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/grpc/codegen.sh -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/grpc/doc.go -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/grpc/go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/grpc/go16.go -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/grpc/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/grpc/go17.go -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/grpc/grpclb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/grpc/grpclb.go -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/grpc/peer/peer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/grpc/peer/peer.go -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/grpc/pickfirst.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/grpc/pickfirst.go -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/grpc/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/grpc/proxy.go -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/grpc/proxy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/grpc/proxy_test.go -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/grpc/rpc_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/grpc/rpc_util.go -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/grpc/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/grpc/server.go -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/grpc/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/grpc/stream.go -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/grpc/tap/tap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/grpc/tap/tap.go -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/grpc/test/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/grpc/test/race.go -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/grpc/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/grpc/trace.go -------------------------------------------------------------------------------- /echo/vendor/google.golang.org/grpc/vet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/echo/vendor/google.golang.org/grpc/vet.sh -------------------------------------------------------------------------------- /podpresets/echo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/podpresets/echo.yaml -------------------------------------------------------------------------------- /podpresets/gcp-pubsub-and-trace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/podpresets/gcp-pubsub-and-trace.yaml -------------------------------------------------------------------------------- /stackdriver-trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/gke-service-accounts-tutorial/HEAD/stackdriver-trace.png --------------------------------------------------------------------------------