├── LICENSE ├── README.md ├── docs └── reference-syntax.md ├── examples ├── cloudfunctions │ └── env │ │ ├── .gcloudignore │ │ ├── bin │ │ ├── create-cluster-role-binding │ │ ├── create-service-account │ │ └── deploy │ │ ├── function.go │ │ ├── go.mod │ │ ├── go.sum │ │ └── vendor │ │ ├── cloud.google.com │ │ └── go │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ └── compute │ │ │ └── metadata │ │ │ └── metadata.go │ │ ├── github.com │ │ ├── golang │ │ │ └── protobuf │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── proto │ │ │ │ ├── clone.go │ │ │ │ ├── decode.go │ │ │ │ ├── discard.go │ │ │ │ ├── encode.go │ │ │ │ ├── equal.go │ │ │ │ ├── extensions.go │ │ │ │ ├── lib.go │ │ │ │ ├── message_set.go │ │ │ │ ├── pointer_reflect.go │ │ │ │ ├── pointer_unsafe.go │ │ │ │ ├── properties.go │ │ │ │ ├── table_marshal.go │ │ │ │ ├── table_merge.go │ │ │ │ ├── table_unmarshal.go │ │ │ │ ├── text.go │ │ │ │ └── text_parser.go │ │ │ │ └── ptypes │ │ │ │ ├── any.go │ │ │ │ ├── any │ │ │ │ ├── any.pb.go │ │ │ │ └── any.proto │ │ │ │ ├── doc.go │ │ │ │ ├── duration.go │ │ │ │ ├── duration │ │ │ │ ├── duration.pb.go │ │ │ │ └── duration.proto │ │ │ │ ├── timestamp.go │ │ │ │ └── timestamp │ │ │ │ ├── timestamp.pb.go │ │ │ │ └── timestamp.proto │ │ ├── hashicorp │ │ │ └── golang-lru │ │ │ │ ├── LICENSE │ │ │ │ └── simplelru │ │ │ │ ├── lru.go │ │ │ │ └── lru_interface.go │ │ └── kelseyhightower │ │ │ └── konfig │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── konfig.go │ │ │ └── service.go │ │ ├── go.opencensus.io │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ │ ├── idna.go │ │ │ │ ├── punycode.go │ │ │ │ ├── tables.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_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_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 │ │ │ │ ├── fcntl.go │ │ │ │ ├── fcntl_darwin.go │ │ │ │ ├── fcntl_linux_32bit.go │ │ │ │ ├── gccgo.go │ │ │ │ ├── gccgo_c.c │ │ │ │ ├── gccgo_linux_amd64.go │ │ │ │ ├── ioctl.go │ │ │ │ ├── mkall.sh │ │ │ │ ├── mkasm_darwin.go │ │ │ │ ├── mkerrors.sh │ │ │ │ ├── mkpost.go │ │ │ │ ├── mksyscall.go │ │ │ │ ├── mksyscall_aix_ppc.go │ │ │ │ ├── mksyscall_aix_ppc64.go │ │ │ │ ├── mksyscall_solaris.go │ │ │ │ ├── mksysctl_openbsd.pl │ │ │ │ ├── mksysnum.go │ │ │ │ ├── openbsd_pledge.go │ │ │ │ ├── openbsd_unveil.go │ │ │ │ ├── pagesize_unix.go │ │ │ │ ├── race.go │ │ │ │ ├── race0.go │ │ │ │ ├── sockcmsg_linux.go │ │ │ │ ├── sockcmsg_unix.go │ │ │ │ ├── str.go │ │ │ │ ├── syscall.go │ │ │ │ ├── syscall_aix.go │ │ │ │ ├── syscall_aix_ppc.go │ │ │ │ ├── syscall_aix_ppc64.go │ │ │ │ ├── syscall_bsd.go │ │ │ │ ├── syscall_darwin.go │ │ │ │ ├── syscall_darwin_386.go │ │ │ │ ├── syscall_darwin_amd64.go │ │ │ │ ├── syscall_darwin_arm.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_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_solaris.go │ │ │ │ ├── syscall_solaris_amd64.go │ │ │ │ ├── syscall_unix.go │ │ │ │ ├── syscall_unix_gc.go │ │ │ │ ├── syscall_unix_gc_ppc64x.go │ │ │ │ ├── timestruct.go │ │ │ │ ├── types_aix.go │ │ │ │ ├── types_darwin.go │ │ │ │ ├── types_dragonfly.go │ │ │ │ ├── types_freebsd.go │ │ │ │ ├── types_netbsd.go │ │ │ │ ├── types_openbsd.go │ │ │ │ ├── types_solaris.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_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_solaris_amd64.go │ │ │ │ ├── zptrace386_linux.go │ │ │ │ ├── zptracearm_linux.go │ │ │ │ ├── zptracemips_linux.go │ │ │ │ ├── zptracemipsle_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.go │ │ │ │ ├── zsyscall_darwin_386.s │ │ │ │ ├── zsyscall_darwin_amd64.1_11.go │ │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ │ ├── zsyscall_darwin_amd64.s │ │ │ │ ├── zsyscall_darwin_arm.1_11.go │ │ │ │ ├── zsyscall_darwin_arm.go │ │ │ │ ├── zsyscall_darwin_arm.s │ │ │ │ ├── zsyscall_darwin_arm64.1_11.go │ │ │ │ ├── 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_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_solaris_amd64.go │ │ │ │ ├── zsysctl_openbsd_386.go │ │ │ │ ├── zsysctl_openbsd_amd64.go │ │ │ │ ├── zsysctl_openbsd_arm.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 │ │ │ │ ├── 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_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_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 │ │ │ ├── gen.go │ │ │ ├── gen_ranges.go │ │ │ ├── gen_trieval.go │ │ │ ├── prop.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ └── trieval.go │ │ │ └── norm │ │ │ ├── composition.go │ │ │ ├── forminfo.go │ │ │ ├── input.go │ │ │ ├── iter.go │ │ │ ├── maketables.go │ │ │ ├── normalize.go │ │ │ ├── readwriter.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── transform.go │ │ │ ├── trie.go │ │ │ └── triegen.go │ │ ├── google.golang.org │ │ ├── api │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── cloudfunctions │ │ │ │ └── v1 │ │ │ │ │ ├── cloudfunctions-api.json │ │ │ │ │ └── cloudfunctions-gen.go │ │ │ ├── container │ │ │ │ └── v1 │ │ │ │ │ ├── container-api.json │ │ │ │ │ └── container-gen.go │ │ │ ├── gensupport │ │ │ │ ├── backoff.go │ │ │ │ ├── buffer.go │ │ │ │ ├── doc.go │ │ │ │ ├── header.go │ │ │ │ ├── json.go │ │ │ │ ├── jsonfloat.go │ │ │ │ ├── media.go │ │ │ │ ├── params.go │ │ │ │ ├── resumable.go │ │ │ │ ├── retry.go │ │ │ │ └── send.go │ │ │ ├── googleapi │ │ │ │ ├── googleapi.go │ │ │ │ ├── internal │ │ │ │ │ └── uritemplates │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── uritemplates.go │ │ │ │ │ │ └── utils.go │ │ │ │ ├── transport │ │ │ │ │ └── apikey.go │ │ │ │ └── types.go │ │ │ ├── internal │ │ │ │ ├── creds.go │ │ │ │ ├── pool.go │ │ │ │ ├── service-account.json │ │ │ │ └── settings.go │ │ │ ├── option │ │ │ │ ├── credentials_go19.go │ │ │ │ ├── credentials_notgo19.go │ │ │ │ └── option.go │ │ │ └── transport │ │ │ │ └── http │ │ │ │ ├── dial.go │ │ │ │ ├── dial_appengine.go │ │ │ │ └── internal │ │ │ │ └── propagation │ │ │ │ └── http.go │ │ ├── appengine │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── appengine.go │ │ │ ├── appengine_vm.go │ │ │ ├── errors.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 │ │ │ ├── namespace.go │ │ │ ├── timeout.go │ │ │ ├── travis_install.sh │ │ │ ├── travis_test.sh │ │ │ └── urlfetch │ │ │ │ └── urlfetch.go │ │ ├── genproto │ │ │ ├── LICENSE │ │ │ └── googleapis │ │ │ │ └── rpc │ │ │ │ └── status │ │ │ │ └── status.pb.go │ │ └── grpc │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── 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 │ │ │ ├── internal │ │ │ │ ├── syscallconn.go │ │ │ │ └── syscallconn_appengine.go │ │ │ └── tls13.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 │ │ │ ├── binarylog │ │ │ │ ├── binarylog.go │ │ │ │ ├── binarylog_testutil.go │ │ │ │ ├── env_config.go │ │ │ │ ├── method_logger.go │ │ │ │ ├── regenerate.sh │ │ │ │ ├── sink.go │ │ │ │ └── util.go │ │ │ ├── channelz │ │ │ │ ├── funcs.go │ │ │ │ ├── types.go │ │ │ │ ├── types_linux.go │ │ │ │ ├── types_nonlinux.go │ │ │ │ ├── util_linux.go │ │ │ │ └── util_nonlinux.go │ │ │ ├── envconfig │ │ │ │ └── envconfig.go │ │ │ ├── grpcrand │ │ │ │ └── grpcrand.go │ │ │ ├── grpcsync │ │ │ │ └── event.go │ │ │ ├── internal.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 │ │ │ ├── proxy.go │ │ │ ├── resolver │ │ │ ├── dns │ │ │ │ └── dns_resolver.go │ │ │ ├── passthrough │ │ │ │ └── passthrough.go │ │ │ └── resolver.go │ │ │ ├── resolver_conn_wrapper.go │ │ │ ├── rpc_util.go │ │ │ ├── server.go │ │ │ ├── service_config.go │ │ │ ├── stats │ │ │ ├── handlers.go │ │ │ └── stats.go │ │ │ ├── status │ │ │ └── status.go │ │ │ ├── stream.go │ │ │ ├── tap │ │ │ └── tap.go │ │ │ ├── trace.go │ │ │ ├── version.go │ │ │ └── vet.sh │ │ └── modules.txt └── cloudrun │ └── env │ ├── Dockerfile │ ├── bin │ ├── build │ ├── create-kubernetes-secrets │ └── deploy │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── vendor │ ├── cloud.google.com │ └── go │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ └── compute │ │ └── metadata │ │ └── metadata.go │ ├── github.com │ ├── golang │ │ └── protobuf │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── proto │ │ │ ├── clone.go │ │ │ ├── decode.go │ │ │ ├── discard.go │ │ │ ├── encode.go │ │ │ ├── equal.go │ │ │ ├── extensions.go │ │ │ ├── lib.go │ │ │ ├── message_set.go │ │ │ ├── pointer_reflect.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── properties.go │ │ │ ├── table_marshal.go │ │ │ ├── table_merge.go │ │ │ ├── table_unmarshal.go │ │ │ ├── text.go │ │ │ └── text_parser.go │ │ │ └── ptypes │ │ │ ├── any.go │ │ │ ├── any │ │ │ ├── any.pb.go │ │ │ └── any.proto │ │ │ ├── doc.go │ │ │ ├── duration.go │ │ │ ├── duration │ │ │ ├── duration.pb.go │ │ │ └── duration.proto │ │ │ ├── timestamp.go │ │ │ └── timestamp │ │ │ ├── timestamp.pb.go │ │ │ └── timestamp.proto │ ├── hashicorp │ │ └── golang-lru │ │ │ ├── LICENSE │ │ │ └── simplelru │ │ │ ├── lru.go │ │ │ └── lru_interface.go │ └── kelseyhightower │ │ └── konfig │ │ ├── LICENSE │ │ ├── README.md │ │ ├── go.mod │ │ ├── go.sum │ │ ├── konfig.go │ │ └── service.go │ ├── go.opencensus.io │ ├── .gitignore │ ├── .travis.yml │ ├── AUTHORS │ ├── CONTRIBUTING.md │ ├── Gopkg.lock │ ├── Gopkg.toml │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ │ ├── idna.go │ │ │ ├── punycode.go │ │ │ ├── tables.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_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_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 │ │ │ ├── fcntl.go │ │ │ ├── fcntl_darwin.go │ │ │ ├── fcntl_linux_32bit.go │ │ │ ├── gccgo.go │ │ │ ├── gccgo_c.c │ │ │ ├── gccgo_linux_amd64.go │ │ │ ├── ioctl.go │ │ │ ├── mkall.sh │ │ │ ├── mkasm_darwin.go │ │ │ ├── mkerrors.sh │ │ │ ├── mkpost.go │ │ │ ├── mksyscall.go │ │ │ ├── mksyscall_aix_ppc.go │ │ │ ├── mksyscall_aix_ppc64.go │ │ │ ├── mksyscall_solaris.go │ │ │ ├── mksysctl_openbsd.pl │ │ │ ├── mksysnum.go │ │ │ ├── openbsd_pledge.go │ │ │ ├── openbsd_unveil.go │ │ │ ├── pagesize_unix.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── sockcmsg_linux.go │ │ │ ├── sockcmsg_unix.go │ │ │ ├── str.go │ │ │ ├── syscall.go │ │ │ ├── syscall_aix.go │ │ │ ├── syscall_aix_ppc.go │ │ │ ├── syscall_aix_ppc64.go │ │ │ ├── syscall_bsd.go │ │ │ ├── syscall_darwin.go │ │ │ ├── syscall_darwin_386.go │ │ │ ├── syscall_darwin_amd64.go │ │ │ ├── syscall_darwin_arm.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_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_solaris.go │ │ │ ├── syscall_solaris_amd64.go │ │ │ ├── syscall_unix.go │ │ │ ├── syscall_unix_gc.go │ │ │ ├── syscall_unix_gc_ppc64x.go │ │ │ ├── timestruct.go │ │ │ ├── types_aix.go │ │ │ ├── types_darwin.go │ │ │ ├── types_dragonfly.go │ │ │ ├── types_freebsd.go │ │ │ ├── types_netbsd.go │ │ │ ├── types_openbsd.go │ │ │ ├── types_solaris.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_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_solaris_amd64.go │ │ │ ├── zptrace386_linux.go │ │ │ ├── zptracearm_linux.go │ │ │ ├── zptracemips_linux.go │ │ │ ├── zptracemipsle_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.go │ │ │ ├── zsyscall_darwin_386.s │ │ │ ├── zsyscall_darwin_amd64.1_11.go │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ ├── zsyscall_darwin_amd64.s │ │ │ ├── zsyscall_darwin_arm.1_11.go │ │ │ ├── zsyscall_darwin_arm.go │ │ │ ├── zsyscall_darwin_arm.s │ │ │ ├── zsyscall_darwin_arm64.1_11.go │ │ │ ├── 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_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_solaris_amd64.go │ │ │ ├── zsysctl_openbsd_386.go │ │ │ ├── zsysctl_openbsd_amd64.go │ │ │ ├── zsysctl_openbsd_arm.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 │ │ │ ├── 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_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_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 │ │ ├── gen.go │ │ ├── gen_ranges.go │ │ ├── gen_trieval.go │ │ ├── prop.go │ │ ├── tables10.0.0.go │ │ ├── tables9.0.0.go │ │ └── trieval.go │ │ └── norm │ │ ├── composition.go │ │ ├── forminfo.go │ │ ├── input.go │ │ ├── iter.go │ │ ├── maketables.go │ │ ├── normalize.go │ │ ├── readwriter.go │ │ ├── tables10.0.0.go │ │ ├── tables9.0.0.go │ │ ├── transform.go │ │ ├── trie.go │ │ └── triegen.go │ ├── google.golang.org │ ├── api │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── cloudfunctions │ │ │ └── v1 │ │ │ │ ├── cloudfunctions-api.json │ │ │ │ └── cloudfunctions-gen.go │ │ ├── container │ │ │ └── v1 │ │ │ │ ├── container-api.json │ │ │ │ └── container-gen.go │ │ ├── gensupport │ │ │ ├── backoff.go │ │ │ ├── buffer.go │ │ │ ├── doc.go │ │ │ ├── header.go │ │ │ ├── json.go │ │ │ ├── jsonfloat.go │ │ │ ├── media.go │ │ │ ├── params.go │ │ │ ├── resumable.go │ │ │ ├── retry.go │ │ │ └── send.go │ │ ├── googleapi │ │ │ ├── googleapi.go │ │ │ ├── internal │ │ │ │ └── uritemplates │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── uritemplates.go │ │ │ │ │ └── utils.go │ │ │ ├── transport │ │ │ │ └── apikey.go │ │ │ └── types.go │ │ ├── internal │ │ │ ├── creds.go │ │ │ ├── pool.go │ │ │ ├── service-account.json │ │ │ └── settings.go │ │ ├── option │ │ │ ├── credentials_go19.go │ │ │ ├── credentials_notgo19.go │ │ │ └── option.go │ │ └── transport │ │ │ └── http │ │ │ ├── dial.go │ │ │ ├── dial_appengine.go │ │ │ └── internal │ │ │ └── propagation │ │ │ └── http.go │ ├── appengine │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── appengine.go │ │ ├── appengine_vm.go │ │ ├── errors.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 │ │ ├── namespace.go │ │ ├── timeout.go │ │ ├── travis_install.sh │ │ ├── travis_test.sh │ │ └── urlfetch │ │ │ └── urlfetch.go │ ├── genproto │ │ ├── LICENSE │ │ └── googleapis │ │ │ └── rpc │ │ │ └── status │ │ │ └── status.pb.go │ └── grpc │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── 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 │ │ ├── internal │ │ │ ├── syscallconn.go │ │ │ └── syscallconn_appengine.go │ │ └── tls13.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 │ │ ├── binarylog │ │ │ ├── binarylog.go │ │ │ ├── binarylog_testutil.go │ │ │ ├── env_config.go │ │ │ ├── method_logger.go │ │ │ ├── regenerate.sh │ │ │ ├── sink.go │ │ │ └── util.go │ │ ├── channelz │ │ │ ├── funcs.go │ │ │ ├── types.go │ │ │ ├── types_linux.go │ │ │ ├── types_nonlinux.go │ │ │ ├── util_linux.go │ │ │ └── util_nonlinux.go │ │ ├── envconfig │ │ │ └── envconfig.go │ │ ├── grpcrand │ │ │ └── grpcrand.go │ │ ├── grpcsync │ │ │ └── event.go │ │ ├── internal.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 │ │ ├── proxy.go │ │ ├── resolver │ │ ├── dns │ │ │ └── dns_resolver.go │ │ ├── passthrough │ │ │ └── passthrough.go │ │ └── resolver.go │ │ ├── resolver_conn_wrapper.go │ │ ├── rpc_util.go │ │ ├── server.go │ │ ├── service_config.go │ │ ├── stats │ │ ├── handlers.go │ │ └── stats.go │ │ ├── status │ │ └── status.go │ │ ├── stream.go │ │ ├── tap │ │ └── tap.go │ │ ├── trace.go │ │ ├── version.go │ │ └── vet.sh │ └── modules.txt ├── go.mod ├── go.sum ├── konfig.go ├── konfig_test.go └── service.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/README.md -------------------------------------------------------------------------------- /docs/reference-syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/docs/reference-syntax.md -------------------------------------------------------------------------------- /examples/cloudfunctions/env/.gcloudignore: -------------------------------------------------------------------------------- 1 | go.mod 2 | -------------------------------------------------------------------------------- /examples/cloudfunctions/env/bin/create-cluster-role-binding: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/bin/create-cluster-role-binding -------------------------------------------------------------------------------- /examples/cloudfunctions/env/bin/create-service-account: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/bin/create-service-account -------------------------------------------------------------------------------- /examples/cloudfunctions/env/bin/deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/bin/deploy -------------------------------------------------------------------------------- /examples/cloudfunctions/env/function.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/function.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/go.mod -------------------------------------------------------------------------------- /examples/cloudfunctions/env/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/go.sum -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/cloud.google.com/go/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/cloud.google.com/go/AUTHORS -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/cloud.google.com/go/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/cloud.google.com/go/CONTRIBUTORS -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/cloud.google.com/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/cloud.google.com/go/LICENSE -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/github.com/golang/protobuf/AUTHORS -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/github.com/golang/protobuf/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/github.com/golang/protobuf/CONTRIBUTORS -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/github.com/golang/protobuf/proto/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/github.com/golang/protobuf/proto/lib.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/github.com/golang/protobuf/proto/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/github.com/golang/protobuf/proto/text.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/github.com/golang/protobuf/ptypes/any.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/github.com/golang/protobuf/ptypes/any.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/github.com/golang/protobuf/ptypes/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/github.com/golang/protobuf/ptypes/doc.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/github.com/hashicorp/golang-lru/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/github.com/hashicorp/golang-lru/LICENSE -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/github.com/kelseyhightower/konfig/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/github.com/kelseyhightower/konfig/go.mod -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/github.com/kelseyhightower/konfig/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/github.com/kelseyhightower/konfig/go.sum -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/.gitignore -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/.travis.yml -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/CONTRIBUTING.md -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/Gopkg.lock -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/Gopkg.toml -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/LICENSE -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/Makefile -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/README.md -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/appveyor.yml -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/go.mod -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/go.sum -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/internal/internal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/internal/internal.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/internal/sanitize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/internal/sanitize.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/opencensus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/opencensus.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/plugin/ochttp/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/plugin/ochttp/client.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/plugin/ochttp/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/plugin/ochttp/doc.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/plugin/ochttp/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/plugin/ochttp/route.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/plugin/ochttp/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/plugin/ochttp/server.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/plugin/ochttp/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/plugin/ochttp/stats.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/plugin/ochttp/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/plugin/ochttp/trace.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/resource/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/resource/resource.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/stats/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/stats/doc.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/stats/measure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/stats/measure.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/stats/measure_int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/stats/measure_int64.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/stats/record.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/stats/record.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/stats/units.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/stats/units.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/stats/view/collector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/stats/view/collector.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/stats/view/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/stats/view/doc.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/stats/view/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/stats/view/export.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/stats/view/view.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/stats/view/view.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/stats/view/worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/stats/view/worker.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/tag/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/tag/context.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/tag/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/tag/doc.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/tag/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/tag/key.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/tag/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/tag/map.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/tag/map_codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/tag/map_codec.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/tag/profile_19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/tag/profile_19.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/tag/profile_not19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/tag/profile_not19.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/tag/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/tag/validate.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/trace/basetypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/trace/basetypes.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/trace/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/trace/config.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/trace/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/trace/doc.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/trace/evictedqueue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/trace/evictedqueue.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/trace/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/trace/export.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/trace/lrumap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/trace/lrumap.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/trace/sampling.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/trace/sampling.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/trace/spanbucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/trace/spanbucket.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/trace/spanstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/trace/spanstore.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/trace/status_codes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/trace/status_codes.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/trace/trace.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/trace/trace_go11.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/trace/trace_go11.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/go.opencensus.io/trace/trace_nongo11.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/go.opencensus.io/trace/trace_nongo11.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/net/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/net/context/context.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/net/context/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/net/context/go17.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/net/context/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/net/context/go19.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/net/context/pre_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/net/context/pre_go17.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/net/context/pre_go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/net/context/pre_go19.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/net/http/httpguts/guts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/net/http/httpguts/guts.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/net/http2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/net/http2/Dockerfile -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/net/http2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/net/http2/README -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/net/http2/ciphers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/net/http2/ciphers.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/net/http2/databuffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/net/http2/databuffer.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/net/http2/go111.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/net/http2/go111.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/net/http2/gotrack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/net/http2/gotrack.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/net/http2/headermap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/net/http2/headermap.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/net/http2/hpack/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/net/http2/hpack/encode.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/net/http2/hpack/hpack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/net/http2/hpack/hpack.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/net/http2/hpack/huffman.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/net/http2/hpack/huffman.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/net/http2/hpack/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/net/http2/hpack/tables.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/net/http2/not_go111.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/net/http2/not_go111.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/net/http2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/net/http2/transport.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/net/http2/writesched.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/net/http2/writesched.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/net/idna/idna.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/net/idna/idna.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/net/idna/punycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/net/idna/punycode.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/net/idna/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/net/idna/tables.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/net/trace/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/net/trace/events.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/net/trace/histogram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/net/trace/histogram.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/oauth2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/oauth2/.travis.yml -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/oauth2/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/oauth2/AUTHORS -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/oauth2/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/oauth2/CONTRIBUTING.md -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/oauth2/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/oauth2/CONTRIBUTORS -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/oauth2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/oauth2/LICENSE -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/oauth2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/oauth2/README.md -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/oauth2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/oauth2/go.mod -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/oauth2/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/oauth2/go.sum -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/oauth2/google/appengine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/oauth2/google/appengine.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/oauth2/google/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/oauth2/google/default.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/oauth2/google/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/oauth2/google/doc.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/oauth2/google/google.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/oauth2/google/google.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/oauth2/google/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/oauth2/google/jwt.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/oauth2/google/sdk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/oauth2/google/sdk.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/oauth2/internal/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/oauth2/internal/doc.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/oauth2/internal/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/oauth2/internal/oauth2.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/oauth2/internal/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/oauth2/internal/token.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/oauth2/jws/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/oauth2/jws/jws.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/oauth2/jwt/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/oauth2/jwt/jwt.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/oauth2/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/oauth2/oauth2.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/oauth2/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/oauth2/token.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/oauth2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/oauth2/transport.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/affinity_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/affinity_linux.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/aliases.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/asm_aix_ppc64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/asm_aix_ppc64.s -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/asm_darwin_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/asm_darwin_386.s -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/asm_darwin_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/asm_darwin_amd64.s -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/asm_darwin_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/asm_darwin_arm.s -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/asm_darwin_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/asm_darwin_arm64.s -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/asm_freebsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/asm_freebsd_386.s -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/asm_freebsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/asm_freebsd_arm.s -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/asm_linux_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/asm_linux_386.s -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/asm_linux_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/asm_linux_amd64.s -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/asm_linux_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/asm_linux_arm.s -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/asm_linux_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/asm_linux_arm64.s -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/asm_linux_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/asm_linux_s390x.s -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/asm_netbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/asm_netbsd_386.s -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/asm_netbsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/asm_netbsd_amd64.s -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/asm_netbsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/asm_netbsd_arm.s -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/asm_netbsd_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/asm_netbsd_arm64.s -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/asm_openbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/asm_openbsd_386.s -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/asm_openbsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/asm_openbsd_arm.s -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/bluetooth_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/bluetooth_linux.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/cap_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/cap_freebsd.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/dev_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/dev_aix_ppc.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/dev_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/dev_aix_ppc64.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/dev_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/dev_darwin.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/dev_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/dev_dragonfly.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/dev_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/dev_freebsd.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/dev_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/dev_linux.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/dev_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/dev_netbsd.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/dev_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/dev_openbsd.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/endian_big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/endian_big.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/endian_little.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/endian_little.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/fcntl_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/fcntl_darwin.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/ioctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/ioctl.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/mkasm_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/mkasm_darwin.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/mkpost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/mkpost.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/mksyscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/mksyscall.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/mksysnum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/mksysnum.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/openbsd_pledge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/openbsd_pledge.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/openbsd_unveil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/openbsd_unveil.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/pagesize_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/pagesize_unix.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/sockcmsg_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/sockcmsg_linux.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/sockcmsg_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/sockcmsg_unix.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/syscall_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/syscall_aix.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/syscall_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/syscall_aix_ppc.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/syscall_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/syscall_bsd.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/syscall_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/syscall_darwin.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/syscall_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/syscall_freebsd.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/syscall_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/syscall_linux.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/syscall_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/syscall_netbsd.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/syscall_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/syscall_openbsd.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/syscall_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/syscall_solaris.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/syscall_unix.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/syscall_unix_gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/syscall_unix_gc.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/timestruct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/timestruct.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/types_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/types_aix.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/types_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/types_darwin.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/types_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/types_dragonfly.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/types_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/types_freebsd.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/types_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/types_netbsd.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/types_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/types_openbsd.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/types_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/types_solaris.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/xattr_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/xattr_bsd.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/text/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/text/CONTRIBUTORS -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/text/transform/transform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/text/transform/transform.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/text/unicode/bidi/bidi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/text/unicode/bidi/bidi.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/text/unicode/bidi/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/text/unicode/bidi/core.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/text/unicode/bidi/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/text/unicode/bidi/gen.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/text/unicode/bidi/prop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/text/unicode/bidi/prop.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/text/unicode/norm/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/text/unicode/norm/input.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/text/unicode/norm/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/text/unicode/norm/iter.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/golang.org/x/text/unicode/norm/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/golang.org/x/text/unicode/norm/trie.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/api/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/api/AUTHORS -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/api/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/api/CONTRIBUTORS -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/api/LICENSE -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/api/gensupport/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/api/gensupport/doc.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/api/gensupport/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/api/gensupport/json.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/api/gensupport/send.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/api/gensupport/send.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/api/googleapi/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/api/googleapi/types.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/api/internal/creds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/api/internal/creds.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/api/internal/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/api/internal/pool.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/api/option/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/api/option/option.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/appengine/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/appengine/.travis.yml -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/appengine/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/appengine/LICENSE -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/appengine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/appengine/README.md -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/appengine/appengine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/appengine/appengine.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/appengine/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/appengine/errors.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/appengine/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/appengine/go.mod -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/appengine/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/appengine/go.sum -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/genproto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/genproto/LICENSE -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/grpc/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/grpc/.travis.yml -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/grpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/grpc/Makefile -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/grpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/grpc/README.md -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/grpc/backoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/grpc/backoff.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/grpc/balancer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/grpc/balancer.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/grpc/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/grpc/call.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/grpc/clientconn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/grpc/clientconn.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/grpc/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/grpc/codec.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/grpc/codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/grpc/codegen.sh -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/grpc/codes/codes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/grpc/codes/codes.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/grpc/dialoptions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/grpc/dialoptions.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/grpc/doc.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/grpc/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/grpc/go.mod -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/grpc/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/grpc/go.sum -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/grpc/install_gae.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/grpc/install_gae.sh -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/grpc/interceptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/grpc/interceptor.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/grpc/peer/peer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/grpc/peer/peer.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/grpc/pickfirst.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/grpc/pickfirst.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/grpc/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/grpc/proxy.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/grpc/rpc_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/grpc/rpc_util.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/grpc/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/grpc/server.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/grpc/stats/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/grpc/stats/stats.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/grpc/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/grpc/stream.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/grpc/tap/tap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/grpc/tap/tap.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/grpc/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/grpc/trace.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/grpc/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/grpc/version.go -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/google.golang.org/grpc/vet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/google.golang.org/grpc/vet.sh -------------------------------------------------------------------------------- /examples/cloudfunctions/env/vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudfunctions/env/vendor/modules.txt -------------------------------------------------------------------------------- /examples/cloudrun/env/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/Dockerfile -------------------------------------------------------------------------------- /examples/cloudrun/env/bin/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/bin/build -------------------------------------------------------------------------------- /examples/cloudrun/env/bin/create-kubernetes-secrets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/bin/create-kubernetes-secrets -------------------------------------------------------------------------------- /examples/cloudrun/env/bin/deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/bin/deploy -------------------------------------------------------------------------------- /examples/cloudrun/env/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/go.mod -------------------------------------------------------------------------------- /examples/cloudrun/env/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/go.sum -------------------------------------------------------------------------------- /examples/cloudrun/env/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/main.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/cloud.google.com/go/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/cloud.google.com/go/AUTHORS -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/cloud.google.com/go/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/cloud.google.com/go/CONTRIBUTORS -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/cloud.google.com/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/cloud.google.com/go/LICENSE -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/github.com/golang/protobuf/AUTHORS -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/github.com/golang/protobuf/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/github.com/golang/protobuf/CONTRIBUTORS -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/github.com/golang/protobuf/proto/clone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/github.com/golang/protobuf/proto/clone.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/github.com/golang/protobuf/proto/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/github.com/golang/protobuf/proto/decode.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/github.com/golang/protobuf/proto/discard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/github.com/golang/protobuf/proto/discard.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/github.com/golang/protobuf/proto/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/github.com/golang/protobuf/proto/encode.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/github.com/golang/protobuf/proto/equal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/github.com/golang/protobuf/proto/equal.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/github.com/golang/protobuf/proto/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/github.com/golang/protobuf/proto/lib.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/github.com/golang/protobuf/proto/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/github.com/golang/protobuf/proto/text.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/github.com/golang/protobuf/ptypes/any.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/github.com/golang/protobuf/ptypes/any.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/github.com/golang/protobuf/ptypes/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/github.com/golang/protobuf/ptypes/doc.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/github.com/hashicorp/golang-lru/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/github.com/hashicorp/golang-lru/LICENSE -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/github.com/kelseyhightower/konfig/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/github.com/kelseyhightower/konfig/LICENSE -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/github.com/kelseyhightower/konfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/github.com/kelseyhightower/konfig/README.md -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/github.com/kelseyhightower/konfig/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/github.com/kelseyhightower/konfig/go.mod -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/github.com/kelseyhightower/konfig/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/github.com/kelseyhightower/konfig/go.sum -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/github.com/kelseyhightower/konfig/konfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/github.com/kelseyhightower/konfig/konfig.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/.gitignore -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/.travis.yml -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/CONTRIBUTING.md -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/Gopkg.lock -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/Gopkg.toml -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/LICENSE -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/Makefile -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/README.md -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/appveyor.yml -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/go.mod -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/go.sum -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/internal/internal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/internal/internal.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/internal/sanitize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/internal/sanitize.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/internal/traceinternals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/internal/traceinternals.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/metric/metricdata/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/metric/metricdata/doc.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/metric/metricdata/label.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/metric/metricdata/label.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/metric/metricdata/point.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/metric/metricdata/point.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/metric/metricdata/unit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/metric/metricdata/unit.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/opencensus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/opencensus.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/plugin/ochttp/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/plugin/ochttp/client.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/plugin/ochttp/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/plugin/ochttp/doc.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/plugin/ochttp/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/plugin/ochttp/route.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/plugin/ochttp/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/plugin/ochttp/server.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/plugin/ochttp/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/plugin/ochttp/stats.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/plugin/ochttp/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/plugin/ochttp/trace.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/resource/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/resource/resource.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/stats/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/stats/doc.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/stats/internal/record.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/stats/internal/record.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/stats/measure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/stats/measure.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/stats/measure_float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/stats/measure_float64.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/stats/measure_int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/stats/measure_int64.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/stats/record.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/stats/record.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/stats/units.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/stats/units.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/stats/view/aggregation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/stats/view/aggregation.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/stats/view/collector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/stats/view/collector.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/stats/view/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/stats/view/doc.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/stats/view/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/stats/view/export.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/stats/view/view.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/stats/view/view.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/stats/view/worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/stats/view/worker.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/tag/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/tag/context.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/tag/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/tag/doc.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/tag/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/tag/key.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/tag/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/tag/map.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/tag/map_codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/tag/map_codec.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/tag/profile_19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/tag/profile_19.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/tag/profile_not19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/tag/profile_not19.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/tag/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/tag/validate.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/trace/basetypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/trace/basetypes.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/trace/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/trace/config.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/trace/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/trace/doc.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/trace/evictedqueue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/trace/evictedqueue.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/trace/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/trace/export.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/trace/internal/internal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/trace/internal/internal.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/trace/lrumap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/trace/lrumap.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/trace/sampling.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/trace/sampling.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/trace/spanbucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/trace/spanbucket.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/trace/spanstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/trace/spanstore.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/trace/status_codes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/trace/status_codes.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/trace/trace.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/trace/trace_go11.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/trace/trace_go11.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/go.opencensus.io/trace/trace_nongo11.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/go.opencensus.io/trace/trace_nongo11.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/net/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/net/context/context.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/net/context/ctxhttp/ctxhttp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/net/context/ctxhttp/ctxhttp.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/net/context/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/net/context/go17.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/net/context/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/net/context/go19.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/net/context/pre_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/net/context/pre_go17.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/net/context/pre_go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/net/context/pre_go19.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/net/http/httpguts/guts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/net/http/httpguts/guts.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/net/http/httpguts/httplex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/net/http/httpguts/httplex.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/net/http2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/net/http2/Dockerfile -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/net/http2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/net/http2/README -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/net/http2/ciphers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/net/http2/ciphers.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/net/http2/client_conn_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/net/http2/client_conn_pool.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/net/http2/databuffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/net/http2/databuffer.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/net/http2/go111.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/net/http2/go111.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/net/http2/gotrack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/net/http2/gotrack.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/net/http2/headermap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/net/http2/headermap.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/net/http2/hpack/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/net/http2/hpack/encode.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/net/http2/hpack/hpack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/net/http2/hpack/hpack.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/net/http2/hpack/huffman.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/net/http2/hpack/huffman.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/net/http2/hpack/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/net/http2/hpack/tables.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/net/http2/not_go111.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/net/http2/not_go111.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/net/http2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/net/http2/transport.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/net/http2/writesched.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/net/http2/writesched.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/net/http2/writesched_random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/net/http2/writesched_random.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/net/idna/idna.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/net/idna/idna.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/net/idna/punycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/net/idna/punycode.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/net/idna/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/net/idna/tables.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/net/trace/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/net/trace/events.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/net/trace/histogram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/net/trace/histogram.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/oauth2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/oauth2/.travis.yml -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/oauth2/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/oauth2/AUTHORS -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/oauth2/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/oauth2/CONTRIBUTING.md -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/oauth2/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/oauth2/CONTRIBUTORS -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/oauth2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/oauth2/LICENSE -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/oauth2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/oauth2/README.md -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/oauth2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/oauth2/go.mod -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/oauth2/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/oauth2/go.sum -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/oauth2/google/appengine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/oauth2/google/appengine.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/oauth2/google/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/oauth2/google/default.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/oauth2/google/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/oauth2/google/doc.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/oauth2/google/google.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/oauth2/google/google.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/oauth2/google/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/oauth2/google/jwt.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/oauth2/google/sdk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/oauth2/google/sdk.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/oauth2/internal/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/oauth2/internal/doc.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/oauth2/internal/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/oauth2/internal/oauth2.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/oauth2/internal/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/oauth2/internal/token.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/oauth2/internal/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/oauth2/internal/transport.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/oauth2/jws/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/oauth2/jws/jws.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/oauth2/jwt/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/oauth2/jwt/jwt.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/oauth2/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/oauth2/oauth2.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/oauth2/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/oauth2/token.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/oauth2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/oauth2/transport.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/affinity_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/affinity_linux.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/aliases.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_aix_ppc64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_aix_ppc64.s -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_darwin_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_darwin_386.s -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_darwin_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_darwin_amd64.s -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_darwin_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_darwin_arm.s -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_darwin_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_darwin_arm64.s -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_dragonfly_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_dragonfly_amd64.s -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_freebsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_freebsd_386.s -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_freebsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_freebsd_amd64.s -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_freebsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_freebsd_arm.s -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_freebsd_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_freebsd_arm64.s -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_linux_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_linux_386.s -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_linux_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_linux_amd64.s -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_linux_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_linux_arm.s -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_linux_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_linux_arm64.s -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_linux_mips64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_linux_mips64x.s -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_linux_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_linux_s390x.s -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_netbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_netbsd_386.s -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_netbsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_netbsd_amd64.s -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_netbsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_netbsd_arm.s -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_netbsd_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_netbsd_arm64.s -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_openbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_openbsd_386.s -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_openbsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_openbsd_amd64.s -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_openbsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_openbsd_arm.s -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/bluetooth_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/bluetooth_linux.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/cap_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/cap_freebsd.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/dev_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/dev_aix_ppc.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/dev_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/dev_aix_ppc64.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/dev_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/dev_darwin.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/dev_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/dev_dragonfly.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/dev_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/dev_freebsd.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/dev_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/dev_linux.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/dev_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/dev_netbsd.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/dev_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/dev_openbsd.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/endian_big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/endian_big.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/endian_little.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/endian_little.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/errors_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/errors_freebsd_386.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/errors_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/errors_freebsd_arm.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/fcntl_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/fcntl_darwin.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/fcntl_linux_32bit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/fcntl_linux_32bit.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/ioctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/ioctl.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/mkasm_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/mkasm_darwin.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/mkpost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/mkpost.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/mksyscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/mksyscall.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/mksyscall_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/mksyscall_aix_ppc.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/mksyscall_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/mksyscall_solaris.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/mksysctl_openbsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/mksysctl_openbsd.pl -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/mksysnum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/mksysnum.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/openbsd_pledge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/openbsd_pledge.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/openbsd_unveil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/openbsd_unveil.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/pagesize_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/pagesize_unix.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/sockcmsg_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/sockcmsg_linux.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/sockcmsg_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/sockcmsg_unix.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/syscall_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/syscall_aix.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/syscall_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/syscall_aix_ppc.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/syscall_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/syscall_aix_ppc64.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/syscall_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/syscall_bsd.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/syscall_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/syscall_darwin.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/syscall_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/syscall_darwin_386.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/syscall_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/syscall_darwin_arm.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/syscall_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/syscall_dragonfly.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/syscall_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/syscall_freebsd.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/syscall_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/syscall_linux.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/syscall_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/syscall_linux_386.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/syscall_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/syscall_linux_arm.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/syscall_linux_gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/syscall_linux_gc.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/syscall_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/syscall_netbsd.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/syscall_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/syscall_netbsd_386.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/syscall_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/syscall_openbsd.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/syscall_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/syscall_solaris.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/syscall_unix.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/syscall_unix_gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/syscall_unix_gc.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/timestruct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/timestruct.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/types_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/types_aix.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/types_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/types_darwin.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/types_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/types_dragonfly.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/types_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/types_freebsd.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/types_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/types_netbsd.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/types_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/types_openbsd.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/types_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/types_solaris.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/xattr_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/xattr_bsd.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/zerrors_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/zerrors_darwin_386.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/zerrors_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/zerrors_darwin_arm.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/zerrors_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/zerrors_linux_386.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/zptrace386_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/zptrace386_linux.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/zptracearm_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/zptracearm_linux.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/zptracemips_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/zptracemips_linux.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/zsyscall_darwin_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/zsyscall_darwin_386.s -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.s -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/zsyscall_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/zsyscall_linux_386.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/zsysnum_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/zsysnum_darwin_386.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/ztypes_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/ztypes_aix_ppc64.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/ztypes_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/ztypes_darwin_386.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/ztypes_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/ztypes_linux_386.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/sys/unix/ztypes_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/sys/unix/ztypes_openbsd_arm.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/text/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/text/CONTRIBUTORS -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/text/transform/transform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/text/transform/transform.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/text/unicode/bidi/bidi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/text/unicode/bidi/bidi.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/text/unicode/bidi/bracket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/text/unicode/bidi/bracket.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/text/unicode/bidi/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/text/unicode/bidi/core.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/text/unicode/bidi/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/text/unicode/bidi/gen.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/text/unicode/bidi/prop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/text/unicode/bidi/prop.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/text/unicode/bidi/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/text/unicode/bidi/trieval.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/text/unicode/norm/forminfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/text/unicode/norm/forminfo.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/text/unicode/norm/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/text/unicode/norm/input.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/text/unicode/norm/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/text/unicode/norm/iter.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/text/unicode/norm/normalize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/text/unicode/norm/normalize.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/text/unicode/norm/transform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/text/unicode/norm/transform.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/text/unicode/norm/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/text/unicode/norm/trie.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/golang.org/x/text/unicode/norm/triegen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/golang.org/x/text/unicode/norm/triegen.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/api/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/api/AUTHORS -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/api/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/api/CONTRIBUTORS -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/api/LICENSE -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/api/gensupport/backoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/api/gensupport/backoff.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/api/gensupport/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/api/gensupport/buffer.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/api/gensupport/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/api/gensupport/doc.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/api/gensupport/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/api/gensupport/header.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/api/gensupport/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/api/gensupport/json.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/api/gensupport/media.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/api/gensupport/media.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/api/gensupport/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/api/gensupport/params.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/api/gensupport/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/api/gensupport/retry.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/api/gensupport/send.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/api/gensupport/send.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/api/googleapi/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/api/googleapi/types.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/api/internal/creds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/api/internal/creds.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/api/internal/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/api/internal/pool.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/api/internal/settings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/api/internal/settings.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/api/option/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/api/option/option.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/appengine/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/appengine/.travis.yml -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/appengine/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/appengine/CONTRIBUTING.md -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/appengine/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/appengine/LICENSE -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/appengine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/appengine/README.md -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/appengine/appengine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/appengine/appengine.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/appengine/appengine_vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/appengine/appengine_vm.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/appengine/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/appengine/errors.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/appengine/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/appengine/go.mod -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/appengine/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/appengine/go.sum -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/appengine/identity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/appengine/identity.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/appengine/internal/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/appengine/internal/api.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/appengine/internal/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/appengine/internal/net.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/appengine/namespace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/appengine/namespace.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/appengine/timeout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/appengine/timeout.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/appengine/travis_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/appengine/travis_test.sh -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/genproto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/genproto/LICENSE -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/grpc/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/grpc/.travis.yml -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/grpc/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/grpc/CONTRIBUTING.md -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/grpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/grpc/Makefile -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/grpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/grpc/README.md -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/grpc/backoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/grpc/backoff.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/grpc/balancer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/grpc/balancer.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/grpc/balancer/balancer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/grpc/balancer/balancer.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/grpc/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/grpc/call.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/grpc/clientconn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/grpc/clientconn.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/grpc/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/grpc/codec.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/grpc/codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/grpc/codegen.sh -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/grpc/codes/code_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/grpc/codes/code_string.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/grpc/codes/codes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/grpc/codes/codes.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/grpc/credentials/tls13.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/grpc/credentials/tls13.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/grpc/dialoptions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/grpc/dialoptions.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/grpc/doc.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/grpc/encoding/encoding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/grpc/encoding/encoding.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/grpc/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/grpc/go.mod -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/grpc/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/grpc/go.sum -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/grpc/grpclog/grpclog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/grpc/grpclog/grpclog.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/grpc/grpclog/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/grpc/grpclog/logger.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/grpc/grpclog/loggerv2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/grpc/grpclog/loggerv2.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/grpc/install_gae.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/grpc/install_gae.sh -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/grpc/interceptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/grpc/interceptor.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/grpc/internal/internal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/grpc/internal/internal.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/grpc/metadata/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/grpc/metadata/metadata.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/grpc/naming/naming.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/grpc/naming/naming.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/grpc/peer/peer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/grpc/peer/peer.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/grpc/picker_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/grpc/picker_wrapper.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/grpc/pickfirst.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/grpc/pickfirst.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/grpc/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/grpc/proxy.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/grpc/resolver/resolver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/grpc/resolver/resolver.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/grpc/rpc_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/grpc/rpc_util.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/grpc/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/grpc/server.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/grpc/service_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/grpc/service_config.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/grpc/stats/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/grpc/stats/handlers.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/grpc/stats/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/grpc/stats/stats.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/grpc/status/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/grpc/status/status.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/grpc/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/grpc/stream.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/grpc/tap/tap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/grpc/tap/tap.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/grpc/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/grpc/trace.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/grpc/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/grpc/version.go -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/google.golang.org/grpc/vet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/google.golang.org/grpc/vet.sh -------------------------------------------------------------------------------- /examples/cloudrun/env/vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/examples/cloudrun/env/vendor/modules.txt -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/go.sum -------------------------------------------------------------------------------- /konfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/konfig.go -------------------------------------------------------------------------------- /konfig_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/konfig_test.go -------------------------------------------------------------------------------- /service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/konfig/HEAD/service.go --------------------------------------------------------------------------------