├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── bqml-stackoverflow ├── .gitignore ├── .postcssrc ├── README.md ├── assets │ ├── circle.svg │ ├── favicon-apple.png │ ├── favicon.ico │ ├── header-desktop.svg │ ├── header-mobile.svg │ ├── nextbar │ │ ├── copy.svg │ │ ├── facebook.svg │ │ ├── gcloud-icon.svg │ │ ├── gcloud-text.svg │ │ ├── linkedin.svg │ │ ├── share.svg │ │ └── twitter.svg │ └── social.png ├── cloudbuild.yaml ├── index.html ├── package.json ├── scripts │ ├── app.tsx │ ├── components │ │ ├── home.tsx │ │ ├── insights.tsx │ │ ├── nextbar.tsx │ │ └── share-button.tsx │ ├── data │ │ ├── questions.ts │ │ └── tags.ts │ ├── font.js │ ├── services │ │ ├── api.ts │ │ ├── ga.ts │ │ └── share.ts │ └── types.d.ts ├── server │ ├── .cloudignore │ ├── app.yaml │ ├── db_user.yaml.sample │ ├── go.mod │ ├── go.sum │ └── main.go ├── styles │ ├── components │ │ ├── home.scss │ │ ├── insights.scss │ │ └── nextbar.scss │ ├── main.scss │ ├── reset.scss │ └── shared.scss ├── tsconfig.json └── yarn.lock ├── network-postcard ├── .gitignore ├── README.MD ├── Sample.properties ├── assets │ ├── img │ │ ├── asia-east1-a.png │ │ ├── asia-northeast1-a.png │ │ ├── australia-southeast1-a.png │ │ ├── europe-west2-b.png │ │ ├── europe-west3-a.png │ │ ├── matte.png │ │ ├── postcard.png │ │ ├── southamerica-east1-a.png │ │ ├── us-central1-f.png │ │ ├── us-east4-a.png │ │ └── us-west1-a.png │ ├── png │ │ ├── asia-east1-a.png │ │ ├── asia-northeast1-a.png │ │ ├── australia-southeast1-a.png │ │ ├── europe-west2-b.png │ │ ├── europe-west3-a.png │ │ ├── postcard.png │ │ ├── southamerica-east1-a.png │ │ ├── us-central1-f.png │ │ ├── us-east4-a.png │ │ └── us-west1-a.png │ ├── psd │ │ └── matte.psd │ ├── sparks │ │ ├── asia-east1-a.png │ │ ├── asia-northeast1-a.png │ │ ├── australia-southeast1-a.png │ │ ├── europe-west2-b.png │ │ ├── europe-west3-a.png │ │ ├── southamerica-east1-a.png │ │ ├── us-central1-f.png │ │ ├── us-east4-a.png │ │ └── us-west1-a.png │ └── stock │ │ ├── Flag_of_New_Taipei_City.svg │ │ ├── Hallmark_Crown.svg │ │ ├── New_Taipei_City_seal.svg │ │ ├── aircraft-take-off.svg │ │ ├── australia.svg │ │ ├── iowa.svg │ │ ├── oregon.svg │ │ ├── postcard.jpg │ │ └── virginia.svg ├── cloudbuild.yaml ├── frontend │ ├── .editorconfig │ ├── .gitignore │ ├── .postcssrc │ ├── app.yaml │ ├── assets │ │ ├── favicon-apple.png │ │ ├── favicon.ico │ │ ├── logo.svg │ │ ├── map.svg │ │ ├── nextbar │ │ │ ├── copy.svg │ │ │ ├── facebook.svg │ │ │ ├── gcloud-icon.svg │ │ │ ├── gcloud-text.svg │ │ │ ├── linkedin.svg │ │ │ ├── share.svg │ │ │ └── twitter.svg │ │ └── pin.svg │ ├── index.html │ ├── package.json │ ├── scripts │ │ ├── app.tsx │ │ ├── components │ │ │ ├── camera.tsx │ │ │ ├── home.tsx │ │ │ ├── journey.tsx │ │ │ ├── map.tsx │ │ │ ├── nextbar.tsx │ │ │ ├── result.tsx │ │ │ ├── share-button.tsx │ │ │ └── video-outlet.tsx │ │ ├── config.tsx │ │ ├── font.js │ │ ├── import.d.ts │ │ └── services │ │ │ ├── image.ts │ │ │ ├── network.ts │ │ │ ├── share.ts │ │ │ ├── store.ts │ │ │ └── webcam.ts │ ├── styles │ │ ├── components │ │ │ ├── camera.css │ │ │ ├── home.css │ │ │ ├── journey.css │ │ │ ├── map.css │ │ │ ├── nextbar.css │ │ │ ├── nextbar.scss │ │ │ └── result.css │ │ ├── main.css │ │ ├── reset.css │ │ └── shared.css │ ├── tsconfig.json │ ├── tslint.json │ └── yarn.lock ├── infrastructure │ ├── Makefile │ ├── gcloud │ │ └── gcloud.go │ ├── gcprelay.sh │ ├── out.png │ ├── persist │ │ └── persist.go │ ├── route │ │ ├── output.png │ │ ├── route.go │ │ └── route_test.go │ ├── scripts │ │ ├── .list │ │ ├── create.sh │ │ ├── delete.sh │ │ ├── gcprelay.conf │ │ ├── install_cert.sh │ │ ├── install_stackdriver.sh │ │ ├── restart_servers.sh │ │ ├── restart_service.sh │ │ ├── update_images.sh │ │ └── update_service.sh │ └── server │ │ ├── main.go │ │ └── main_test.go └── screenshots │ ├── postcard.png │ └── postcard_done.png ├── pi-day ├── .editorconfig ├── .gitignore ├── .postcssrc ├── README.md ├── assets │ ├── favicon-apple.png │ ├── favicon.ico │ ├── header.svg │ ├── home-desktop.svg │ ├── home.svg │ ├── logo.svg │ └── nextbar │ │ ├── copy.svg │ │ ├── facebook.svg │ │ ├── gcloud-icon.svg │ │ ├── gcloud-text.svg │ │ ├── linkedin.svg │ │ ├── share.svg │ │ └── twitter.svg ├── cloudbuild.yaml ├── index.html ├── package.json ├── scripts │ ├── all.js │ ├── app.tsx │ ├── components │ │ ├── chip.tsx │ │ ├── generate.tsx │ │ ├── home.tsx │ │ ├── nextbar.tsx │ │ ├── result.tsx │ │ └── share-button.tsx │ ├── declarations.d.ts │ ├── render │ │ ├── chip.ts │ │ ├── composition.ts │ │ ├── config.ts │ │ ├── glyphs.ts │ │ └── grid.ts │ └── services │ │ ├── ga.ts │ │ ├── pi.ts │ │ ├── share.ts │ │ └── utils.ts ├── server │ ├── .cloudignore │ ├── app.yaml │ ├── go.mod │ ├── go.sum │ └── main.go ├── styles │ ├── brands.css │ ├── fontawesome.css │ ├── generate.css │ ├── home.css │ ├── main.css │ ├── nextbar.css │ ├── nextbar.scss │ ├── result.css │ └── shared.css ├── tsconfig.json └── yarn.lock └── pizza-authenticator ├── .editorconfig ├── .gitignore ├── .postcssrc ├── Makefile ├── README.md ├── assets ├── analysing.gif ├── chewing.svg ├── dislike.gif ├── favicon-apple.png ├── favicon.ico ├── instructions.gif ├── lower-mouth.svg ├── nextbar │ ├── copy.svg │ ├── facebook.svg │ ├── gcloud-icon.svg │ ├── gcloud-text.svg │ ├── linkedin.svg │ ├── share.svg │ └── twitter.svg ├── pizza-chicago.svg ├── pizza-newyork.svg ├── pizza-other.svg ├── upper-mouth.svg └── yuck.svg ├── cloudbuild.yaml ├── collection ├── README.MD └── shapescraper │ ├── README.md │ └── main.go ├── index.html ├── package-lock.json ├── package.json ├── scripts ├── app.tsx ├── components │ ├── button-camera.tsx │ ├── button-upload.tsx │ ├── camera.tsx │ ├── failure.tsx │ ├── home.tsx │ ├── nextbar.tsx │ ├── overlay.tsx │ ├── result-valid-pizza.tsx │ ├── result.tsx │ ├── share-button.tsx │ ├── share.tsx │ └── video-outlet.tsx ├── config.ts ├── font.js ├── import.d.ts └── services │ ├── evaluate.ts │ ├── ga.ts │ ├── http.ts │ ├── share.ts │ └── webcam.ts ├── server ├── .gcloudignore ├── README.md ├── app.yaml ├── app_env.yaml ├── app_env_sample.yaml ├── cron.yaml ├── go.mod ├── go.sum ├── main.go ├── vendor │ ├── cloud.google.com │ │ └── go │ │ │ ├── .gitignore │ │ │ ├── CHANGES.md │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── RELEASING.md │ │ │ ├── compute │ │ │ └── metadata │ │ │ │ └── metadata.go │ │ │ ├── doc.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── iam │ │ │ └── iam.go │ │ │ ├── internal │ │ │ ├── .repo-metadata-full.json │ │ │ ├── README.md │ │ │ ├── annotate.go │ │ │ ├── optional │ │ │ │ └── optional.go │ │ │ ├── retry.go │ │ │ ├── trace │ │ │ │ └── trace.go │ │ │ └── version │ │ │ │ ├── update_version.sh │ │ │ │ └── version.go │ │ │ ├── storage │ │ │ ├── CHANGES.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── acl.go │ │ │ ├── bucket.go │ │ │ ├── copy.go │ │ │ ├── doc.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── go110.go │ │ │ ├── go_mod_tidy_hack.go │ │ │ ├── hmac.go │ │ │ ├── iam.go │ │ │ ├── invoke.go │ │ │ ├── not_go110.go │ │ │ ├── notifications.go │ │ │ ├── reader.go │ │ │ ├── storage.go │ │ │ ├── storage.replay │ │ │ └── writer.go │ │ │ └── tools.go │ ├── github.com │ │ ├── BurntSushi │ │ │ └── toml │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── COMPATIBLE │ │ │ │ ├── COPYING │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── decode.go │ │ │ │ ├── decode_meta.go │ │ │ │ ├── doc.go │ │ │ │ ├── encode.go │ │ │ │ ├── encoding_types.go │ │ │ │ ├── encoding_types_1.1.go │ │ │ │ ├── lex.go │ │ │ │ ├── parse.go │ │ │ │ ├── session.vim │ │ │ │ ├── type_check.go │ │ │ │ └── type_fields.go │ │ ├── golang │ │ │ ├── groupcache │ │ │ │ ├── LICENSE │ │ │ │ └── lru │ │ │ │ │ └── lru.go │ │ │ └── protobuf │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── internal │ │ │ │ └── gengogrpc │ │ │ │ │ └── grpc.go │ │ │ │ ├── proto │ │ │ │ ├── buffer.go │ │ │ │ ├── defaults.go │ │ │ │ ├── deprecated.go │ │ │ │ ├── discard.go │ │ │ │ ├── extensions.go │ │ │ │ ├── properties.go │ │ │ │ ├── proto.go │ │ │ │ ├── registry.go │ │ │ │ ├── text_decode.go │ │ │ │ ├── text_encode.go │ │ │ │ ├── wire.go │ │ │ │ └── wrappers.go │ │ │ │ ├── protoc-gen-go │ │ │ │ ├── descriptor │ │ │ │ │ └── descriptor.pb.go │ │ │ │ └── main.go │ │ │ │ └── ptypes │ │ │ │ ├── any.go │ │ │ │ ├── any │ │ │ │ └── any.pb.go │ │ │ │ ├── doc.go │ │ │ │ ├── duration.go │ │ │ │ ├── duration │ │ │ │ └── duration.pb.go │ │ │ │ ├── timestamp.go │ │ │ │ └── timestamp │ │ │ │ └── timestamp.pb.go │ │ ├── googleapis │ │ │ └── gax-go │ │ │ │ └── v2 │ │ │ │ ├── LICENSE │ │ │ │ ├── call_option.go │ │ │ │ ├── gax.go │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ ├── header.go │ │ │ │ └── invoke.go │ │ ├── jstemmer │ │ │ └── go-junit-report │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── formatter │ │ │ │ └── formatter.go │ │ │ │ ├── go-junit-report.go │ │ │ │ ├── go.mod │ │ │ │ └── parser │ │ │ │ └── parser.go │ │ ├── nfnt │ │ │ └── resize │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── converter.go │ │ │ │ ├── filters.go │ │ │ │ ├── nearest.go │ │ │ │ ├── resize.go │ │ │ │ ├── thumbnail.go │ │ │ │ └── ycc.go │ │ └── satori │ │ │ └── go.uuid │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── codec.go │ │ │ ├── generator.go │ │ │ ├── sql.go │ │ │ └── uuid.go │ ├── go.opencensus.io │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── go.mod │ │ ├── go.sum │ │ ├── internal │ │ │ ├── internal.go │ │ │ ├── sanitize.go │ │ │ ├── tagencoding │ │ │ │ └── tagencoding.go │ │ │ └── traceinternals.go │ │ ├── metric │ │ │ ├── metricdata │ │ │ │ ├── doc.go │ │ │ │ ├── exemplar.go │ │ │ │ ├── label.go │ │ │ │ ├── metric.go │ │ │ │ ├── point.go │ │ │ │ ├── type_string.go │ │ │ │ └── unit.go │ │ │ └── metricproducer │ │ │ │ ├── manager.go │ │ │ │ └── producer.go │ │ ├── opencensus.go │ │ ├── plugin │ │ │ └── ochttp │ │ │ │ ├── client.go │ │ │ │ ├── client_stats.go │ │ │ │ ├── doc.go │ │ │ │ ├── propagation │ │ │ │ └── b3 │ │ │ │ │ └── b3.go │ │ │ │ ├── route.go │ │ │ │ ├── server.go │ │ │ │ ├── span_annotating_client_trace.go │ │ │ │ ├── stats.go │ │ │ │ ├── trace.go │ │ │ │ └── wrapped_body.go │ │ ├── resource │ │ │ └── resource.go │ │ ├── stats │ │ │ ├── doc.go │ │ │ ├── internal │ │ │ │ └── record.go │ │ │ ├── measure.go │ │ │ ├── measure_float64.go │ │ │ ├── measure_int64.go │ │ │ ├── record.go │ │ │ ├── units.go │ │ │ └── view │ │ │ │ ├── aggregation.go │ │ │ │ ├── aggregation_data.go │ │ │ │ ├── collector.go │ │ │ │ ├── doc.go │ │ │ │ ├── export.go │ │ │ │ ├── view.go │ │ │ │ ├── view_to_metric.go │ │ │ │ ├── worker.go │ │ │ │ └── worker_commands.go │ │ ├── tag │ │ │ ├── context.go │ │ │ ├── doc.go │ │ │ ├── key.go │ │ │ ├── map.go │ │ │ ├── map_codec.go │ │ │ ├── metadata.go │ │ │ ├── profile_19.go │ │ │ ├── profile_not19.go │ │ │ └── validate.go │ │ └── trace │ │ │ ├── basetypes.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── evictedqueue.go │ │ │ ├── export.go │ │ │ ├── internal │ │ │ └── internal.go │ │ │ ├── lrumap.go │ │ │ ├── propagation │ │ │ └── propagation.go │ │ │ ├── sampling.go │ │ │ ├── spanbucket.go │ │ │ ├── spanstore.go │ │ │ ├── status_codes.go │ │ │ ├── trace.go │ │ │ ├── trace_go11.go │ │ │ ├── trace_nongo11.go │ │ │ └── tracestate │ │ │ └── tracestate.go │ ├── golang.org │ │ └── x │ │ │ ├── lint │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── golint │ │ │ │ ├── golint.go │ │ │ │ ├── import.go │ │ │ │ └── importcomment.go │ │ │ └── lint.go │ │ │ ├── mod │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── module │ │ │ │ └── module.go │ │ │ └── semver │ │ │ │ └── semver.go │ │ │ ├── net │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── context │ │ │ │ ├── context.go │ │ │ │ ├── ctxhttp │ │ │ │ │ └── ctxhttp.go │ │ │ │ ├── go17.go │ │ │ │ ├── go19.go │ │ │ │ ├── pre_go17.go │ │ │ │ └── pre_go19.go │ │ │ ├── http │ │ │ │ └── httpguts │ │ │ │ │ ├── guts.go │ │ │ │ │ └── httplex.go │ │ │ ├── http2 │ │ │ │ ├── .gitignore │ │ │ │ ├── Dockerfile │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── ciphers.go │ │ │ │ ├── client_conn_pool.go │ │ │ │ ├── databuffer.go │ │ │ │ ├── errors.go │ │ │ │ ├── flow.go │ │ │ │ ├── frame.go │ │ │ │ ├── go111.go │ │ │ │ ├── gotrack.go │ │ │ │ ├── headermap.go │ │ │ │ ├── hpack │ │ │ │ │ ├── encode.go │ │ │ │ │ ├── hpack.go │ │ │ │ │ ├── huffman.go │ │ │ │ │ └── tables.go │ │ │ │ ├── http2.go │ │ │ │ ├── not_go111.go │ │ │ │ ├── pipe.go │ │ │ │ ├── server.go │ │ │ │ ├── transport.go │ │ │ │ ├── write.go │ │ │ │ ├── writesched.go │ │ │ │ ├── writesched_priority.go │ │ │ │ └── writesched_random.go │ │ │ ├── idna │ │ │ │ ├── idna10.0.0.go │ │ │ │ ├── idna9.0.0.go │ │ │ │ ├── punycode.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables11.0.0.go │ │ │ │ ├── tables12.00.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ ├── trie.go │ │ │ │ └── trieval.go │ │ │ ├── internal │ │ │ │ └── timeseries │ │ │ │ │ └── timeseries.go │ │ │ └── trace │ │ │ │ ├── events.go │ │ │ │ ├── histogram.go │ │ │ │ └── trace.go │ │ │ ├── oauth2 │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── google │ │ │ │ ├── appengine.go │ │ │ │ ├── appengine_gen1.go │ │ │ │ ├── appengine_gen2_flex.go │ │ │ │ ├── default.go │ │ │ │ ├── doc.go │ │ │ │ ├── google.go │ │ │ │ ├── jwt.go │ │ │ │ └── sdk.go │ │ │ ├── internal │ │ │ │ ├── client_appengine.go │ │ │ │ ├── doc.go │ │ │ │ ├── oauth2.go │ │ │ │ ├── token.go │ │ │ │ └── transport.go │ │ │ ├── jws │ │ │ │ └── jws.go │ │ │ ├── jwt │ │ │ │ └── jwt.go │ │ │ ├── oauth2.go │ │ │ ├── token.go │ │ │ └── transport.go │ │ │ ├── sys │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ └── unix │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── affinity_linux.go │ │ │ │ ├── aliases.go │ │ │ │ ├── asm_aix_ppc64.s │ │ │ │ ├── asm_darwin_386.s │ │ │ │ ├── asm_darwin_amd64.s │ │ │ │ ├── asm_darwin_arm.s │ │ │ │ ├── asm_darwin_arm64.s │ │ │ │ ├── asm_dragonfly_amd64.s │ │ │ │ ├── asm_freebsd_386.s │ │ │ │ ├── asm_freebsd_amd64.s │ │ │ │ ├── asm_freebsd_arm.s │ │ │ │ ├── asm_freebsd_arm64.s │ │ │ │ ├── asm_linux_386.s │ │ │ │ ├── asm_linux_amd64.s │ │ │ │ ├── asm_linux_arm.s │ │ │ │ ├── asm_linux_arm64.s │ │ │ │ ├── asm_linux_mips64x.s │ │ │ │ ├── asm_linux_mipsx.s │ │ │ │ ├── asm_linux_ppc64x.s │ │ │ │ ├── asm_linux_riscv64.s │ │ │ │ ├── asm_linux_s390x.s │ │ │ │ ├── asm_netbsd_386.s │ │ │ │ ├── asm_netbsd_amd64.s │ │ │ │ ├── asm_netbsd_arm.s │ │ │ │ ├── asm_netbsd_arm64.s │ │ │ │ ├── asm_openbsd_386.s │ │ │ │ ├── asm_openbsd_amd64.s │ │ │ │ ├── asm_openbsd_arm.s │ │ │ │ ├── asm_openbsd_arm64.s │ │ │ │ ├── asm_solaris_amd64.s │ │ │ │ ├── bluetooth_linux.go │ │ │ │ ├── cap_freebsd.go │ │ │ │ ├── constants.go │ │ │ │ ├── dev_aix_ppc.go │ │ │ │ ├── dev_aix_ppc64.go │ │ │ │ ├── dev_darwin.go │ │ │ │ ├── dev_dragonfly.go │ │ │ │ ├── dev_freebsd.go │ │ │ │ ├── dev_linux.go │ │ │ │ ├── dev_netbsd.go │ │ │ │ ├── dev_openbsd.go │ │ │ │ ├── dirent.go │ │ │ │ ├── endian_big.go │ │ │ │ ├── endian_little.go │ │ │ │ ├── env_unix.go │ │ │ │ ├── errors_freebsd_386.go │ │ │ │ ├── errors_freebsd_amd64.go │ │ │ │ ├── errors_freebsd_arm.go │ │ │ │ ├── errors_freebsd_arm64.go │ │ │ │ ├── fcntl.go │ │ │ │ ├── fcntl_darwin.go │ │ │ │ ├── fcntl_linux_32bit.go │ │ │ │ ├── fdset.go │ │ │ │ ├── gccgo.go │ │ │ │ ├── gccgo_c.c │ │ │ │ ├── gccgo_linux_amd64.go │ │ │ │ ├── ioctl.go │ │ │ │ ├── mkall.sh │ │ │ │ ├── mkerrors.sh │ │ │ │ ├── pagesize_unix.go │ │ │ │ ├── pledge_openbsd.go │ │ │ │ ├── race.go │ │ │ │ ├── race0.go │ │ │ │ ├── readdirent_getdents.go │ │ │ │ ├── readdirent_getdirentries.go │ │ │ │ ├── sockcmsg_dragonfly.go │ │ │ │ ├── sockcmsg_linux.go │ │ │ │ ├── sockcmsg_unix.go │ │ │ │ ├── sockcmsg_unix_other.go │ │ │ │ ├── str.go │ │ │ │ ├── syscall.go │ │ │ │ ├── syscall_aix.go │ │ │ │ ├── syscall_aix_ppc.go │ │ │ │ ├── syscall_aix_ppc64.go │ │ │ │ ├── syscall_bsd.go │ │ │ │ ├── syscall_darwin.1_12.go │ │ │ │ ├── syscall_darwin.1_13.go │ │ │ │ ├── syscall_darwin.go │ │ │ │ ├── syscall_darwin_386.1_11.go │ │ │ │ ├── syscall_darwin_386.go │ │ │ │ ├── syscall_darwin_amd64.1_11.go │ │ │ │ ├── syscall_darwin_amd64.go │ │ │ │ ├── syscall_darwin_arm.1_11.go │ │ │ │ ├── syscall_darwin_arm.go │ │ │ │ ├── syscall_darwin_arm64.1_11.go │ │ │ │ ├── syscall_darwin_arm64.go │ │ │ │ ├── syscall_darwin_libSystem.go │ │ │ │ ├── syscall_dragonfly.go │ │ │ │ ├── syscall_dragonfly_amd64.go │ │ │ │ ├── syscall_freebsd.go │ │ │ │ ├── syscall_freebsd_386.go │ │ │ │ ├── syscall_freebsd_amd64.go │ │ │ │ ├── syscall_freebsd_arm.go │ │ │ │ ├── syscall_freebsd_arm64.go │ │ │ │ ├── syscall_illumos.go │ │ │ │ ├── syscall_linux.go │ │ │ │ ├── syscall_linux_386.go │ │ │ │ ├── syscall_linux_amd64.go │ │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ │ ├── syscall_linux_arm.go │ │ │ │ ├── syscall_linux_arm64.go │ │ │ │ ├── syscall_linux_gc.go │ │ │ │ ├── syscall_linux_gc_386.go │ │ │ │ ├── syscall_linux_gccgo_386.go │ │ │ │ ├── syscall_linux_gccgo_arm.go │ │ │ │ ├── syscall_linux_mips64x.go │ │ │ │ ├── syscall_linux_mipsx.go │ │ │ │ ├── syscall_linux_ppc64x.go │ │ │ │ ├── syscall_linux_riscv64.go │ │ │ │ ├── syscall_linux_s390x.go │ │ │ │ ├── syscall_linux_sparc64.go │ │ │ │ ├── syscall_netbsd.go │ │ │ │ ├── syscall_netbsd_386.go │ │ │ │ ├── syscall_netbsd_amd64.go │ │ │ │ ├── syscall_netbsd_arm.go │ │ │ │ ├── syscall_netbsd_arm64.go │ │ │ │ ├── syscall_openbsd.go │ │ │ │ ├── syscall_openbsd_386.go │ │ │ │ ├── syscall_openbsd_amd64.go │ │ │ │ ├── syscall_openbsd_arm.go │ │ │ │ ├── syscall_openbsd_arm64.go │ │ │ │ ├── syscall_solaris.go │ │ │ │ ├── syscall_solaris_amd64.go │ │ │ │ ├── syscall_unix.go │ │ │ │ ├── syscall_unix_gc.go │ │ │ │ ├── syscall_unix_gc_ppc64x.go │ │ │ │ ├── timestruct.go │ │ │ │ ├── unveil_openbsd.go │ │ │ │ ├── xattr_bsd.go │ │ │ │ ├── zerrors_aix_ppc.go │ │ │ │ ├── zerrors_aix_ppc64.go │ │ │ │ ├── zerrors_darwin_386.go │ │ │ │ ├── zerrors_darwin_amd64.go │ │ │ │ ├── zerrors_darwin_arm.go │ │ │ │ ├── zerrors_darwin_arm64.go │ │ │ │ ├── zerrors_dragonfly_amd64.go │ │ │ │ ├── zerrors_freebsd_386.go │ │ │ │ ├── zerrors_freebsd_amd64.go │ │ │ │ ├── zerrors_freebsd_arm.go │ │ │ │ ├── zerrors_freebsd_arm64.go │ │ │ │ ├── zerrors_linux.go │ │ │ │ ├── zerrors_linux_386.go │ │ │ │ ├── zerrors_linux_amd64.go │ │ │ │ ├── zerrors_linux_arm.go │ │ │ │ ├── zerrors_linux_arm64.go │ │ │ │ ├── zerrors_linux_mips.go │ │ │ │ ├── zerrors_linux_mips64.go │ │ │ │ ├── zerrors_linux_mips64le.go │ │ │ │ ├── zerrors_linux_mipsle.go │ │ │ │ ├── zerrors_linux_ppc64.go │ │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ │ ├── zerrors_linux_riscv64.go │ │ │ │ ├── zerrors_linux_s390x.go │ │ │ │ ├── zerrors_linux_sparc64.go │ │ │ │ ├── zerrors_netbsd_386.go │ │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ │ ├── zerrors_netbsd_arm.go │ │ │ │ ├── zerrors_netbsd_arm64.go │ │ │ │ ├── zerrors_openbsd_386.go │ │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ │ ├── zerrors_openbsd_arm.go │ │ │ │ ├── zerrors_openbsd_arm64.go │ │ │ │ ├── zerrors_solaris_amd64.go │ │ │ │ ├── zptrace_armnn_linux.go │ │ │ │ ├── zptrace_linux_arm64.go │ │ │ │ ├── zptrace_mipsnn_linux.go │ │ │ │ ├── zptrace_mipsnnle_linux.go │ │ │ │ ├── zptrace_x86_linux.go │ │ │ │ ├── zsyscall_aix_ppc.go │ │ │ │ ├── zsyscall_aix_ppc64.go │ │ │ │ ├── zsyscall_aix_ppc64_gc.go │ │ │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ │ │ ├── zsyscall_darwin_386.1_11.go │ │ │ │ ├── zsyscall_darwin_386.1_13.go │ │ │ │ ├── zsyscall_darwin_386.1_13.s │ │ │ │ ├── zsyscall_darwin_386.go │ │ │ │ ├── zsyscall_darwin_386.s │ │ │ │ ├── zsyscall_darwin_amd64.1_11.go │ │ │ │ ├── zsyscall_darwin_amd64.1_13.go │ │ │ │ ├── zsyscall_darwin_amd64.1_13.s │ │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ │ ├── zsyscall_darwin_amd64.s │ │ │ │ ├── zsyscall_darwin_arm.1_11.go │ │ │ │ ├── zsyscall_darwin_arm.1_13.go │ │ │ │ ├── zsyscall_darwin_arm.1_13.s │ │ │ │ ├── zsyscall_darwin_arm.go │ │ │ │ ├── zsyscall_darwin_arm.s │ │ │ │ ├── zsyscall_darwin_arm64.1_11.go │ │ │ │ ├── zsyscall_darwin_arm64.1_13.go │ │ │ │ ├── zsyscall_darwin_arm64.1_13.s │ │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ │ ├── zsyscall_darwin_arm64.s │ │ │ │ ├── zsyscall_dragonfly_amd64.go │ │ │ │ ├── zsyscall_freebsd_386.go │ │ │ │ ├── zsyscall_freebsd_amd64.go │ │ │ │ ├── zsyscall_freebsd_arm.go │ │ │ │ ├── zsyscall_freebsd_arm64.go │ │ │ │ ├── zsyscall_illumos_amd64.go │ │ │ │ ├── zsyscall_linux.go │ │ │ │ ├── zsyscall_linux_386.go │ │ │ │ ├── zsyscall_linux_amd64.go │ │ │ │ ├── zsyscall_linux_arm.go │ │ │ │ ├── zsyscall_linux_arm64.go │ │ │ │ ├── zsyscall_linux_mips.go │ │ │ │ ├── zsyscall_linux_mips64.go │ │ │ │ ├── zsyscall_linux_mips64le.go │ │ │ │ ├── zsyscall_linux_mipsle.go │ │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ │ ├── zsyscall_linux_riscv64.go │ │ │ │ ├── zsyscall_linux_s390x.go │ │ │ │ ├── zsyscall_linux_sparc64.go │ │ │ │ ├── zsyscall_netbsd_386.go │ │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ │ ├── zsyscall_netbsd_arm64.go │ │ │ │ ├── zsyscall_openbsd_386.go │ │ │ │ ├── zsyscall_openbsd_amd64.go │ │ │ │ ├── zsyscall_openbsd_arm.go │ │ │ │ ├── zsyscall_openbsd_arm64.go │ │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ │ ├── zsysctl_openbsd_386.go │ │ │ │ ├── zsysctl_openbsd_amd64.go │ │ │ │ ├── zsysctl_openbsd_arm.go │ │ │ │ ├── zsysctl_openbsd_arm64.go │ │ │ │ ├── zsysnum_darwin_386.go │ │ │ │ ├── zsysnum_darwin_amd64.go │ │ │ │ ├── zsysnum_darwin_arm.go │ │ │ │ ├── zsysnum_darwin_arm64.go │ │ │ │ ├── zsysnum_dragonfly_amd64.go │ │ │ │ ├── zsysnum_freebsd_386.go │ │ │ │ ├── zsysnum_freebsd_amd64.go │ │ │ │ ├── zsysnum_freebsd_arm.go │ │ │ │ ├── zsysnum_freebsd_arm64.go │ │ │ │ ├── zsysnum_linux_386.go │ │ │ │ ├── zsysnum_linux_amd64.go │ │ │ │ ├── zsysnum_linux_arm.go │ │ │ │ ├── zsysnum_linux_arm64.go │ │ │ │ ├── zsysnum_linux_mips.go │ │ │ │ ├── zsysnum_linux_mips64.go │ │ │ │ ├── zsysnum_linux_mips64le.go │ │ │ │ ├── zsysnum_linux_mipsle.go │ │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ │ ├── zsysnum_linux_riscv64.go │ │ │ │ ├── zsysnum_linux_s390x.go │ │ │ │ ├── zsysnum_linux_sparc64.go │ │ │ │ ├── zsysnum_netbsd_386.go │ │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ │ ├── zsysnum_netbsd_arm64.go │ │ │ │ ├── zsysnum_openbsd_386.go │ │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ │ ├── zsysnum_openbsd_arm.go │ │ │ │ ├── zsysnum_openbsd_arm64.go │ │ │ │ ├── ztypes_aix_ppc.go │ │ │ │ ├── ztypes_aix_ppc64.go │ │ │ │ ├── ztypes_darwin_386.go │ │ │ │ ├── ztypes_darwin_amd64.go │ │ │ │ ├── ztypes_darwin_arm.go │ │ │ │ ├── ztypes_darwin_arm64.go │ │ │ │ ├── ztypes_dragonfly_amd64.go │ │ │ │ ├── ztypes_freebsd_386.go │ │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ │ ├── ztypes_freebsd_arm.go │ │ │ │ ├── ztypes_freebsd_arm64.go │ │ │ │ ├── ztypes_linux.go │ │ │ │ ├── ztypes_linux_386.go │ │ │ │ ├── ztypes_linux_amd64.go │ │ │ │ ├── ztypes_linux_arm.go │ │ │ │ ├── ztypes_linux_arm64.go │ │ │ │ ├── ztypes_linux_mips.go │ │ │ │ ├── ztypes_linux_mips64.go │ │ │ │ ├── ztypes_linux_mips64le.go │ │ │ │ ├── ztypes_linux_mipsle.go │ │ │ │ ├── ztypes_linux_ppc64.go │ │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ │ ├── ztypes_linux_riscv64.go │ │ │ │ ├── ztypes_linux_s390x.go │ │ │ │ ├── ztypes_linux_sparc64.go │ │ │ │ ├── ztypes_netbsd_386.go │ │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ │ ├── ztypes_netbsd_arm.go │ │ │ │ ├── ztypes_netbsd_arm64.go │ │ │ │ ├── ztypes_openbsd_386.go │ │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ │ ├── ztypes_openbsd_arm.go │ │ │ │ ├── ztypes_openbsd_arm64.go │ │ │ │ └── ztypes_solaris_amd64.go │ │ │ ├── text │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── secure │ │ │ │ └── bidirule │ │ │ │ │ ├── bidirule.go │ │ │ │ │ ├── bidirule10.0.0.go │ │ │ │ │ └── bidirule9.0.0.go │ │ │ ├── transform │ │ │ │ └── transform.go │ │ │ └── unicode │ │ │ │ ├── bidi │ │ │ │ ├── bidi.go │ │ │ │ ├── bracket.go │ │ │ │ ├── core.go │ │ │ │ ├── prop.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables11.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ └── trieval.go │ │ │ │ └── norm │ │ │ │ ├── composition.go │ │ │ │ ├── forminfo.go │ │ │ │ ├── input.go │ │ │ │ ├── iter.go │ │ │ │ ├── normalize.go │ │ │ │ ├── readwriter.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables11.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ ├── transform.go │ │ │ │ └── trie.go │ │ │ ├── tools │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── cmd │ │ │ │ └── goimports │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── goimports.go │ │ │ │ │ ├── goimports_gc.go │ │ │ │ │ └── goimports_not_gc.go │ │ │ ├── go │ │ │ │ ├── analysis │ │ │ │ │ ├── analysis.go │ │ │ │ │ ├── diagnostic.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── passes │ │ │ │ │ │ └── inspect │ │ │ │ │ │ │ └── inspect.go │ │ │ │ │ └── validate.go │ │ │ │ ├── ast │ │ │ │ │ ├── astutil │ │ │ │ │ │ ├── enclosing.go │ │ │ │ │ │ ├── imports.go │ │ │ │ │ │ ├── rewrite.go │ │ │ │ │ │ └── util.go │ │ │ │ │ └── inspector │ │ │ │ │ │ ├── inspector.go │ │ │ │ │ │ └── typeof.go │ │ │ │ ├── buildutil │ │ │ │ │ ├── allpackages.go │ │ │ │ │ ├── fakecontext.go │ │ │ │ │ ├── overlay.go │ │ │ │ │ ├── tags.go │ │ │ │ │ └── util.go │ │ │ │ ├── gcexportdata │ │ │ │ │ ├── gcexportdata.go │ │ │ │ │ └── importer.go │ │ │ │ ├── internal │ │ │ │ │ ├── cgo │ │ │ │ │ │ ├── cgo.go │ │ │ │ │ │ └── cgo_pkgconfig.go │ │ │ │ │ ├── gcimporter │ │ │ │ │ │ ├── exportdata.go │ │ │ │ │ │ ├── gcimporter.go │ │ │ │ │ │ ├── iexport.go │ │ │ │ │ │ ├── iimport.go │ │ │ │ │ │ ├── newInterface10.go │ │ │ │ │ │ └── newInterface11.go │ │ │ │ │ └── packagesdriver │ │ │ │ │ │ └── sizes.go │ │ │ │ ├── loader │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── loader.go │ │ │ │ │ └── util.go │ │ │ │ ├── packages │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── external.go │ │ │ │ │ ├── golist.go │ │ │ │ │ ├── golist_overlay.go │ │ │ │ │ ├── loadmode_string.go │ │ │ │ │ ├── packages.go │ │ │ │ │ └── visit.go │ │ │ │ └── types │ │ │ │ │ ├── objectpath │ │ │ │ │ └── objectpath.go │ │ │ │ │ └── typeutil │ │ │ │ │ ├── callee.go │ │ │ │ │ ├── imports.go │ │ │ │ │ ├── map.go │ │ │ │ │ ├── methodsetcache.go │ │ │ │ │ └── ui.go │ │ │ └── internal │ │ │ │ ├── analysisinternal │ │ │ │ └── analysis.go │ │ │ │ ├── event │ │ │ │ ├── core │ │ │ │ │ ├── event.go │ │ │ │ │ ├── export.go │ │ │ │ │ └── fast.go │ │ │ │ ├── doc.go │ │ │ │ ├── event.go │ │ │ │ ├── keys │ │ │ │ │ ├── keys.go │ │ │ │ │ └── standard.go │ │ │ │ └── label │ │ │ │ │ └── label.go │ │ │ │ ├── fastwalk │ │ │ │ ├── fastwalk.go │ │ │ │ ├── fastwalk_dirent_fileno.go │ │ │ │ ├── fastwalk_dirent_ino.go │ │ │ │ ├── fastwalk_dirent_namlen_bsd.go │ │ │ │ ├── fastwalk_dirent_namlen_linux.go │ │ │ │ ├── fastwalk_portable.go │ │ │ │ └── fastwalk_unix.go │ │ │ │ ├── gocommand │ │ │ │ └── invoke.go │ │ │ │ ├── gopathwalk │ │ │ │ └── walk.go │ │ │ │ ├── imports │ │ │ │ ├── fix.go │ │ │ │ ├── imports.go │ │ │ │ ├── mod.go │ │ │ │ ├── mod_cache.go │ │ │ │ ├── sortimports.go │ │ │ │ └── zstdlib.go │ │ │ │ └── packagesinternal │ │ │ │ └── packages.go │ │ │ └── xerrors │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── README │ │ │ ├── adaptor.go │ │ │ ├── codereview.cfg │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── fmt.go │ │ │ ├── format.go │ │ │ ├── frame.go │ │ │ ├── go.mod │ │ │ ├── internal │ │ │ └── internal.go │ │ │ └── wrap.go │ ├── google.golang.org │ │ ├── api │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── cloudkms │ │ │ │ └── v1 │ │ │ │ │ ├── cloudkms-api.json │ │ │ │ │ └── cloudkms-gen.go │ │ │ ├── googleapi │ │ │ │ ├── googleapi.go │ │ │ │ ├── transport │ │ │ │ │ └── apikey.go │ │ │ │ └── types.go │ │ │ ├── internal │ │ │ │ ├── conn_pool.go │ │ │ │ ├── creds.go │ │ │ │ ├── gensupport │ │ │ │ │ ├── buffer.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── json.go │ │ │ │ │ ├── jsonfloat.go │ │ │ │ │ ├── media.go │ │ │ │ │ ├── params.go │ │ │ │ │ ├── resumable.go │ │ │ │ │ ├── send.go │ │ │ │ │ └── version.go │ │ │ │ ├── service-account.json │ │ │ │ ├── settings.go │ │ │ │ └── third_party │ │ │ │ │ └── uritemplates │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── METADATA │ │ │ │ │ ├── uritemplates.go │ │ │ │ │ └── utils.go │ │ │ ├── iterator │ │ │ │ └── iterator.go │ │ │ ├── option │ │ │ │ ├── credentials_go19.go │ │ │ │ ├── credentials_notgo19.go │ │ │ │ ├── internaloption │ │ │ │ │ └── internaloption.go │ │ │ │ └── option.go │ │ │ ├── storage │ │ │ │ └── v1 │ │ │ │ │ ├── storage-api.json │ │ │ │ │ └── storage-gen.go │ │ │ └── transport │ │ │ │ ├── cert │ │ │ │ └── default_cert.go │ │ │ │ └── http │ │ │ │ ├── dial.go │ │ │ │ ├── dial_appengine.go │ │ │ │ └── internal │ │ │ │ └── propagation │ │ │ │ └── http.go │ │ ├── appengine │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── appengine.go │ │ │ ├── appengine_vm.go │ │ │ ├── datastore │ │ │ │ ├── datastore.go │ │ │ │ ├── doc.go │ │ │ │ ├── internal │ │ │ │ │ ├── cloudkey │ │ │ │ │ │ └── cloudkey.go │ │ │ │ │ └── cloudpb │ │ │ │ │ │ └── entity.pb.go │ │ │ │ ├── key.go │ │ │ │ ├── keycompat.go │ │ │ │ ├── load.go │ │ │ │ ├── metadata.go │ │ │ │ ├── prop.go │ │ │ │ ├── query.go │ │ │ │ ├── save.go │ │ │ │ └── transaction.go │ │ │ ├── errors.go │ │ │ ├── file │ │ │ │ └── file.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── identity.go │ │ │ ├── internal │ │ │ │ ├── api.go │ │ │ │ ├── api_classic.go │ │ │ │ ├── api_common.go │ │ │ │ ├── app_id.go │ │ │ │ ├── app_identity │ │ │ │ │ ├── app_identity_service.pb.go │ │ │ │ │ └── app_identity_service.proto │ │ │ │ ├── base │ │ │ │ │ ├── api_base.pb.go │ │ │ │ │ └── api_base.proto │ │ │ │ ├── datastore │ │ │ │ │ ├── datastore_v3.pb.go │ │ │ │ │ └── datastore_v3.proto │ │ │ │ ├── identity.go │ │ │ │ ├── identity_classic.go │ │ │ │ ├── identity_flex.go │ │ │ │ ├── identity_vm.go │ │ │ │ ├── internal.go │ │ │ │ ├── log │ │ │ │ │ ├── log_service.pb.go │ │ │ │ │ └── log_service.proto │ │ │ │ ├── main.go │ │ │ │ ├── main_common.go │ │ │ │ ├── main_vm.go │ │ │ │ ├── metadata.go │ │ │ │ ├── modules │ │ │ │ │ ├── modules_service.pb.go │ │ │ │ │ └── modules_service.proto │ │ │ │ ├── net.go │ │ │ │ ├── regen.sh │ │ │ │ ├── remote_api │ │ │ │ │ ├── remote_api.pb.go │ │ │ │ │ └── remote_api.proto │ │ │ │ ├── transaction.go │ │ │ │ └── urlfetch │ │ │ │ │ ├── urlfetch_service.pb.go │ │ │ │ │ └── urlfetch_service.proto │ │ │ ├── log │ │ │ │ ├── api.go │ │ │ │ └── log.go │ │ │ ├── namespace.go │ │ │ ├── timeout.go │ │ │ ├── travis_install.sh │ │ │ ├── travis_test.sh │ │ │ └── urlfetch │ │ │ │ └── urlfetch.go │ │ ├── genproto │ │ │ ├── LICENSE │ │ │ └── googleapis │ │ │ │ ├── api │ │ │ │ └── annotations │ │ │ │ │ ├── annotations.pb.go │ │ │ │ │ ├── client.pb.go │ │ │ │ │ ├── field_behavior.pb.go │ │ │ │ │ ├── http.pb.go │ │ │ │ │ └── resource.pb.go │ │ │ │ ├── iam │ │ │ │ └── v1 │ │ │ │ │ ├── iam_policy.pb.go │ │ │ │ │ ├── options.pb.go │ │ │ │ │ └── policy.pb.go │ │ │ │ ├── rpc │ │ │ │ ├── code │ │ │ │ │ └── code.pb.go │ │ │ │ └── status │ │ │ │ │ └── status.pb.go │ │ │ │ └── type │ │ │ │ └── expr │ │ │ │ └── expr.pb.go │ │ ├── grpc │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── CODE-OF-CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── GOVERNANCE.md │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS.md │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── attributes │ │ │ │ └── attributes.go │ │ │ ├── backoff.go │ │ │ ├── backoff │ │ │ │ └── backoff.go │ │ │ ├── balancer.go │ │ │ ├── balancer │ │ │ │ ├── balancer.go │ │ │ │ ├── base │ │ │ │ │ ├── balancer.go │ │ │ │ │ └── base.go │ │ │ │ └── roundrobin │ │ │ │ │ └── roundrobin.go │ │ │ ├── balancer_conn_wrappers.go │ │ │ ├── balancer_v1_wrapper.go │ │ │ ├── binarylog │ │ │ │ └── grpc_binarylog_v1 │ │ │ │ │ └── binarylog.pb.go │ │ │ ├── call.go │ │ │ ├── clientconn.go │ │ │ ├── codec.go │ │ │ ├── codegen.sh │ │ │ ├── codes │ │ │ │ ├── code_string.go │ │ │ │ └── codes.go │ │ │ ├── connectivity │ │ │ │ └── connectivity.go │ │ │ ├── credentials │ │ │ │ ├── credentials.go │ │ │ │ ├── go12.go │ │ │ │ ├── internal │ │ │ │ │ ├── syscallconn.go │ │ │ │ │ └── syscallconn_appengine.go │ │ │ │ └── tls.go │ │ │ ├── dialoptions.go │ │ │ ├── doc.go │ │ │ ├── encoding │ │ │ │ ├── encoding.go │ │ │ │ └── proto │ │ │ │ │ └── proto.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── grpclog │ │ │ │ ├── grpclog.go │ │ │ │ ├── logger.go │ │ │ │ └── loggerv2.go │ │ │ ├── install_gae.sh │ │ │ ├── interceptor.go │ │ │ ├── internal │ │ │ │ ├── backoff │ │ │ │ │ └── backoff.go │ │ │ │ ├── balancerload │ │ │ │ │ └── load.go │ │ │ │ ├── binarylog │ │ │ │ │ ├── binarylog.go │ │ │ │ │ ├── binarylog_testutil.go │ │ │ │ │ ├── env_config.go │ │ │ │ │ ├── method_logger.go │ │ │ │ │ ├── regenerate.sh │ │ │ │ │ ├── sink.go │ │ │ │ │ └── util.go │ │ │ │ ├── buffer │ │ │ │ │ └── unbounded.go │ │ │ │ ├── channelz │ │ │ │ │ ├── funcs.go │ │ │ │ │ ├── logging.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_linux.go │ │ │ │ │ ├── types_nonlinux.go │ │ │ │ │ ├── util_linux.go │ │ │ │ │ └── util_nonlinux.go │ │ │ │ ├── envconfig │ │ │ │ │ └── envconfig.go │ │ │ │ ├── grpclog │ │ │ │ │ ├── grpclog.go │ │ │ │ │ └── prefixLogger.go │ │ │ │ ├── grpcrand │ │ │ │ │ └── grpcrand.go │ │ │ │ ├── grpcsync │ │ │ │ │ └── event.go │ │ │ │ ├── grpcutil │ │ │ │ │ └── target.go │ │ │ │ ├── internal.go │ │ │ │ ├── resolver │ │ │ │ │ ├── dns │ │ │ │ │ │ ├── dns_resolver.go │ │ │ │ │ │ └── go113.go │ │ │ │ │ └── passthrough │ │ │ │ │ │ └── passthrough.go │ │ │ │ ├── status │ │ │ │ │ └── status.go │ │ │ │ ├── syscall │ │ │ │ │ ├── syscall_linux.go │ │ │ │ │ └── syscall_nonlinux.go │ │ │ │ └── transport │ │ │ │ │ ├── bdp_estimator.go │ │ │ │ │ ├── controlbuf.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── flowcontrol.go │ │ │ │ │ ├── handler_server.go │ │ │ │ │ ├── http2_client.go │ │ │ │ │ ├── http2_server.go │ │ │ │ │ ├── http_util.go │ │ │ │ │ ├── log.go │ │ │ │ │ └── transport.go │ │ │ ├── keepalive │ │ │ │ └── keepalive.go │ │ │ ├── metadata │ │ │ │ └── metadata.go │ │ │ ├── naming │ │ │ │ ├── dns_resolver.go │ │ │ │ └── naming.go │ │ │ ├── peer │ │ │ │ └── peer.go │ │ │ ├── picker_wrapper.go │ │ │ ├── pickfirst.go │ │ │ ├── preloader.go │ │ │ ├── proxy.go │ │ │ ├── resolver │ │ │ │ └── resolver.go │ │ │ ├── resolver_conn_wrapper.go │ │ │ ├── rpc_util.go │ │ │ ├── server.go │ │ │ ├── service_config.go │ │ │ ├── serviceconfig │ │ │ │ └── serviceconfig.go │ │ │ ├── stats │ │ │ │ ├── handlers.go │ │ │ │ └── stats.go │ │ │ ├── status │ │ │ │ └── status.go │ │ │ ├── stream.go │ │ │ ├── tap │ │ │ │ └── tap.go │ │ │ ├── trace.go │ │ │ ├── version.go │ │ │ └── vet.sh │ │ └── protobuf │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── cmd │ │ │ └── protoc-gen-go │ │ │ │ └── internal_gengo │ │ │ │ ├── init.go │ │ │ │ ├── main.go │ │ │ │ └── reflect.go │ │ │ ├── compiler │ │ │ └── protogen │ │ │ │ └── protogen.go │ │ │ ├── encoding │ │ │ ├── prototext │ │ │ │ ├── decode.go │ │ │ │ ├── doc.go │ │ │ │ └── encode.go │ │ │ └── protowire │ │ │ │ └── wire.go │ │ │ ├── internal │ │ │ ├── descfmt │ │ │ │ └── stringer.go │ │ │ ├── descopts │ │ │ │ └── options.go │ │ │ ├── detrand │ │ │ │ └── rand.go │ │ │ ├── encoding │ │ │ │ ├── defval │ │ │ │ │ └── default.go │ │ │ │ ├── messageset │ │ │ │ │ └── messageset.go │ │ │ │ ├── tag │ │ │ │ │ └── tag.go │ │ │ │ └── text │ │ │ │ │ ├── decode.go │ │ │ │ │ ├── decode_number.go │ │ │ │ │ ├── decode_string.go │ │ │ │ │ ├── decode_token.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── encode.go │ │ │ ├── errors │ │ │ │ ├── errors.go │ │ │ │ ├── is_go112.go │ │ │ │ └── is_go113.go │ │ │ ├── fieldnum │ │ │ │ ├── any_gen.go │ │ │ │ ├── api_gen.go │ │ │ │ ├── descriptor_gen.go │ │ │ │ ├── doc.go │ │ │ │ ├── duration_gen.go │ │ │ │ ├── empty_gen.go │ │ │ │ ├── field_mask_gen.go │ │ │ │ ├── source_context_gen.go │ │ │ │ ├── struct_gen.go │ │ │ │ ├── timestamp_gen.go │ │ │ │ ├── type_gen.go │ │ │ │ └── wrappers_gen.go │ │ │ ├── fieldsort │ │ │ │ └── fieldsort.go │ │ │ ├── filedesc │ │ │ │ ├── build.go │ │ │ │ ├── desc.go │ │ │ │ ├── desc_init.go │ │ │ │ ├── desc_lazy.go │ │ │ │ ├── desc_list.go │ │ │ │ ├── desc_list_gen.go │ │ │ │ └── placeholder.go │ │ │ ├── filetype │ │ │ │ └── build.go │ │ │ ├── flags │ │ │ │ ├── flags.go │ │ │ │ ├── proto_legacy_disable.go │ │ │ │ └── proto_legacy_enable.go │ │ │ ├── genname │ │ │ │ └── name.go │ │ │ ├── impl │ │ │ │ ├── api_export.go │ │ │ │ ├── checkinit.go │ │ │ │ ├── codec_extension.go │ │ │ │ ├── codec_field.go │ │ │ │ ├── codec_gen.go │ │ │ │ ├── codec_map.go │ │ │ │ ├── codec_map_go111.go │ │ │ │ ├── codec_map_go112.go │ │ │ │ ├── codec_message.go │ │ │ │ ├── codec_messageset.go │ │ │ │ ├── codec_reflect.go │ │ │ │ ├── codec_tables.go │ │ │ │ ├── codec_unsafe.go │ │ │ │ ├── convert.go │ │ │ │ ├── convert_list.go │ │ │ │ ├── convert_map.go │ │ │ │ ├── decode.go │ │ │ │ ├── encode.go │ │ │ │ ├── enum.go │ │ │ │ ├── extension.go │ │ │ │ ├── legacy_enum.go │ │ │ │ ├── legacy_export.go │ │ │ │ ├── legacy_extension.go │ │ │ │ ├── legacy_file.go │ │ │ │ ├── legacy_message.go │ │ │ │ ├── merge.go │ │ │ │ ├── merge_gen.go │ │ │ │ ├── message.go │ │ │ │ ├── message_reflect.go │ │ │ │ ├── message_reflect_field.go │ │ │ │ ├── message_reflect_gen.go │ │ │ │ ├── pointer_reflect.go │ │ │ │ ├── pointer_unsafe.go │ │ │ │ ├── validate.go │ │ │ │ └── weak.go │ │ │ ├── mapsort │ │ │ │ └── mapsort.go │ │ │ ├── pragma │ │ │ │ └── pragma.go │ │ │ ├── set │ │ │ │ └── ints.go │ │ │ ├── strs │ │ │ │ ├── strings.go │ │ │ │ ├── strings_pure.go │ │ │ │ └── strings_unsafe.go │ │ │ └── version │ │ │ │ └── version.go │ │ │ ├── proto │ │ │ ├── checkinit.go │ │ │ ├── decode.go │ │ │ ├── decode_gen.go │ │ │ ├── doc.go │ │ │ ├── encode.go │ │ │ ├── encode_gen.go │ │ │ ├── equal.go │ │ │ ├── extension.go │ │ │ ├── merge.go │ │ │ ├── messageset.go │ │ │ ├── proto.go │ │ │ ├── proto_methods.go │ │ │ ├── proto_reflect.go │ │ │ ├── reset.go │ │ │ ├── size.go │ │ │ ├── size_gen.go │ │ │ └── wrappers.go │ │ │ ├── reflect │ │ │ ├── protodesc │ │ │ │ ├── desc.go │ │ │ │ ├── desc_init.go │ │ │ │ ├── desc_resolve.go │ │ │ │ ├── desc_validate.go │ │ │ │ └── proto.go │ │ │ ├── protoreflect │ │ │ │ ├── methods.go │ │ │ │ ├── proto.go │ │ │ │ ├── source.go │ │ │ │ ├── type.go │ │ │ │ ├── value.go │ │ │ │ ├── value_pure.go │ │ │ │ ├── value_union.go │ │ │ │ └── value_unsafe.go │ │ │ └── protoregistry │ │ │ │ └── registry.go │ │ │ ├── runtime │ │ │ ├── protoiface │ │ │ │ ├── legacy.go │ │ │ │ └── methods.go │ │ │ └── protoimpl │ │ │ │ ├── impl.go │ │ │ │ └── version.go │ │ │ └── types │ │ │ ├── descriptorpb │ │ │ └── descriptor.pb.go │ │ │ ├── known │ │ │ ├── anypb │ │ │ │ └── any.pb.go │ │ │ ├── durationpb │ │ │ │ └── duration.pb.go │ │ │ └── timestamppb │ │ │ │ └── timestamp.pb.go │ │ │ └── pluginpb │ │ │ └── plugin.pb.go │ ├── honnef.co │ │ └── go │ │ │ └── tools │ │ │ ├── LICENSE │ │ │ ├── LICENSE-THIRD-PARTY │ │ │ ├── arg │ │ │ └── arg.go │ │ │ ├── cmd │ │ │ └── staticcheck │ │ │ │ ├── README.md │ │ │ │ └── staticcheck.go │ │ │ ├── code │ │ │ └── code.go │ │ │ ├── config │ │ │ ├── config.go │ │ │ └── example.conf │ │ │ ├── deprecated │ │ │ └── stdlib.go │ │ │ ├── edit │ │ │ └── edit.go │ │ │ ├── facts │ │ │ ├── deprecated.go │ │ │ ├── generated.go │ │ │ ├── purity.go │ │ │ └── token.go │ │ │ ├── functions │ │ │ ├── loops.go │ │ │ ├── stub.go │ │ │ └── terminates.go │ │ │ ├── go │ │ │ └── types │ │ │ │ └── typeutil │ │ │ │ ├── callee.go │ │ │ │ ├── identical.go │ │ │ │ ├── imports.go │ │ │ │ ├── map.go │ │ │ │ ├── methodsetcache.go │ │ │ │ └── ui.go │ │ │ ├── internal │ │ │ ├── cache │ │ │ │ ├── cache.go │ │ │ │ ├── default.go │ │ │ │ └── hash.go │ │ │ ├── passes │ │ │ │ └── buildir │ │ │ │ │ └── buildir.go │ │ │ ├── renameio │ │ │ │ └── renameio.go │ │ │ ├── robustio │ │ │ │ ├── robustio.go │ │ │ │ ├── robustio_darwin.go │ │ │ │ ├── robustio_flaky.go │ │ │ │ ├── robustio_other.go │ │ │ │ └── robustio_windows.go │ │ │ └── sharedcheck │ │ │ │ └── lint.go │ │ │ ├── ir │ │ │ ├── LICENSE │ │ │ ├── blockopt.go │ │ │ ├── builder.go │ │ │ ├── const.go │ │ │ ├── create.go │ │ │ ├── doc.go │ │ │ ├── dom.go │ │ │ ├── emit.go │ │ │ ├── exits.go │ │ │ ├── func.go │ │ │ ├── html.go │ │ │ ├── identical.go │ │ │ ├── identical_17.go │ │ │ ├── irutil │ │ │ │ ├── load.go │ │ │ │ ├── switch.go │ │ │ │ ├── util.go │ │ │ │ └── visit.go │ │ │ ├── lift.go │ │ │ ├── lvalue.go │ │ │ ├── methods.go │ │ │ ├── mode.go │ │ │ ├── print.go │ │ │ ├── sanity.go │ │ │ ├── source.go │ │ │ ├── ssa.go │ │ │ ├── staticcheck.conf │ │ │ ├── util.go │ │ │ ├── wrappers.go │ │ │ └── write.go │ │ │ ├── lint │ │ │ ├── LICENSE │ │ │ ├── lint.go │ │ │ ├── lintdsl │ │ │ │ └── lintdsl.go │ │ │ ├── lintutil │ │ │ │ ├── format │ │ │ │ │ └── format.go │ │ │ │ ├── stats.go │ │ │ │ ├── stats_bsd.go │ │ │ │ ├── stats_posix.go │ │ │ │ └── util.go │ │ │ ├── runner.go │ │ │ └── stats.go │ │ │ ├── loader │ │ │ └── loader.go │ │ │ ├── pattern │ │ │ ├── convert.go │ │ │ ├── doc.go │ │ │ ├── fuzz.go │ │ │ ├── lexer.go │ │ │ ├── match.go │ │ │ ├── parser.go │ │ │ └── pattern.go │ │ │ ├── printf │ │ │ ├── fuzz.go │ │ │ └── printf.go │ │ │ ├── report │ │ │ └── report.go │ │ │ ├── simple │ │ │ ├── analysis.go │ │ │ ├── doc.go │ │ │ └── lint.go │ │ │ ├── staticcheck │ │ │ ├── analysis.go │ │ │ ├── buildtag.go │ │ │ ├── doc.go │ │ │ ├── lint.go │ │ │ ├── rules.go │ │ │ └── structtag.go │ │ │ ├── stylecheck │ │ │ ├── analysis.go │ │ │ ├── doc.go │ │ │ ├── lint.go │ │ │ └── names.go │ │ │ ├── unused │ │ │ ├── edge.go │ │ │ ├── edgekind_string.go │ │ │ ├── implements.go │ │ │ └── unused.go │ │ │ └── version │ │ │ ├── buildinfo.go │ │ │ ├── buildinfo111.go │ │ │ └── version.go │ └── modules.txt └── warm-up.jpg ├── styles ├── _normalize.scss ├── _variables.scss ├── components │ ├── camera.scss │ ├── failure.scss │ ├── home.scss │ ├── nextbar.scss │ ├── overlay.scss │ ├── result.scss │ └── video-outlet.scss ├── main.scss └── shared.scss ├── tsconfig.json ├── tslint.json ├── yarn-error.log └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/README.md -------------------------------------------------------------------------------- /bqml-stackoverflow/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/bqml-stackoverflow/.gitignore -------------------------------------------------------------------------------- /bqml-stackoverflow/.postcssrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/bqml-stackoverflow/.postcssrc -------------------------------------------------------------------------------- /bqml-stackoverflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/bqml-stackoverflow/README.md -------------------------------------------------------------------------------- /bqml-stackoverflow/assets/circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/bqml-stackoverflow/assets/circle.svg -------------------------------------------------------------------------------- /bqml-stackoverflow/assets/favicon-apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/bqml-stackoverflow/assets/favicon-apple.png -------------------------------------------------------------------------------- /bqml-stackoverflow/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/bqml-stackoverflow/assets/favicon.ico -------------------------------------------------------------------------------- /bqml-stackoverflow/assets/header-desktop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/bqml-stackoverflow/assets/header-desktop.svg -------------------------------------------------------------------------------- /bqml-stackoverflow/assets/header-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/bqml-stackoverflow/assets/header-mobile.svg -------------------------------------------------------------------------------- /bqml-stackoverflow/assets/nextbar/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/bqml-stackoverflow/assets/nextbar/copy.svg -------------------------------------------------------------------------------- /bqml-stackoverflow/assets/nextbar/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/bqml-stackoverflow/assets/nextbar/facebook.svg -------------------------------------------------------------------------------- /bqml-stackoverflow/assets/nextbar/gcloud-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/bqml-stackoverflow/assets/nextbar/gcloud-icon.svg -------------------------------------------------------------------------------- /bqml-stackoverflow/assets/nextbar/gcloud-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/bqml-stackoverflow/assets/nextbar/gcloud-text.svg -------------------------------------------------------------------------------- /bqml-stackoverflow/assets/nextbar/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/bqml-stackoverflow/assets/nextbar/linkedin.svg -------------------------------------------------------------------------------- /bqml-stackoverflow/assets/nextbar/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/bqml-stackoverflow/assets/nextbar/share.svg -------------------------------------------------------------------------------- /bqml-stackoverflow/assets/nextbar/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/bqml-stackoverflow/assets/nextbar/twitter.svg -------------------------------------------------------------------------------- /bqml-stackoverflow/assets/social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/bqml-stackoverflow/assets/social.png -------------------------------------------------------------------------------- /bqml-stackoverflow/cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/bqml-stackoverflow/cloudbuild.yaml -------------------------------------------------------------------------------- /bqml-stackoverflow/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/bqml-stackoverflow/index.html -------------------------------------------------------------------------------- /bqml-stackoverflow/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/bqml-stackoverflow/package.json -------------------------------------------------------------------------------- /bqml-stackoverflow/scripts/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/bqml-stackoverflow/scripts/app.tsx -------------------------------------------------------------------------------- /bqml-stackoverflow/scripts/components/home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/bqml-stackoverflow/scripts/components/home.tsx -------------------------------------------------------------------------------- /bqml-stackoverflow/scripts/components/insights.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/bqml-stackoverflow/scripts/components/insights.tsx -------------------------------------------------------------------------------- /bqml-stackoverflow/scripts/components/nextbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/bqml-stackoverflow/scripts/components/nextbar.tsx -------------------------------------------------------------------------------- /bqml-stackoverflow/scripts/components/share-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/bqml-stackoverflow/scripts/components/share-button.tsx -------------------------------------------------------------------------------- /bqml-stackoverflow/scripts/data/questions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/bqml-stackoverflow/scripts/data/questions.ts -------------------------------------------------------------------------------- /bqml-stackoverflow/scripts/data/tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/bqml-stackoverflow/scripts/data/tags.ts -------------------------------------------------------------------------------- /bqml-stackoverflow/scripts/font.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/bqml-stackoverflow/scripts/font.js -------------------------------------------------------------------------------- /bqml-stackoverflow/scripts/services/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/bqml-stackoverflow/scripts/services/api.ts -------------------------------------------------------------------------------- /bqml-stackoverflow/scripts/services/ga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/bqml-stackoverflow/scripts/services/ga.ts -------------------------------------------------------------------------------- /bqml-stackoverflow/scripts/services/share.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/bqml-stackoverflow/scripts/services/share.ts -------------------------------------------------------------------------------- /bqml-stackoverflow/scripts/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/bqml-stackoverflow/scripts/types.d.ts -------------------------------------------------------------------------------- /bqml-stackoverflow/server/.cloudignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bqml-stackoverflow/server/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/bqml-stackoverflow/server/app.yaml -------------------------------------------------------------------------------- /bqml-stackoverflow/server/db_user.yaml.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/bqml-stackoverflow/server/db_user.yaml.sample -------------------------------------------------------------------------------- /bqml-stackoverflow/server/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/bqml-stackoverflow/server/go.mod -------------------------------------------------------------------------------- /bqml-stackoverflow/server/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/bqml-stackoverflow/server/go.sum -------------------------------------------------------------------------------- /bqml-stackoverflow/server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/bqml-stackoverflow/server/main.go -------------------------------------------------------------------------------- /bqml-stackoverflow/styles/components/home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/bqml-stackoverflow/styles/components/home.scss -------------------------------------------------------------------------------- /bqml-stackoverflow/styles/components/insights.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/bqml-stackoverflow/styles/components/insights.scss -------------------------------------------------------------------------------- /bqml-stackoverflow/styles/components/nextbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/bqml-stackoverflow/styles/components/nextbar.scss -------------------------------------------------------------------------------- /bqml-stackoverflow/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/bqml-stackoverflow/styles/main.scss -------------------------------------------------------------------------------- /bqml-stackoverflow/styles/reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/bqml-stackoverflow/styles/reset.scss -------------------------------------------------------------------------------- /bqml-stackoverflow/styles/shared.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/bqml-stackoverflow/styles/shared.scss -------------------------------------------------------------------------------- /bqml-stackoverflow/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/bqml-stackoverflow/tsconfig.json -------------------------------------------------------------------------------- /bqml-stackoverflow/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/bqml-stackoverflow/yarn.lock -------------------------------------------------------------------------------- /network-postcard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/.gitignore -------------------------------------------------------------------------------- /network-postcard/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/README.MD -------------------------------------------------------------------------------- /network-postcard/Sample.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/Sample.properties -------------------------------------------------------------------------------- /network-postcard/assets/img/asia-east1-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/assets/img/asia-east1-a.png -------------------------------------------------------------------------------- /network-postcard/assets/img/asia-northeast1-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/assets/img/asia-northeast1-a.png -------------------------------------------------------------------------------- /network-postcard/assets/img/australia-southeast1-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/assets/img/australia-southeast1-a.png -------------------------------------------------------------------------------- /network-postcard/assets/img/europe-west2-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/assets/img/europe-west2-b.png -------------------------------------------------------------------------------- /network-postcard/assets/img/europe-west3-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/assets/img/europe-west3-a.png -------------------------------------------------------------------------------- /network-postcard/assets/img/matte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/assets/img/matte.png -------------------------------------------------------------------------------- /network-postcard/assets/img/postcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/assets/img/postcard.png -------------------------------------------------------------------------------- /network-postcard/assets/img/southamerica-east1-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/assets/img/southamerica-east1-a.png -------------------------------------------------------------------------------- /network-postcard/assets/img/us-central1-f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/assets/img/us-central1-f.png -------------------------------------------------------------------------------- /network-postcard/assets/img/us-east4-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/assets/img/us-east4-a.png -------------------------------------------------------------------------------- /network-postcard/assets/img/us-west1-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/assets/img/us-west1-a.png -------------------------------------------------------------------------------- /network-postcard/assets/png/asia-east1-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/assets/png/asia-east1-a.png -------------------------------------------------------------------------------- /network-postcard/assets/png/asia-northeast1-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/assets/png/asia-northeast1-a.png -------------------------------------------------------------------------------- /network-postcard/assets/png/australia-southeast1-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/assets/png/australia-southeast1-a.png -------------------------------------------------------------------------------- /network-postcard/assets/png/europe-west2-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/assets/png/europe-west2-b.png -------------------------------------------------------------------------------- /network-postcard/assets/png/europe-west3-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/assets/png/europe-west3-a.png -------------------------------------------------------------------------------- /network-postcard/assets/png/postcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/assets/png/postcard.png -------------------------------------------------------------------------------- /network-postcard/assets/png/southamerica-east1-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/assets/png/southamerica-east1-a.png -------------------------------------------------------------------------------- /network-postcard/assets/png/us-central1-f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/assets/png/us-central1-f.png -------------------------------------------------------------------------------- /network-postcard/assets/png/us-east4-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/assets/png/us-east4-a.png -------------------------------------------------------------------------------- /network-postcard/assets/png/us-west1-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/assets/png/us-west1-a.png -------------------------------------------------------------------------------- /network-postcard/assets/psd/matte.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/assets/psd/matte.psd -------------------------------------------------------------------------------- /network-postcard/assets/sparks/asia-east1-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/assets/sparks/asia-east1-a.png -------------------------------------------------------------------------------- /network-postcard/assets/sparks/asia-northeast1-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/assets/sparks/asia-northeast1-a.png -------------------------------------------------------------------------------- /network-postcard/assets/sparks/australia-southeast1-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/assets/sparks/australia-southeast1-a.png -------------------------------------------------------------------------------- /network-postcard/assets/sparks/europe-west2-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/assets/sparks/europe-west2-b.png -------------------------------------------------------------------------------- /network-postcard/assets/sparks/europe-west3-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/assets/sparks/europe-west3-a.png -------------------------------------------------------------------------------- /network-postcard/assets/sparks/southamerica-east1-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/assets/sparks/southamerica-east1-a.png -------------------------------------------------------------------------------- /network-postcard/assets/sparks/us-central1-f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/assets/sparks/us-central1-f.png -------------------------------------------------------------------------------- /network-postcard/assets/sparks/us-east4-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/assets/sparks/us-east4-a.png -------------------------------------------------------------------------------- /network-postcard/assets/sparks/us-west1-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/assets/sparks/us-west1-a.png -------------------------------------------------------------------------------- /network-postcard/assets/stock/Flag_of_New_Taipei_City.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/assets/stock/Flag_of_New_Taipei_City.svg -------------------------------------------------------------------------------- /network-postcard/assets/stock/Hallmark_Crown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/assets/stock/Hallmark_Crown.svg -------------------------------------------------------------------------------- /network-postcard/assets/stock/New_Taipei_City_seal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/assets/stock/New_Taipei_City_seal.svg -------------------------------------------------------------------------------- /network-postcard/assets/stock/aircraft-take-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/assets/stock/aircraft-take-off.svg -------------------------------------------------------------------------------- /network-postcard/assets/stock/australia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/assets/stock/australia.svg -------------------------------------------------------------------------------- /network-postcard/assets/stock/iowa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/assets/stock/iowa.svg -------------------------------------------------------------------------------- /network-postcard/assets/stock/oregon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/assets/stock/oregon.svg -------------------------------------------------------------------------------- /network-postcard/assets/stock/postcard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/assets/stock/postcard.jpg -------------------------------------------------------------------------------- /network-postcard/assets/stock/virginia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/assets/stock/virginia.svg -------------------------------------------------------------------------------- /network-postcard/cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/cloudbuild.yaml -------------------------------------------------------------------------------- /network-postcard/frontend/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/.editorconfig -------------------------------------------------------------------------------- /network-postcard/frontend/.gitignore: -------------------------------------------------------------------------------- 1 | .cache 2 | dist 3 | node_modules 4 | img 5 | -------------------------------------------------------------------------------- /network-postcard/frontend/.postcssrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/.postcssrc -------------------------------------------------------------------------------- /network-postcard/frontend/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/app.yaml -------------------------------------------------------------------------------- /network-postcard/frontend/assets/favicon-apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/assets/favicon-apple.png -------------------------------------------------------------------------------- /network-postcard/frontend/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/assets/favicon.ico -------------------------------------------------------------------------------- /network-postcard/frontend/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/assets/logo.svg -------------------------------------------------------------------------------- /network-postcard/frontend/assets/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/assets/map.svg -------------------------------------------------------------------------------- /network-postcard/frontend/assets/nextbar/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/assets/nextbar/copy.svg -------------------------------------------------------------------------------- /network-postcard/frontend/assets/nextbar/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/assets/nextbar/facebook.svg -------------------------------------------------------------------------------- /network-postcard/frontend/assets/nextbar/gcloud-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/assets/nextbar/gcloud-icon.svg -------------------------------------------------------------------------------- /network-postcard/frontend/assets/nextbar/gcloud-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/assets/nextbar/gcloud-text.svg -------------------------------------------------------------------------------- /network-postcard/frontend/assets/nextbar/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/assets/nextbar/linkedin.svg -------------------------------------------------------------------------------- /network-postcard/frontend/assets/nextbar/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/assets/nextbar/share.svg -------------------------------------------------------------------------------- /network-postcard/frontend/assets/nextbar/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/assets/nextbar/twitter.svg -------------------------------------------------------------------------------- /network-postcard/frontend/assets/pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/assets/pin.svg -------------------------------------------------------------------------------- /network-postcard/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/index.html -------------------------------------------------------------------------------- /network-postcard/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/package.json -------------------------------------------------------------------------------- /network-postcard/frontend/scripts/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/scripts/app.tsx -------------------------------------------------------------------------------- /network-postcard/frontend/scripts/components/camera.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/scripts/components/camera.tsx -------------------------------------------------------------------------------- /network-postcard/frontend/scripts/components/home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/scripts/components/home.tsx -------------------------------------------------------------------------------- /network-postcard/frontend/scripts/components/journey.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/scripts/components/journey.tsx -------------------------------------------------------------------------------- /network-postcard/frontend/scripts/components/map.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/scripts/components/map.tsx -------------------------------------------------------------------------------- /network-postcard/frontend/scripts/components/nextbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/scripts/components/nextbar.tsx -------------------------------------------------------------------------------- /network-postcard/frontend/scripts/components/result.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/scripts/components/result.tsx -------------------------------------------------------------------------------- /network-postcard/frontend/scripts/components/share-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/scripts/components/share-button.tsx -------------------------------------------------------------------------------- /network-postcard/frontend/scripts/components/video-outlet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/scripts/components/video-outlet.tsx -------------------------------------------------------------------------------- /network-postcard/frontend/scripts/config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/scripts/config.tsx -------------------------------------------------------------------------------- /network-postcard/frontend/scripts/font.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/scripts/font.js -------------------------------------------------------------------------------- /network-postcard/frontend/scripts/import.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/scripts/import.d.ts -------------------------------------------------------------------------------- /network-postcard/frontend/scripts/services/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/scripts/services/image.ts -------------------------------------------------------------------------------- /network-postcard/frontend/scripts/services/network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/scripts/services/network.ts -------------------------------------------------------------------------------- /network-postcard/frontend/scripts/services/share.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/scripts/services/share.ts -------------------------------------------------------------------------------- /network-postcard/frontend/scripts/services/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/scripts/services/store.ts -------------------------------------------------------------------------------- /network-postcard/frontend/scripts/services/webcam.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/scripts/services/webcam.ts -------------------------------------------------------------------------------- /network-postcard/frontend/styles/components/camera.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/styles/components/camera.css -------------------------------------------------------------------------------- /network-postcard/frontend/styles/components/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/styles/components/home.css -------------------------------------------------------------------------------- /network-postcard/frontend/styles/components/journey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/styles/components/journey.css -------------------------------------------------------------------------------- /network-postcard/frontend/styles/components/map.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/styles/components/map.css -------------------------------------------------------------------------------- /network-postcard/frontend/styles/components/nextbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/styles/components/nextbar.css -------------------------------------------------------------------------------- /network-postcard/frontend/styles/components/nextbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/styles/components/nextbar.scss -------------------------------------------------------------------------------- /network-postcard/frontend/styles/components/result.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/styles/components/result.css -------------------------------------------------------------------------------- /network-postcard/frontend/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/styles/main.css -------------------------------------------------------------------------------- /network-postcard/frontend/styles/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/styles/reset.css -------------------------------------------------------------------------------- /network-postcard/frontend/styles/shared.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/styles/shared.css -------------------------------------------------------------------------------- /network-postcard/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/tsconfig.json -------------------------------------------------------------------------------- /network-postcard/frontend/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/tslint.json -------------------------------------------------------------------------------- /network-postcard/frontend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/frontend/yarn.lock -------------------------------------------------------------------------------- /network-postcard/infrastructure/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/infrastructure/Makefile -------------------------------------------------------------------------------- /network-postcard/infrastructure/gcloud/gcloud.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/infrastructure/gcloud/gcloud.go -------------------------------------------------------------------------------- /network-postcard/infrastructure/gcprelay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/infrastructure/gcprelay.sh -------------------------------------------------------------------------------- /network-postcard/infrastructure/out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/infrastructure/out.png -------------------------------------------------------------------------------- /network-postcard/infrastructure/persist/persist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/infrastructure/persist/persist.go -------------------------------------------------------------------------------- /network-postcard/infrastructure/route/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/infrastructure/route/output.png -------------------------------------------------------------------------------- /network-postcard/infrastructure/route/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/infrastructure/route/route.go -------------------------------------------------------------------------------- /network-postcard/infrastructure/route/route_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/infrastructure/route/route_test.go -------------------------------------------------------------------------------- /network-postcard/infrastructure/scripts/.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/infrastructure/scripts/.list -------------------------------------------------------------------------------- /network-postcard/infrastructure/scripts/create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/infrastructure/scripts/create.sh -------------------------------------------------------------------------------- /network-postcard/infrastructure/scripts/delete.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/infrastructure/scripts/delete.sh -------------------------------------------------------------------------------- /network-postcard/infrastructure/scripts/gcprelay.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/infrastructure/scripts/gcprelay.conf -------------------------------------------------------------------------------- /network-postcard/infrastructure/scripts/install_cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/infrastructure/scripts/install_cert.sh -------------------------------------------------------------------------------- /network-postcard/infrastructure/scripts/install_stackdriver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/infrastructure/scripts/install_stackdriver.sh -------------------------------------------------------------------------------- /network-postcard/infrastructure/scripts/restart_servers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/infrastructure/scripts/restart_servers.sh -------------------------------------------------------------------------------- /network-postcard/infrastructure/scripts/restart_service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/infrastructure/scripts/restart_service.sh -------------------------------------------------------------------------------- /network-postcard/infrastructure/scripts/update_images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/infrastructure/scripts/update_images.sh -------------------------------------------------------------------------------- /network-postcard/infrastructure/scripts/update_service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/infrastructure/scripts/update_service.sh -------------------------------------------------------------------------------- /network-postcard/infrastructure/server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/infrastructure/server/main.go -------------------------------------------------------------------------------- /network-postcard/infrastructure/server/main_test.go: -------------------------------------------------------------------------------- 1 | package main 2 | -------------------------------------------------------------------------------- /network-postcard/screenshots/postcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/screenshots/postcard.png -------------------------------------------------------------------------------- /network-postcard/screenshots/postcard_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/network-postcard/screenshots/postcard_done.png -------------------------------------------------------------------------------- /pi-day/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/.editorconfig -------------------------------------------------------------------------------- /pi-day/.gitignore: -------------------------------------------------------------------------------- 1 | .cache 2 | dist 3 | node_modules 4 | yarn-error.log 5 | server/vendor 6 | -------------------------------------------------------------------------------- /pi-day/.postcssrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/.postcssrc -------------------------------------------------------------------------------- /pi-day/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/README.md -------------------------------------------------------------------------------- /pi-day/assets/favicon-apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/assets/favicon-apple.png -------------------------------------------------------------------------------- /pi-day/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/assets/favicon.ico -------------------------------------------------------------------------------- /pi-day/assets/header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/assets/header.svg -------------------------------------------------------------------------------- /pi-day/assets/home-desktop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/assets/home-desktop.svg -------------------------------------------------------------------------------- /pi-day/assets/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/assets/home.svg -------------------------------------------------------------------------------- /pi-day/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/assets/logo.svg -------------------------------------------------------------------------------- /pi-day/assets/nextbar/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/assets/nextbar/copy.svg -------------------------------------------------------------------------------- /pi-day/assets/nextbar/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/assets/nextbar/facebook.svg -------------------------------------------------------------------------------- /pi-day/assets/nextbar/gcloud-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/assets/nextbar/gcloud-icon.svg -------------------------------------------------------------------------------- /pi-day/assets/nextbar/gcloud-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/assets/nextbar/gcloud-text.svg -------------------------------------------------------------------------------- /pi-day/assets/nextbar/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/assets/nextbar/linkedin.svg -------------------------------------------------------------------------------- /pi-day/assets/nextbar/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/assets/nextbar/share.svg -------------------------------------------------------------------------------- /pi-day/assets/nextbar/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/assets/nextbar/twitter.svg -------------------------------------------------------------------------------- /pi-day/cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/cloudbuild.yaml -------------------------------------------------------------------------------- /pi-day/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/index.html -------------------------------------------------------------------------------- /pi-day/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/package.json -------------------------------------------------------------------------------- /pi-day/scripts/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/scripts/all.js -------------------------------------------------------------------------------- /pi-day/scripts/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/scripts/app.tsx -------------------------------------------------------------------------------- /pi-day/scripts/components/chip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/scripts/components/chip.tsx -------------------------------------------------------------------------------- /pi-day/scripts/components/generate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/scripts/components/generate.tsx -------------------------------------------------------------------------------- /pi-day/scripts/components/home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/scripts/components/home.tsx -------------------------------------------------------------------------------- /pi-day/scripts/components/nextbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/scripts/components/nextbar.tsx -------------------------------------------------------------------------------- /pi-day/scripts/components/result.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/scripts/components/result.tsx -------------------------------------------------------------------------------- /pi-day/scripts/components/share-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/scripts/components/share-button.tsx -------------------------------------------------------------------------------- /pi-day/scripts/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/scripts/declarations.d.ts -------------------------------------------------------------------------------- /pi-day/scripts/render/chip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/scripts/render/chip.ts -------------------------------------------------------------------------------- /pi-day/scripts/render/composition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/scripts/render/composition.ts -------------------------------------------------------------------------------- /pi-day/scripts/render/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/scripts/render/config.ts -------------------------------------------------------------------------------- /pi-day/scripts/render/glyphs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/scripts/render/glyphs.ts -------------------------------------------------------------------------------- /pi-day/scripts/render/grid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/scripts/render/grid.ts -------------------------------------------------------------------------------- /pi-day/scripts/services/ga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/scripts/services/ga.ts -------------------------------------------------------------------------------- /pi-day/scripts/services/pi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/scripts/services/pi.ts -------------------------------------------------------------------------------- /pi-day/scripts/services/share.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/scripts/services/share.ts -------------------------------------------------------------------------------- /pi-day/scripts/services/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/scripts/services/utils.ts -------------------------------------------------------------------------------- /pi-day/server/.cloudignore: -------------------------------------------------------------------------------- 1 | .git 2 | .gitignore 3 | *.map -------------------------------------------------------------------------------- /pi-day/server/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/server/app.yaml -------------------------------------------------------------------------------- /pi-day/server/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/server/go.mod -------------------------------------------------------------------------------- /pi-day/server/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/server/go.sum -------------------------------------------------------------------------------- /pi-day/server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/server/main.go -------------------------------------------------------------------------------- /pi-day/styles/brands.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/styles/brands.css -------------------------------------------------------------------------------- /pi-day/styles/fontawesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/styles/fontawesome.css -------------------------------------------------------------------------------- /pi-day/styles/generate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/styles/generate.css -------------------------------------------------------------------------------- /pi-day/styles/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/styles/home.css -------------------------------------------------------------------------------- /pi-day/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/styles/main.css -------------------------------------------------------------------------------- /pi-day/styles/nextbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/styles/nextbar.css -------------------------------------------------------------------------------- /pi-day/styles/nextbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/styles/nextbar.scss -------------------------------------------------------------------------------- /pi-day/styles/result.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/styles/result.css -------------------------------------------------------------------------------- /pi-day/styles/shared.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/styles/shared.css -------------------------------------------------------------------------------- /pi-day/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/tsconfig.json -------------------------------------------------------------------------------- /pi-day/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pi-day/yarn.lock -------------------------------------------------------------------------------- /pizza-authenticator/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/.editorconfig -------------------------------------------------------------------------------- /pizza-authenticator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/.gitignore -------------------------------------------------------------------------------- /pizza-authenticator/.postcssrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/.postcssrc -------------------------------------------------------------------------------- /pizza-authenticator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/Makefile -------------------------------------------------------------------------------- /pizza-authenticator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/README.md -------------------------------------------------------------------------------- /pizza-authenticator/assets/analysing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/assets/analysing.gif -------------------------------------------------------------------------------- /pizza-authenticator/assets/chewing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/assets/chewing.svg -------------------------------------------------------------------------------- /pizza-authenticator/assets/dislike.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/assets/dislike.gif -------------------------------------------------------------------------------- /pizza-authenticator/assets/favicon-apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/assets/favicon-apple.png -------------------------------------------------------------------------------- /pizza-authenticator/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/assets/favicon.ico -------------------------------------------------------------------------------- /pizza-authenticator/assets/instructions.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/assets/instructions.gif -------------------------------------------------------------------------------- /pizza-authenticator/assets/lower-mouth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/assets/lower-mouth.svg -------------------------------------------------------------------------------- /pizza-authenticator/assets/nextbar/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/assets/nextbar/copy.svg -------------------------------------------------------------------------------- /pizza-authenticator/assets/nextbar/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/assets/nextbar/facebook.svg -------------------------------------------------------------------------------- /pizza-authenticator/assets/nextbar/gcloud-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/assets/nextbar/gcloud-icon.svg -------------------------------------------------------------------------------- /pizza-authenticator/assets/nextbar/gcloud-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/assets/nextbar/gcloud-text.svg -------------------------------------------------------------------------------- /pizza-authenticator/assets/nextbar/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/assets/nextbar/linkedin.svg -------------------------------------------------------------------------------- /pizza-authenticator/assets/nextbar/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/assets/nextbar/share.svg -------------------------------------------------------------------------------- /pizza-authenticator/assets/nextbar/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/assets/nextbar/twitter.svg -------------------------------------------------------------------------------- /pizza-authenticator/assets/pizza-chicago.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/assets/pizza-chicago.svg -------------------------------------------------------------------------------- /pizza-authenticator/assets/pizza-newyork.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/assets/pizza-newyork.svg -------------------------------------------------------------------------------- /pizza-authenticator/assets/pizza-other.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/assets/pizza-other.svg -------------------------------------------------------------------------------- /pizza-authenticator/assets/upper-mouth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/assets/upper-mouth.svg -------------------------------------------------------------------------------- /pizza-authenticator/assets/yuck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/assets/yuck.svg -------------------------------------------------------------------------------- /pizza-authenticator/cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/cloudbuild.yaml -------------------------------------------------------------------------------- /pizza-authenticator/collection/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/collection/README.MD -------------------------------------------------------------------------------- /pizza-authenticator/collection/shapescraper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/collection/shapescraper/README.md -------------------------------------------------------------------------------- /pizza-authenticator/collection/shapescraper/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/collection/shapescraper/main.go -------------------------------------------------------------------------------- /pizza-authenticator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/index.html -------------------------------------------------------------------------------- /pizza-authenticator/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/package-lock.json -------------------------------------------------------------------------------- /pizza-authenticator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/package.json -------------------------------------------------------------------------------- /pizza-authenticator/scripts/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/scripts/app.tsx -------------------------------------------------------------------------------- /pizza-authenticator/scripts/components/button-camera.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/scripts/components/button-camera.tsx -------------------------------------------------------------------------------- /pizza-authenticator/scripts/components/button-upload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/scripts/components/button-upload.tsx -------------------------------------------------------------------------------- /pizza-authenticator/scripts/components/camera.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/scripts/components/camera.tsx -------------------------------------------------------------------------------- /pizza-authenticator/scripts/components/failure.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/scripts/components/failure.tsx -------------------------------------------------------------------------------- /pizza-authenticator/scripts/components/home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/scripts/components/home.tsx -------------------------------------------------------------------------------- /pizza-authenticator/scripts/components/nextbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/scripts/components/nextbar.tsx -------------------------------------------------------------------------------- /pizza-authenticator/scripts/components/overlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/scripts/components/overlay.tsx -------------------------------------------------------------------------------- /pizza-authenticator/scripts/components/result-valid-pizza.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/scripts/components/result-valid-pizza.tsx -------------------------------------------------------------------------------- /pizza-authenticator/scripts/components/result.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/scripts/components/result.tsx -------------------------------------------------------------------------------- /pizza-authenticator/scripts/components/share-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/scripts/components/share-button.tsx -------------------------------------------------------------------------------- /pizza-authenticator/scripts/components/share.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/scripts/components/share.tsx -------------------------------------------------------------------------------- /pizza-authenticator/scripts/components/video-outlet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/scripts/components/video-outlet.tsx -------------------------------------------------------------------------------- /pizza-authenticator/scripts/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/scripts/config.ts -------------------------------------------------------------------------------- /pizza-authenticator/scripts/font.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/scripts/font.js -------------------------------------------------------------------------------- /pizza-authenticator/scripts/import.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/scripts/import.d.ts -------------------------------------------------------------------------------- /pizza-authenticator/scripts/services/evaluate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/scripts/services/evaluate.ts -------------------------------------------------------------------------------- /pizza-authenticator/scripts/services/ga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/scripts/services/ga.ts -------------------------------------------------------------------------------- /pizza-authenticator/scripts/services/http.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/scripts/services/http.ts -------------------------------------------------------------------------------- /pizza-authenticator/scripts/services/share.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/scripts/services/share.ts -------------------------------------------------------------------------------- /pizza-authenticator/scripts/services/webcam.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/scripts/services/webcam.ts -------------------------------------------------------------------------------- /pizza-authenticator/server/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/.gcloudignore -------------------------------------------------------------------------------- /pizza-authenticator/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/README.md -------------------------------------------------------------------------------- /pizza-authenticator/server/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/app.yaml -------------------------------------------------------------------------------- /pizza-authenticator/server/app_env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/app_env.yaml -------------------------------------------------------------------------------- /pizza-authenticator/server/app_env_sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/app_env_sample.yaml -------------------------------------------------------------------------------- /pizza-authenticator/server/cron.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/cron.yaml -------------------------------------------------------------------------------- /pizza-authenticator/server/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/go.mod -------------------------------------------------------------------------------- /pizza-authenticator/server/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/go.sum -------------------------------------------------------------------------------- /pizza-authenticator/server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/main.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/cloud.google.com/go/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/cloud.google.com/go/.gitignore -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/cloud.google.com/go/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/cloud.google.com/go/CHANGES.md -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/cloud.google.com/go/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/cloud.google.com/go/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/cloud.google.com/go/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/cloud.google.com/go/CONTRIBUTING.md -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/cloud.google.com/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/cloud.google.com/go/LICENSE -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/cloud.google.com/go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/cloud.google.com/go/README.md -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/cloud.google.com/go/RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/cloud.google.com/go/RELEASING.md -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/cloud.google.com/go/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/cloud.google.com/go/doc.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/cloud.google.com/go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/cloud.google.com/go/go.mod -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/cloud.google.com/go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/cloud.google.com/go/go.sum -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/cloud.google.com/go/iam/iam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/cloud.google.com/go/iam/iam.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/cloud.google.com/go/internal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/cloud.google.com/go/internal/README.md -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/cloud.google.com/go/internal/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/cloud.google.com/go/internal/retry.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/cloud.google.com/go/storage/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/cloud.google.com/go/storage/CHANGES.md -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/cloud.google.com/go/storage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/cloud.google.com/go/storage/LICENSE -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/cloud.google.com/go/storage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/cloud.google.com/go/storage/README.md -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/cloud.google.com/go/storage/acl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/cloud.google.com/go/storage/acl.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/cloud.google.com/go/storage/bucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/cloud.google.com/go/storage/bucket.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/cloud.google.com/go/storage/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/cloud.google.com/go/storage/copy.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/cloud.google.com/go/storage/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/cloud.google.com/go/storage/doc.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/cloud.google.com/go/storage/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/cloud.google.com/go/storage/go.mod -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/cloud.google.com/go/storage/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/cloud.google.com/go/storage/go.sum -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/cloud.google.com/go/storage/go110.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/cloud.google.com/go/storage/go110.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/cloud.google.com/go/storage/hmac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/cloud.google.com/go/storage/hmac.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/cloud.google.com/go/storage/iam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/cloud.google.com/go/storage/iam.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/cloud.google.com/go/storage/invoke.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/cloud.google.com/go/storage/invoke.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/cloud.google.com/go/storage/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/cloud.google.com/go/storage/reader.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/cloud.google.com/go/storage/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/cloud.google.com/go/storage/storage.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/cloud.google.com/go/storage/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/cloud.google.com/go/storage/writer.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/cloud.google.com/go/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/cloud.google.com/go/tools.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/github.com/BurntSushi/toml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/github.com/BurntSushi/toml/.gitignore -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/github.com/BurntSushi/toml/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/github.com/BurntSushi/toml/.travis.yml -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/github.com/BurntSushi/toml/COMPATIBLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/github.com/BurntSushi/toml/COMPATIBLE -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/github.com/BurntSushi/toml/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/github.com/BurntSushi/toml/COPYING -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/github.com/BurntSushi/toml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/github.com/BurntSushi/toml/Makefile -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/github.com/BurntSushi/toml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/github.com/BurntSushi/toml/README.md -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/github.com/BurntSushi/toml/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/github.com/BurntSushi/toml/decode.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/github.com/BurntSushi/toml/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/github.com/BurntSushi/toml/doc.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/github.com/BurntSushi/toml/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/github.com/BurntSushi/toml/encode.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/github.com/BurntSushi/toml/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/github.com/BurntSushi/toml/lex.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/github.com/BurntSushi/toml/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/github.com/BurntSushi/toml/parse.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/github.com/BurntSushi/toml/session.vim: -------------------------------------------------------------------------------- 1 | au BufWritePost *.go silent!make tags > /dev/null 2>&1 2 | -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/github.com/golang/groupcache/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/github.com/golang/groupcache/LICENSE -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/github.com/golang/groupcache/lru/lru.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/github.com/golang/groupcache/lru/lru.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/github.com/golang/protobuf/AUTHORS -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/github.com/golang/protobuf/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/github.com/golang/protobuf/CONTRIBUTORS -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/github.com/googleapis/gax-go/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/github.com/googleapis/gax-go/v2/LICENSE -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/github.com/googleapis/gax-go/v2/gax.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/github.com/googleapis/gax-go/v2/gax.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/github.com/googleapis/gax-go/v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/github.com/googleapis/gax-go/v2/go.mod -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/github.com/googleapis/gax-go/v2/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/github.com/googleapis/gax-go/v2/go.sum -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/github.com/jstemmer/go-junit-report/.gitignore: -------------------------------------------------------------------------------- 1 | go-junit-report 2 | -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/github.com/jstemmer/go-junit-report/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/jstemmer/go-junit-report 2 | 3 | go 1.2 4 | -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/github.com/nfnt/resize/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/github.com/nfnt/resize/.travis.yml -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/github.com/nfnt/resize/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/github.com/nfnt/resize/LICENSE -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/github.com/nfnt/resize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/github.com/nfnt/resize/README.md -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/github.com/nfnt/resize/converter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/github.com/nfnt/resize/converter.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/github.com/nfnt/resize/filters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/github.com/nfnt/resize/filters.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/github.com/nfnt/resize/nearest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/github.com/nfnt/resize/nearest.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/github.com/nfnt/resize/resize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/github.com/nfnt/resize/resize.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/github.com/nfnt/resize/thumbnail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/github.com/nfnt/resize/thumbnail.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/github.com/nfnt/resize/ycc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/github.com/nfnt/resize/ycc.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/github.com/satori/go.uuid/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/github.com/satori/go.uuid/.travis.yml -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/github.com/satori/go.uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/github.com/satori/go.uuid/LICENSE -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/github.com/satori/go.uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/github.com/satori/go.uuid/README.md -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/github.com/satori/go.uuid/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/github.com/satori/go.uuid/codec.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/github.com/satori/go.uuid/generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/github.com/satori/go.uuid/generator.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/github.com/satori/go.uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/github.com/satori/go.uuid/sql.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/github.com/satori/go.uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/github.com/satori/go.uuid/uuid.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/.gitignore -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/.travis.yml -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/CONTRIBUTING.md -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/LICENSE -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/Makefile -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/README.md -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/appveyor.yml -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/go.mod -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/go.sum -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/internal/internal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/internal/internal.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/internal/sanitize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/internal/sanitize.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/opencensus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/opencensus.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/plugin/ochttp/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/plugin/ochttp/doc.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/plugin/ochttp/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/plugin/ochttp/route.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/plugin/ochttp/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/plugin/ochttp/stats.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/plugin/ochttp/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/plugin/ochttp/trace.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/resource/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/resource/resource.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/stats/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/stats/doc.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/stats/measure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/stats/measure.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/stats/measure_int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/stats/measure_int64.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/stats/record.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/stats/record.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/stats/units.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/stats/units.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/stats/view/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/stats/view/doc.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/stats/view/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/stats/view/export.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/stats/view/view.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/stats/view/view.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/stats/view/worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/stats/view/worker.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/tag/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/tag/context.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/tag/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/tag/doc.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/tag/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/tag/key.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/tag/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/tag/map.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/tag/map_codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/tag/map_codec.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/tag/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/tag/metadata.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/tag/profile_19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/tag/profile_19.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/tag/profile_not19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/tag/profile_not19.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/tag/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/tag/validate.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/trace/basetypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/trace/basetypes.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/trace/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/trace/config.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/trace/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/trace/doc.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/trace/evictedqueue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/trace/evictedqueue.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/trace/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/trace/export.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/trace/lrumap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/trace/lrumap.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/trace/sampling.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/trace/sampling.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/trace/spanbucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/trace/spanbucket.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/trace/spanstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/trace/spanstore.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/trace/status_codes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/trace/status_codes.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/trace/trace.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/trace/trace_go11.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/trace/trace_go11.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/go.opencensus.io/trace/trace_nongo11.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/go.opencensus.io/trace/trace_nongo11.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/lint/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/lint/.travis.yml -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/lint/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/lint/CONTRIBUTING.md -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/lint/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/lint/LICENSE -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/lint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/lint/README.md -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/lint/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/lint/go.mod -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/lint/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/lint/go.sum -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/lint/golint/golint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/lint/golint/golint.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/lint/golint/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/lint/golint/import.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/lint/lint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/lint/lint.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/mod/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/mod/LICENSE -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/mod/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/mod/PATENTS -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/mod/module/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/mod/module/module.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/mod/semver/semver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/mod/semver/semver.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/net/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/net/context/context.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/net/context/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/net/context/go17.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/net/context/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/net/context/go19.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/net/context/pre_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/net/context/pre_go17.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/net/context/pre_go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/net/context/pre_go19.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/net/http/httpguts/guts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/net/http/httpguts/guts.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/net/http2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/net/http2/Dockerfile -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/net/http2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/net/http2/README -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/net/http2/ciphers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/net/http2/ciphers.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/net/http2/databuffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/net/http2/databuffer.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/net/http2/go111.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/net/http2/go111.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/net/http2/gotrack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/net/http2/gotrack.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/net/http2/headermap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/net/http2/headermap.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/net/http2/hpack/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/net/http2/hpack/encode.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/net/http2/hpack/hpack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/net/http2/hpack/hpack.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/net/http2/hpack/huffman.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/net/http2/hpack/huffman.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/net/http2/hpack/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/net/http2/hpack/tables.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/net/http2/not_go111.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/net/http2/not_go111.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/net/http2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/net/http2/transport.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/net/http2/writesched.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/net/http2/writesched.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/net/idna/idna10.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/net/idna/idna10.0.0.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/net/idna/idna9.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/net/idna/idna9.0.0.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/net/idna/punycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/net/idna/punycode.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/net/idna/tables10.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/net/idna/tables10.0.0.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/net/idna/tables11.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/net/idna/tables11.0.0.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/net/idna/tables12.00.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/net/idna/tables12.00.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/net/idna/tables9.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/net/idna/tables9.0.0.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/net/trace/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/net/trace/events.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/net/trace/histogram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/net/trace/histogram.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/oauth2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/oauth2/.travis.yml -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/oauth2/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/oauth2/AUTHORS -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/oauth2/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/oauth2/CONTRIBUTING.md -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/oauth2/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/oauth2/CONTRIBUTORS -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/oauth2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/oauth2/LICENSE -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/oauth2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/oauth2/README.md -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/oauth2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/oauth2/go.mod -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/oauth2/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/oauth2/go.sum -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/oauth2/google/appengine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/oauth2/google/appengine.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/oauth2/google/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/oauth2/google/default.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/oauth2/google/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/oauth2/google/doc.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/oauth2/google/google.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/oauth2/google/google.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/oauth2/google/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/oauth2/google/jwt.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/oauth2/google/sdk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/oauth2/google/sdk.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/oauth2/internal/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/oauth2/internal/doc.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/oauth2/internal/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/oauth2/internal/oauth2.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/oauth2/internal/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/oauth2/internal/token.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/oauth2/jws/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/oauth2/jws/jws.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/oauth2/jwt/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/oauth2/jwt/jwt.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/oauth2/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/oauth2/oauth2.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/oauth2/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/oauth2/token.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/oauth2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/oauth2/transport.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/affinity_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/affinity_linux.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/aliases.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/asm_aix_ppc64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/asm_aix_ppc64.s -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/asm_darwin_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/asm_darwin_386.s -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/asm_darwin_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/asm_darwin_arm.s -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/asm_freebsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/asm_freebsd_386.s -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/asm_freebsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/asm_freebsd_arm.s -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/asm_linux_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/asm_linux_386.s -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/asm_linux_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/asm_linux_amd64.s -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/asm_linux_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/asm_linux_arm.s -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/asm_linux_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/asm_linux_arm64.s -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/asm_linux_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/asm_linux_s390x.s -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/asm_netbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/asm_netbsd_386.s -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/asm_netbsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/asm_netbsd_arm.s -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/asm_openbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/asm_openbsd_386.s -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/asm_openbsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/asm_openbsd_arm.s -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/cap_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/cap_freebsd.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/dev_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/dev_aix_ppc.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/dev_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/dev_aix_ppc64.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/dev_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/dev_darwin.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/dev_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/dev_dragonfly.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/dev_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/dev_freebsd.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/dev_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/dev_linux.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/dev_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/dev_netbsd.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/dev_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/dev_openbsd.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/endian_big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/endian_big.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/endian_little.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/endian_little.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/fcntl_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/fcntl_darwin.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/fdset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/fdset.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/ioctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/ioctl.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/pagesize_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/pagesize_unix.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/pledge_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/pledge_openbsd.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/sockcmsg_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/sockcmsg_linux.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/sockcmsg_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/sockcmsg_unix.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/syscall_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/syscall_aix.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/syscall_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/syscall_bsd.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/syscall_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/syscall_darwin.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/syscall_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/syscall_linux.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/syscall_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/syscall_netbsd.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/syscall_unix.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/timestruct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/timestruct.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/unveil_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/unveil_openbsd.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/xattr_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/xattr_bsd.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/zerrors_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/zerrors_linux.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/zsyscall_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/zsyscall_linux.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/sys/unix/ztypes_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/sys/unix/ztypes_linux.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/text/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/text/CONTRIBUTORS -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/text/unicode/bidi/bidi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/text/unicode/bidi/bidi.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/text/unicode/bidi/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/text/unicode/bidi/core.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/text/unicode/bidi/prop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/text/unicode/bidi/prop.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/text/unicode/norm/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/text/unicode/norm/input.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/text/unicode/norm/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/text/unicode/norm/iter.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/text/unicode/norm/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/text/unicode/norm/trie.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/tools/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/tools/AUTHORS -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/tools/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/tools/CONTRIBUTORS -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/tools/LICENSE -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/tools/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/tools/PATENTS -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/tools/go/analysis/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/tools/go/analysis/doc.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/tools/go/loader/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/tools/go/loader/doc.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/tools/go/loader/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/tools/go/loader/util.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/tools/go/packages/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/tools/go/packages/doc.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/xerrors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/xerrors/LICENSE -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/xerrors/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/xerrors/PATENTS -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/xerrors/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/xerrors/README -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/xerrors/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/xerrors/adaptor.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/xerrors/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/xerrors/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/xerrors/doc.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/xerrors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/xerrors/errors.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/xerrors/fmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/xerrors/fmt.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/xerrors/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/xerrors/format.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/xerrors/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/xerrors/frame.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/xerrors/go.mod: -------------------------------------------------------------------------------- 1 | module golang.org/x/xerrors 2 | 3 | go 1.11 4 | -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/golang.org/x/xerrors/wrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/golang.org/x/xerrors/wrap.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/google.golang.org/api/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/google.golang.org/api/AUTHORS -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/google.golang.org/api/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/google.golang.org/api/CONTRIBUTORS -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/google.golang.org/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/google.golang.org/api/LICENSE -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/google.golang.org/appengine/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/google.golang.org/appengine/LICENSE -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/google.golang.org/appengine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/google.golang.org/appengine/README.md -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/google.golang.org/appengine/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/google.golang.org/appengine/errors.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/google.golang.org/appengine/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/google.golang.org/appengine/go.mod -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/google.golang.org/appengine/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/google.golang.org/appengine/go.sum -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/google.golang.org/genproto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/google.golang.org/genproto/LICENSE -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/google.golang.org/grpc/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/google.golang.org/grpc/.travis.yml -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/google.golang.org/grpc/GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/google.golang.org/grpc/GOVERNANCE.md -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/google.golang.org/grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/google.golang.org/grpc/MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/google.golang.org/grpc/MAINTAINERS.md -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/google.golang.org/grpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/google.golang.org/grpc/Makefile -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/google.golang.org/grpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/google.golang.org/grpc/README.md -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/google.golang.org/grpc/backoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/google.golang.org/grpc/backoff.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/google.golang.org/grpc/balancer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/google.golang.org/grpc/balancer.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/google.golang.org/grpc/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/google.golang.org/grpc/call.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/google.golang.org/grpc/clientconn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/google.golang.org/grpc/clientconn.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/google.golang.org/grpc/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/google.golang.org/grpc/codec.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/google.golang.org/grpc/codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/google.golang.org/grpc/codegen.sh -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/google.golang.org/grpc/codes/codes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/google.golang.org/grpc/codes/codes.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/google.golang.org/grpc/dialoptions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/google.golang.org/grpc/dialoptions.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/google.golang.org/grpc/doc.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/google.golang.org/grpc/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/google.golang.org/grpc/go.mod -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/google.golang.org/grpc/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/google.golang.org/grpc/go.sum -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/google.golang.org/grpc/install_gae.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/google.golang.org/grpc/install_gae.sh -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/google.golang.org/grpc/interceptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/google.golang.org/grpc/interceptor.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/google.golang.org/grpc/peer/peer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/google.golang.org/grpc/peer/peer.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/google.golang.org/grpc/pickfirst.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/google.golang.org/grpc/pickfirst.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/google.golang.org/grpc/preloader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/google.golang.org/grpc/preloader.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/google.golang.org/grpc/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/google.golang.org/grpc/proxy.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/google.golang.org/grpc/rpc_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/google.golang.org/grpc/rpc_util.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/google.golang.org/grpc/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/google.golang.org/grpc/server.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/google.golang.org/grpc/stats/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/google.golang.org/grpc/stats/stats.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/google.golang.org/grpc/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/google.golang.org/grpc/stream.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/google.golang.org/grpc/tap/tap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/google.golang.org/grpc/tap/tap.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/google.golang.org/grpc/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/google.golang.org/grpc/trace.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/google.golang.org/grpc/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/google.golang.org/grpc/version.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/google.golang.org/grpc/vet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/google.golang.org/grpc/vet.sh -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/google.golang.org/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/google.golang.org/protobuf/AUTHORS -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/google.golang.org/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/google.golang.org/protobuf/LICENSE -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/google.golang.org/protobuf/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/google.golang.org/protobuf/PATENTS -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/LICENSE -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/arg/arg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/arg/arg.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/code/code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/code/code.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/config/config.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/edit/edit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/edit/edit.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/facts/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/facts/generated.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/facts/purity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/facts/purity.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/facts/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/facts/token.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/functions/loops.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/functions/loops.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/functions/stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/functions/stub.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/ir/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/ir/LICENSE -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/ir/blockopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/ir/blockopt.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/ir/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/ir/builder.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/ir/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/ir/const.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/ir/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/ir/create.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/ir/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/ir/doc.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/ir/dom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/ir/dom.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/ir/emit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/ir/emit.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/ir/exits.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/ir/exits.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/ir/func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/ir/func.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/ir/html.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/ir/html.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/ir/identical.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/ir/identical.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/ir/identical_17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/ir/identical_17.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/ir/irutil/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/ir/irutil/load.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/ir/irutil/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/ir/irutil/util.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/ir/irutil/visit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/ir/irutil/visit.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/ir/lift.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/ir/lift.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/ir/lvalue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/ir/lvalue.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/ir/methods.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/ir/methods.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/ir/mode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/ir/mode.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/ir/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/ir/print.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/ir/sanity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/ir/sanity.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/ir/source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/ir/source.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/ir/ssa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/ir/ssa.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/ir/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/ir/util.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/ir/wrappers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/ir/wrappers.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/ir/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/ir/write.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/lint/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/lint/LICENSE -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/lint/lint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/lint/lint.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/lint/runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/lint/runner.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/lint/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/lint/stats.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/loader/loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/loader/loader.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/pattern/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/pattern/convert.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/pattern/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/pattern/doc.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/pattern/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/pattern/fuzz.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/pattern/lexer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/pattern/lexer.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/pattern/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/pattern/match.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/pattern/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/pattern/parser.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/pattern/pattern.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/pattern/pattern.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/printf/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/printf/fuzz.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/printf/printf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/printf/printf.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/report/report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/report/report.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/simple/analysis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/simple/analysis.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/simple/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/simple/doc.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/simple/lint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/simple/lint.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/staticcheck/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/staticcheck/doc.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/stylecheck/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/stylecheck/doc.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/stylecheck/lint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/stylecheck/lint.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/unused/edge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/unused/edge.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/unused/unused.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/unused/unused.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/honnef.co/go/tools/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/honnef.co/go/tools/version/version.go -------------------------------------------------------------------------------- /pizza-authenticator/server/vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/vendor/modules.txt -------------------------------------------------------------------------------- /pizza-authenticator/server/warm-up.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/server/warm-up.jpg -------------------------------------------------------------------------------- /pizza-authenticator/styles/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/styles/_normalize.scss -------------------------------------------------------------------------------- /pizza-authenticator/styles/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/styles/_variables.scss -------------------------------------------------------------------------------- /pizza-authenticator/styles/components/camera.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/styles/components/camera.scss -------------------------------------------------------------------------------- /pizza-authenticator/styles/components/failure.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/styles/components/failure.scss -------------------------------------------------------------------------------- /pizza-authenticator/styles/components/home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/styles/components/home.scss -------------------------------------------------------------------------------- /pizza-authenticator/styles/components/nextbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/styles/components/nextbar.scss -------------------------------------------------------------------------------- /pizza-authenticator/styles/components/overlay.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/styles/components/overlay.scss -------------------------------------------------------------------------------- /pizza-authenticator/styles/components/result.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/styles/components/result.scss -------------------------------------------------------------------------------- /pizza-authenticator/styles/components/video-outlet.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/styles/components/video-outlet.scss -------------------------------------------------------------------------------- /pizza-authenticator/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/styles/main.scss -------------------------------------------------------------------------------- /pizza-authenticator/styles/shared.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/styles/shared.scss -------------------------------------------------------------------------------- /pizza-authenticator/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/tsconfig.json -------------------------------------------------------------------------------- /pizza-authenticator/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/tslint.json -------------------------------------------------------------------------------- /pizza-authenticator/yarn-error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/yarn-error.log -------------------------------------------------------------------------------- /pizza-authenticator/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/showcase-experiments/HEAD/pizza-authenticator/yarn.lock --------------------------------------------------------------------------------