├── .gitignore ├── README.md ├── config-reader ├── README.md ├── config.json ├── config.yaml ├── main.go └── vendor │ ├── bitbucket.org │ └── ww │ │ └── goautoneg │ │ ├── Makefile │ │ ├── README.txt │ │ └── autoneg.go │ ├── github.com │ ├── Sirupsen │ │ └── logrus │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── entry.go │ │ │ ├── exported.go │ │ │ ├── formatter.go │ │ │ ├── hooks.go │ │ │ ├── json_formatter.go │ │ │ ├── logger.go │ │ │ ├── logrus.go │ │ │ ├── terminal_bsd.go │ │ │ ├── terminal_linux.go │ │ │ ├── terminal_notwindows.go │ │ │ ├── terminal_windows.go │ │ │ ├── text_formatter.go │ │ │ └── writer.go │ ├── beorn7 │ │ └── perks │ │ │ └── quantile │ │ │ ├── exampledata.txt │ │ │ └── stream.go │ ├── codegangsta │ │ └── cli │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── app.go │ │ │ ├── cli.go │ │ │ ├── command.go │ │ │ ├── context.go │ │ │ ├── flag.go │ │ │ └── help.go │ ├── coreos │ │ ├── etcd │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── client │ │ │ │ ├── README.md │ │ │ │ ├── auth_role.go │ │ │ │ ├── auth_user.go │ │ │ │ ├── cancelreq.go │ │ │ │ ├── client.go │ │ │ │ ├── cluster_error.go │ │ │ │ ├── curl.go │ │ │ │ ├── discover.go │ │ │ │ ├── doc.go │ │ │ │ ├── keys.generated.go │ │ │ │ ├── keys.go │ │ │ │ ├── members.go │ │ │ │ ├── srv.go │ │ │ │ └── util.go │ │ │ └── pkg │ │ │ │ ├── pathutil │ │ │ │ └── path.go │ │ │ │ └── types │ │ │ │ ├── doc.go │ │ │ │ ├── id.go │ │ │ │ ├── set.go │ │ │ │ ├── slice.go │ │ │ │ ├── urls.go │ │ │ │ └── urlsmap.go │ │ ├── go-systemd │ │ │ ├── LICENSE │ │ │ └── journal │ │ │ │ └── journal.go │ │ └── pkg │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── dlopen │ │ │ ├── dlopen.go │ │ │ └── dlopen_example.go │ ├── golang │ │ ├── glog │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── glog.go │ │ │ └── glog_file.go │ │ └── protobuf │ │ │ ├── LICENSE │ │ │ ├── jsonpb │ │ │ └── jsonpb.go │ │ │ └── proto │ │ │ ├── Makefile │ │ │ ├── clone.go │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── equal.go │ │ │ ├── extensions.go │ │ │ ├── lib.go │ │ │ ├── message_set.go │ │ │ ├── pointer_reflect.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── properties.go │ │ │ ├── text.go │ │ │ └── text_parser.go │ ├── grpc-ecosystem │ │ └── grpc-gateway │ │ │ ├── LICENSE.txt │ │ │ ├── runtime │ │ │ └── internal │ │ │ │ ├── stream_chunk.pb.go │ │ │ │ └── stream_chunk.proto │ │ │ └── utilities │ │ │ ├── doc.go │ │ │ ├── pattern.go │ │ │ └── trie.go │ ├── inconshreveable │ │ └── mousetrap │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── trap_others.go │ │ │ ├── trap_windows.go │ │ │ └── trap_windows_1.4.go │ ├── matttproud │ │ └── golang_protobuf_extensions │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── pbutil │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ └── encode.go │ ├── prometheus │ │ ├── client_model │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── go │ │ │ │ └── metrics.pb.go │ │ ├── common │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── expfmt │ │ │ │ ├── decode.go │ │ │ │ ├── encode.go │ │ │ │ ├── expfmt.go │ │ │ │ ├── fuzz.go │ │ │ │ ├── json_decode.go │ │ │ │ ├── text_create.go │ │ │ │ └── text_parse.go │ │ │ ├── internal │ │ │ │ └── bitbucket.org │ │ │ │ │ └── ww │ │ │ │ │ └── goautoneg │ │ │ │ │ ├── README.txt │ │ │ │ │ └── autoneg.go │ │ │ └── model │ │ │ │ ├── alert.go │ │ │ │ ├── fingerprinting.go │ │ │ │ ├── fnv.go │ │ │ │ ├── labels.go │ │ │ │ ├── labelset.go │ │ │ │ ├── metric.go │ │ │ │ ├── model.go │ │ │ │ ├── signature.go │ │ │ │ ├── silence.go │ │ │ │ ├── time.go │ │ │ │ └── value.go │ │ └── procfs │ │ │ ├── AUTHORS.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── fs.go │ │ │ ├── ipvs.go │ │ │ ├── mdstat.go │ │ │ ├── proc.go │ │ │ ├── proc_io.go │ │ │ ├── proc_limits.go │ │ │ ├── proc_stat.go │ │ │ └── stat.go │ ├── spf13 │ │ └── pflag │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bool.go │ │ │ ├── count.go │ │ │ ├── duration.go │ │ │ ├── flag.go │ │ │ ├── float32.go │ │ │ ├── float64.go │ │ │ ├── golangflag.go │ │ │ ├── int.go │ │ │ ├── int32.go │ │ │ ├── int64.go │ │ │ ├── int8.go │ │ │ ├── int_slice.go │ │ │ ├── ip.go │ │ │ ├── ipmask.go │ │ │ ├── ipnet.go │ │ │ ├── string.go │ │ │ ├── string_slice.go │ │ │ ├── uint.go │ │ │ ├── uint16.go │ │ │ ├── uint32.go │ │ │ ├── uint64.go │ │ │ └── uint8.go │ └── ugorji │ │ └── go │ │ ├── LICENSE │ │ └── codec │ │ ├── 0doc.go │ │ ├── README.md │ │ ├── binc.go │ │ ├── cbor.go │ │ ├── decode.go │ │ ├── encode.go │ │ ├── fast-path.generated.go │ │ ├── fast-path.go.tmpl │ │ ├── fast-path.not.go │ │ ├── gen-dec-array.go.tmpl │ │ ├── gen-dec-map.go.tmpl │ │ ├── gen-helper.generated.go │ │ ├── gen-helper.go.tmpl │ │ ├── gen.generated.go │ │ ├── gen.go │ │ ├── helper.go │ │ ├── helper_internal.go │ │ ├── helper_not_unsafe.go │ │ ├── helper_unsafe.go │ │ ├── json.go │ │ ├── msgpack.go │ │ ├── noop.go │ │ ├── prebuild.go │ │ ├── prebuild.sh │ │ ├── rpc.go │ │ ├── simple.go │ │ ├── test-cbor-goldens.json │ │ ├── test.py │ │ ├── tests.sh │ │ └── time.go │ ├── golang.org │ └── x │ │ ├── crypto │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── blowfish │ │ │ ├── block.go │ │ │ ├── cipher.go │ │ │ └── const.go │ │ ├── net │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── context │ │ │ ├── context.go │ │ │ ├── go17.go │ │ │ ├── go17.go-bak2 │ │ │ └── pre_go17.go │ │ ├── http2 │ │ │ ├── Dockerfile │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── client_conn_pool.go │ │ │ ├── configure_transport.go │ │ │ ├── errors.go │ │ │ ├── fixed_buffer.go │ │ │ ├── flow.go │ │ │ ├── frame.go │ │ │ ├── go16.go │ │ │ ├── go17.go │ │ │ ├── go17_not18.go │ │ │ ├── go18.go │ │ │ ├── gotrack.go │ │ │ ├── headermap.go │ │ │ ├── hpack │ │ │ │ ├── encode.go │ │ │ │ ├── hpack.go │ │ │ │ ├── huffman.go │ │ │ │ └── tables.go │ │ │ ├── http2.go │ │ │ ├── not_go16.go │ │ │ ├── not_go17.go │ │ │ ├── pipe.go │ │ │ ├── server.go │ │ │ ├── transport.go │ │ │ ├── write.go │ │ │ └── writesched.go │ │ ├── idna │ │ │ ├── idna.go │ │ │ └── punycode.go │ │ ├── internal │ │ │ └── timeseries │ │ │ │ └── timeseries.go │ │ ├── lex │ │ │ └── httplex │ │ │ │ └── httplex.go │ │ └── trace │ │ │ ├── events.go │ │ │ ├── histogram.go │ │ │ └── trace.go │ │ └── sys │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── unix │ │ ├── asm.s │ │ ├── asm_darwin_386.s │ │ ├── asm_darwin_amd64.s │ │ ├── asm_darwin_arm.s │ │ ├── asm_darwin_arm64.s │ │ ├── asm_dragonfly_386.s │ │ ├── asm_dragonfly_amd64.s │ │ ├── asm_freebsd_386.s │ │ ├── asm_freebsd_amd64.s │ │ ├── asm_freebsd_arm.s │ │ ├── asm_linux_386.s │ │ ├── asm_linux_amd64.s │ │ ├── asm_linux_arm.s │ │ ├── asm_linux_arm64.s │ │ ├── asm_linux_mips64x.s │ │ ├── asm_linux_ppc64x.s │ │ ├── asm_netbsd_386.s │ │ ├── asm_netbsd_amd64.s │ │ ├── asm_netbsd_arm.s │ │ ├── asm_openbsd_386.s │ │ ├── asm_openbsd_amd64.s │ │ ├── asm_solaris_amd64.s │ │ ├── bluetooth_linux.go │ │ ├── constants.go │ │ ├── env_unix.go │ │ ├── env_unset.go │ │ ├── flock.go │ │ ├── flock_linux_32bit.go │ │ ├── gccgo.go │ │ ├── gccgo_c.c │ │ ├── gccgo_linux_amd64.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mksyscall.pl │ │ ├── mksyscall_solaris.pl │ │ ├── mksysctl_openbsd.pl │ │ ├── mksysnum_darwin.pl │ │ ├── mksysnum_dragonfly.pl │ │ ├── mksysnum_freebsd.pl │ │ ├── mksysnum_linux.pl │ │ ├── mksysnum_netbsd.pl │ │ ├── mksysnum_openbsd.pl │ │ ├── race.go │ │ ├── race0.go │ │ ├── sockcmsg_linux.go │ │ ├── sockcmsg_unix.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_bsd.go │ │ ├── syscall_darwin.go │ │ ├── syscall_darwin_386.go │ │ ├── syscall_darwin_amd64.go │ │ ├── syscall_darwin_arm.go │ │ ├── syscall_darwin_arm64.go │ │ ├── syscall_dragonfly.go │ │ ├── syscall_dragonfly_386.go │ │ ├── syscall_dragonfly_amd64.go │ │ ├── syscall_freebsd.go │ │ ├── syscall_freebsd_386.go │ │ ├── syscall_freebsd_amd64.go │ │ ├── syscall_freebsd_arm.go │ │ ├── syscall_linux.go │ │ ├── syscall_linux_386.go │ │ ├── syscall_linux_amd64.go │ │ ├── syscall_linux_arm.go │ │ ├── syscall_linux_arm64.go │ │ ├── syscall_linux_mips64x.go │ │ ├── syscall_linux_ppc64x.go │ │ ├── syscall_netbsd.go │ │ ├── syscall_netbsd_386.go │ │ ├── syscall_netbsd_amd64.go │ │ ├── syscall_netbsd_arm.go │ │ ├── syscall_no_getwd.go │ │ ├── syscall_openbsd.go │ │ ├── syscall_openbsd_386.go │ │ ├── syscall_openbsd_amd64.go │ │ ├── syscall_solaris.go │ │ ├── syscall_solaris_amd64.go │ │ ├── syscall_unix.go │ │ ├── types_darwin.go │ │ ├── types_dragonfly.go │ │ ├── types_freebsd.go │ │ ├── types_linux.go │ │ ├── types_netbsd.go │ │ ├── types_openbsd.go │ │ ├── types_solaris.go │ │ ├── zerrors_darwin_386.go │ │ ├── zerrors_darwin_amd64.go │ │ ├── zerrors_darwin_arm.go │ │ ├── zerrors_darwin_arm64.go │ │ ├── zerrors_dragonfly_386.go │ │ ├── zerrors_dragonfly_amd64.go │ │ ├── zerrors_freebsd_386.go │ │ ├── zerrors_freebsd_amd64.go │ │ ├── zerrors_freebsd_arm.go │ │ ├── zerrors_linux_386.go │ │ ├── zerrors_linux_amd64.go │ │ ├── zerrors_linux_arm.go │ │ ├── zerrors_linux_arm64.go │ │ ├── zerrors_linux_mips64.go │ │ ├── zerrors_linux_mips64le.go │ │ ├── zerrors_linux_ppc64.go │ │ ├── zerrors_linux_ppc64le.go │ │ ├── zerrors_netbsd_386.go │ │ ├── zerrors_netbsd_amd64.go │ │ ├── zerrors_netbsd_arm.go │ │ ├── zerrors_openbsd_386.go │ │ ├── zerrors_openbsd_amd64.go │ │ ├── zerrors_solaris_amd64.go │ │ ├── zsyscall_darwin_386.go │ │ ├── zsyscall_darwin_amd64.go │ │ ├── zsyscall_darwin_arm.go │ │ ├── zsyscall_darwin_arm64.go │ │ ├── zsyscall_dragonfly_386.go │ │ ├── zsyscall_dragonfly_amd64.go │ │ ├── zsyscall_freebsd_386.go │ │ ├── zsyscall_freebsd_amd64.go │ │ ├── zsyscall_freebsd_arm.go │ │ ├── zsyscall_linux_386.go │ │ ├── zsyscall_linux_amd64.go │ │ ├── zsyscall_linux_arm.go │ │ ├── zsyscall_linux_arm64.go │ │ ├── zsyscall_linux_mips64.go │ │ ├── zsyscall_linux_mips64le.go │ │ ├── zsyscall_linux_ppc64.go │ │ ├── zsyscall_linux_ppc64le.go │ │ ├── zsyscall_netbsd_386.go │ │ ├── zsyscall_netbsd_amd64.go │ │ ├── zsyscall_netbsd_arm.go │ │ ├── zsyscall_openbsd_386.go │ │ ├── zsyscall_openbsd_amd64.go │ │ ├── zsyscall_solaris_amd64.go │ │ ├── zsysctl_openbsd.go │ │ ├── zsysnum_darwin_386.go │ │ ├── zsysnum_darwin_amd64.go │ │ ├── zsysnum_darwin_arm.go │ │ ├── zsysnum_darwin_arm64.go │ │ ├── zsysnum_dragonfly_386.go │ │ ├── zsysnum_dragonfly_amd64.go │ │ ├── zsysnum_freebsd_386.go │ │ ├── zsysnum_freebsd_amd64.go │ │ ├── zsysnum_freebsd_arm.go │ │ ├── zsysnum_linux_386.go │ │ ├── zsysnum_linux_amd64.go │ │ ├── zsysnum_linux_arm.go │ │ ├── zsysnum_linux_arm64.go │ │ ├── zsysnum_linux_mips64.go │ │ ├── zsysnum_linux_mips64le.go │ │ ├── zsysnum_linux_ppc64.go │ │ ├── zsysnum_linux_ppc64le.go │ │ ├── zsysnum_netbsd_386.go │ │ ├── zsysnum_netbsd_amd64.go │ │ ├── zsysnum_netbsd_arm.go │ │ ├── zsysnum_openbsd_386.go │ │ ├── zsysnum_openbsd_amd64.go │ │ ├── zsysnum_solaris_amd64.go │ │ ├── ztypes_darwin_386.go │ │ ├── ztypes_darwin_amd64.go │ │ ├── ztypes_darwin_arm.go │ │ ├── ztypes_darwin_arm64.go │ │ ├── ztypes_dragonfly_386.go │ │ ├── ztypes_dragonfly_amd64.go │ │ ├── ztypes_freebsd_386.go │ │ ├── ztypes_freebsd_amd64.go │ │ ├── ztypes_freebsd_arm.go │ │ ├── ztypes_linux_386.go │ │ ├── ztypes_linux_amd64.go │ │ ├── ztypes_linux_arm.go │ │ ├── ztypes_linux_arm64.go │ │ ├── ztypes_linux_mips64.go │ │ ├── ztypes_linux_mips64le.go │ │ ├── ztypes_linux_ppc64.go │ │ ├── ztypes_linux_ppc64le.go │ │ ├── ztypes_netbsd_386.go │ │ ├── ztypes_netbsd_amd64.go │ │ ├── ztypes_netbsd_arm.go │ │ ├── ztypes_openbsd_386.go │ │ ├── ztypes_openbsd_amd64.go │ │ └── ztypes_solaris_amd64.go │ ├── google.golang.org │ └── grpc │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── PATENTS │ │ ├── README.md │ │ ├── backoff.go │ │ ├── balancer.go │ │ ├── call.go │ │ ├── clientconn.go │ │ ├── codegen.sh │ │ ├── codes │ │ ├── code_string.go │ │ └── codes.go │ │ ├── coverage.sh │ │ ├── credentials │ │ ├── credentials.go │ │ ├── credentials_util_go17.go │ │ └── credentials_util_pre_go17.go │ │ ├── doc.go │ │ ├── grpclog │ │ └── logger.go │ │ ├── interceptor.go │ │ ├── internal │ │ └── internal.go │ │ ├── metadata │ │ └── metadata.go │ │ ├── naming │ │ └── naming.go │ │ ├── peer │ │ └── peer.go │ │ ├── rpc_util.go │ │ ├── server.go │ │ ├── stream.go │ │ ├── trace.go │ │ └── transport │ │ ├── control.go │ │ ├── go16.go │ │ ├── go17.go │ │ ├── handler_server.go │ │ ├── http2_client.go │ │ ├── http2_server.go │ │ ├── http_util.go │ │ ├── pre_go16.go │ │ └── transport.go │ ├── gopkg.in │ └── yaml.v2 │ │ ├── LICENSE │ │ ├── LICENSE.libyaml │ │ ├── README.md │ │ ├── apic.go │ │ ├── decode.go │ │ ├── emitterc.go │ │ ├── encode.go │ │ ├── parserc.go │ │ ├── readerc.go │ │ ├── resolve.go │ │ ├── scannerc.go │ │ ├── sorter.go │ │ ├── writerc.go │ │ ├── yaml.go │ │ ├── yamlh.go │ │ └── yamlprivateh.go │ └── vendor.json ├── dep-mngt ├── Godeps │ ├── Godeps.json │ └── Readme ├── Gopkg.lock ├── Gopkg.toml ├── README.md ├── cmd │ ├── main.go │ └── options │ │ └── options.go ├── dep-vendor │ ├── github.com │ │ ├── sirupsen │ │ │ └── logrus │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── alt_exit.go │ │ │ │ ├── alt_exit_test.go │ │ │ │ ├── appveyor.yml │ │ │ │ ├── doc.go │ │ │ │ ├── entry.go │ │ │ │ ├── entry_test.go │ │ │ │ ├── example_basic_test.go │ │ │ │ ├── example_hook_test.go │ │ │ │ ├── exported.go │ │ │ │ ├── formatter.go │ │ │ │ ├── formatter_bench_test.go │ │ │ │ ├── hook_test.go │ │ │ │ ├── hooks.go │ │ │ │ ├── hooks │ │ │ │ ├── syslog │ │ │ │ │ ├── README.md │ │ │ │ │ ├── syslog.go │ │ │ │ │ └── syslog_test.go │ │ │ │ └── test │ │ │ │ │ ├── test.go │ │ │ │ │ └── test_test.go │ │ │ │ ├── json_formatter.go │ │ │ │ ├── json_formatter_test.go │ │ │ │ ├── logger.go │ │ │ │ ├── logger_bench_test.go │ │ │ │ ├── logrus.go │ │ │ │ ├── logrus_test.go │ │ │ │ ├── terminal_bsd.go │ │ │ │ ├── terminal_linux.go │ │ │ │ ├── text_formatter.go │ │ │ │ ├── text_formatter_test.go │ │ │ │ └── writer.go │ │ └── spf13 │ │ │ └── pflag │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bool.go │ │ │ ├── bool_slice.go │ │ │ ├── bool_slice_test.go │ │ │ ├── bool_test.go │ │ │ ├── count.go │ │ │ ├── count_test.go │ │ │ ├── duration.go │ │ │ ├── example_test.go │ │ │ ├── export_test.go │ │ │ ├── flag.go │ │ │ ├── flag_test.go │ │ │ ├── float32.go │ │ │ ├── float64.go │ │ │ ├── golangflag.go │ │ │ ├── golangflag_test.go │ │ │ ├── int.go │ │ │ ├── int32.go │ │ │ ├── int64.go │ │ │ ├── int8.go │ │ │ ├── int_slice.go │ │ │ ├── int_slice_test.go │ │ │ ├── ip.go │ │ │ ├── ip_slice.go │ │ │ ├── ip_slice_test.go │ │ │ ├── ip_test.go │ │ │ ├── ipmask.go │ │ │ ├── ipnet.go │ │ │ ├── ipnet_test.go │ │ │ ├── string.go │ │ │ ├── string_array.go │ │ │ ├── string_array_test.go │ │ │ ├── string_slice.go │ │ │ ├── string_slice_test.go │ │ │ ├── uint.go │ │ │ ├── uint16.go │ │ │ ├── uint32.go │ │ │ ├── uint64.go │ │ │ ├── uint8.go │ │ │ ├── uint_slice.go │ │ │ ├── uint_slice_test.go │ │ │ └── verify │ │ │ ├── all.sh │ │ │ ├── gofmt.sh │ │ │ └── golint.sh │ └── golang.org │ │ └── x │ │ ├── crypto │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README.md │ │ ├── acme │ │ │ ├── acme.go │ │ │ ├── acme_test.go │ │ │ ├── autocert │ │ │ │ ├── autocert.go │ │ │ │ ├── autocert_test.go │ │ │ │ ├── cache.go │ │ │ │ ├── cache_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── listener.go │ │ │ │ ├── renewal.go │ │ │ │ └── renewal_test.go │ │ │ ├── jws.go │ │ │ ├── jws_test.go │ │ │ ├── types.go │ │ │ └── types_test.go │ │ ├── bcrypt │ │ │ ├── base64.go │ │ │ ├── bcrypt.go │ │ │ └── bcrypt_test.go │ │ ├── blake2b │ │ │ ├── blake2b.go │ │ │ ├── blake2bAVX2_amd64.go │ │ │ ├── blake2bAVX2_amd64.s │ │ │ ├── blake2b_amd64.go │ │ │ ├── blake2b_amd64.s │ │ │ ├── blake2b_generic.go │ │ │ ├── blake2b_ref.go │ │ │ ├── blake2b_test.go │ │ │ ├── blake2x.go │ │ │ └── register.go │ │ ├── blake2s │ │ │ ├── blake2s.go │ │ │ ├── blake2s_386.go │ │ │ ├── blake2s_386.s │ │ │ ├── blake2s_amd64.go │ │ │ ├── blake2s_amd64.s │ │ │ ├── blake2s_generic.go │ │ │ ├── blake2s_ref.go │ │ │ ├── blake2s_test.go │ │ │ ├── blake2x.go │ │ │ └── register.go │ │ ├── blowfish │ │ │ ├── block.go │ │ │ ├── blowfish_test.go │ │ │ ├── cipher.go │ │ │ └── const.go │ │ ├── bn256 │ │ │ ├── bn256.go │ │ │ ├── bn256_test.go │ │ │ ├── constants.go │ │ │ ├── curve.go │ │ │ ├── example_test.go │ │ │ ├── gfp12.go │ │ │ ├── gfp2.go │ │ │ ├── gfp6.go │ │ │ ├── optate.go │ │ │ └── twist.go │ │ ├── cast5 │ │ │ ├── cast5.go │ │ │ └── cast5_test.go │ │ ├── chacha20poly1305 │ │ │ ├── chacha20poly1305.go │ │ │ ├── chacha20poly1305_amd64.go │ │ │ ├── chacha20poly1305_amd64.s │ │ │ ├── chacha20poly1305_generic.go │ │ │ ├── chacha20poly1305_noasm.go │ │ │ ├── chacha20poly1305_test.go │ │ │ ├── chacha20poly1305_vectors_test.go │ │ │ └── internal │ │ │ │ └── chacha20 │ │ │ │ ├── chacha_generic.go │ │ │ │ └── chacha_test.go │ │ ├── codereview.cfg │ │ ├── cryptobyte │ │ │ ├── asn1.go │ │ │ ├── asn1_test.go │ │ │ ├── builder.go │ │ │ ├── cryptobyte_test.go │ │ │ ├── example_test.go │ │ │ └── string.go │ │ ├── curve25519 │ │ │ ├── const_amd64.h │ │ │ ├── const_amd64.s │ │ │ ├── cswap_amd64.s │ │ │ ├── curve25519.go │ │ │ ├── curve25519_test.go │ │ │ ├── doc.go │ │ │ ├── freeze_amd64.s │ │ │ ├── ladderstep_amd64.s │ │ │ ├── mont25519_amd64.go │ │ │ ├── mul_amd64.s │ │ │ └── square_amd64.s │ │ ├── ed25519 │ │ │ ├── ed25519.go │ │ │ ├── ed25519_test.go │ │ │ ├── internal │ │ │ │ └── edwards25519 │ │ │ │ │ ├── const.go │ │ │ │ │ └── edwards25519.go │ │ │ └── testdata │ │ │ │ └── sign.input.gz │ │ ├── hkdf │ │ │ ├── example_test.go │ │ │ ├── hkdf.go │ │ │ └── hkdf_test.go │ │ ├── md4 │ │ │ ├── example_test.go │ │ │ ├── md4.go │ │ │ ├── md4_test.go │ │ │ └── md4block.go │ │ ├── nacl │ │ │ ├── auth │ │ │ │ ├── auth.go │ │ │ │ ├── auth_test.go │ │ │ │ └── example_test.go │ │ │ ├── box │ │ │ │ ├── box.go │ │ │ │ ├── box_test.go │ │ │ │ └── example_test.go │ │ │ └── secretbox │ │ │ │ ├── example_test.go │ │ │ │ ├── secretbox.go │ │ │ │ └── secretbox_test.go │ │ ├── ocsp │ │ │ ├── ocsp.go │ │ │ └── ocsp_test.go │ │ ├── openpgp │ │ │ ├── armor │ │ │ │ ├── armor.go │ │ │ │ ├── armor_test.go │ │ │ │ └── encode.go │ │ │ ├── canonical_text.go │ │ │ ├── canonical_text_test.go │ │ │ ├── clearsign │ │ │ │ ├── clearsign.go │ │ │ │ └── clearsign_test.go │ │ │ ├── elgamal │ │ │ │ ├── elgamal.go │ │ │ │ └── elgamal_test.go │ │ │ ├── errors │ │ │ │ └── errors.go │ │ │ ├── keys.go │ │ │ ├── keys_test.go │ │ │ ├── packet │ │ │ │ ├── compressed.go │ │ │ │ ├── compressed_test.go │ │ │ │ ├── config.go │ │ │ │ ├── encrypted_key.go │ │ │ │ ├── encrypted_key_test.go │ │ │ │ ├── literal.go │ │ │ │ ├── ocfb.go │ │ │ │ ├── ocfb_test.go │ │ │ │ ├── one_pass_signature.go │ │ │ │ ├── opaque.go │ │ │ │ ├── opaque_test.go │ │ │ │ ├── packet.go │ │ │ │ ├── packet_test.go │ │ │ │ ├── private_key.go │ │ │ │ ├── private_key_test.go │ │ │ │ ├── public_key.go │ │ │ │ ├── public_key_test.go │ │ │ │ ├── public_key_v3.go │ │ │ │ ├── public_key_v3_test.go │ │ │ │ ├── reader.go │ │ │ │ ├── signature.go │ │ │ │ ├── signature_test.go │ │ │ │ ├── signature_v3.go │ │ │ │ ├── signature_v3_test.go │ │ │ │ ├── symmetric_key_encrypted.go │ │ │ │ ├── symmetric_key_encrypted_test.go │ │ │ │ ├── symmetrically_encrypted.go │ │ │ │ ├── symmetrically_encrypted_test.go │ │ │ │ ├── userattribute.go │ │ │ │ ├── userattribute_test.go │ │ │ │ ├── userid.go │ │ │ │ └── userid_test.go │ │ │ ├── read.go │ │ │ ├── read_test.go │ │ │ ├── s2k │ │ │ │ ├── s2k.go │ │ │ │ └── s2k_test.go │ │ │ ├── write.go │ │ │ └── write_test.go │ │ ├── otr │ │ │ ├── libotr_test_helper.c │ │ │ ├── otr.go │ │ │ ├── otr_test.go │ │ │ └── smp.go │ │ ├── pbkdf2 │ │ │ ├── pbkdf2.go │ │ │ └── pbkdf2_test.go │ │ ├── pkcs12 │ │ │ ├── bmp-string.go │ │ │ ├── bmp-string_test.go │ │ │ ├── crypto.go │ │ │ ├── crypto_test.go │ │ │ ├── errors.go │ │ │ ├── internal │ │ │ │ └── rc2 │ │ │ │ │ ├── bench_test.go │ │ │ │ │ ├── rc2.go │ │ │ │ │ └── rc2_test.go │ │ │ ├── mac.go │ │ │ ├── mac_test.go │ │ │ ├── pbkdf.go │ │ │ ├── pbkdf_test.go │ │ │ ├── pkcs12.go │ │ │ ├── pkcs12_test.go │ │ │ └── safebags.go │ │ ├── poly1305 │ │ │ ├── poly1305.go │ │ │ ├── poly1305_test.go │ │ │ ├── sum_amd64.go │ │ │ ├── sum_amd64.s │ │ │ ├── sum_arm.go │ │ │ ├── sum_arm.s │ │ │ └── sum_ref.go │ │ ├── ripemd160 │ │ │ ├── ripemd160.go │ │ │ ├── ripemd160_test.go │ │ │ └── ripemd160block.go │ │ ├── salsa20 │ │ │ ├── salsa │ │ │ │ ├── hsalsa20.go │ │ │ │ ├── salsa2020_amd64.s │ │ │ │ ├── salsa208.go │ │ │ │ ├── salsa20_amd64.go │ │ │ │ ├── salsa20_ref.go │ │ │ │ └── salsa_test.go │ │ │ ├── salsa20.go │ │ │ └── salsa20_test.go │ │ ├── scrypt │ │ │ ├── scrypt.go │ │ │ └── scrypt_test.go │ │ ├── sha3 │ │ │ ├── doc.go │ │ │ ├── hashes.go │ │ │ ├── keccakf.go │ │ │ ├── keccakf_amd64.go │ │ │ ├── keccakf_amd64.s │ │ │ ├── register.go │ │ │ ├── sha3.go │ │ │ ├── sha3_test.go │ │ │ ├── shake.go │ │ │ ├── testdata │ │ │ │ └── keccakKats.json.deflate │ │ │ ├── xor.go │ │ │ ├── xor_generic.go │ │ │ └── xor_unaligned.go │ │ ├── ssh │ │ │ ├── agent │ │ │ │ ├── client.go │ │ │ │ ├── client_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── forward.go │ │ │ │ ├── keyring.go │ │ │ │ ├── keyring_test.go │ │ │ │ ├── server.go │ │ │ │ ├── server_test.go │ │ │ │ └── testdata_test.go │ │ │ ├── benchmark_test.go │ │ │ ├── buffer.go │ │ │ ├── buffer_test.go │ │ │ ├── certs.go │ │ │ ├── certs_test.go │ │ │ ├── channel.go │ │ │ ├── cipher.go │ │ │ ├── cipher_test.go │ │ │ ├── client.go │ │ │ ├── client_auth.go │ │ │ ├── client_auth_test.go │ │ │ ├── client_test.go │ │ │ ├── common.go │ │ │ ├── connection.go │ │ │ ├── doc.go │ │ │ ├── example_test.go │ │ │ ├── handshake.go │ │ │ ├── handshake_test.go │ │ │ ├── kex.go │ │ │ ├── kex_test.go │ │ │ ├── keys.go │ │ │ ├── keys_test.go │ │ │ ├── knownhosts │ │ │ │ ├── knownhosts.go │ │ │ │ └── knownhosts_test.go │ │ │ ├── mac.go │ │ │ ├── mempipe_test.go │ │ │ ├── messages.go │ │ │ ├── messages_test.go │ │ │ ├── mux.go │ │ │ ├── mux_test.go │ │ │ ├── server.go │ │ │ ├── session.go │ │ │ ├── session_test.go │ │ │ ├── streamlocal.go │ │ │ ├── tcpip.go │ │ │ ├── tcpip_test.go │ │ │ ├── terminal │ │ │ │ ├── terminal.go │ │ │ │ ├── terminal_test.go │ │ │ │ ├── util.go │ │ │ │ ├── util_bsd.go │ │ │ │ ├── util_linux.go │ │ │ │ ├── util_plan9.go │ │ │ │ ├── util_solaris.go │ │ │ │ └── util_windows.go │ │ │ ├── test │ │ │ │ ├── agent_unix_test.go │ │ │ │ ├── cert_test.go │ │ │ │ ├── dial_unix_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── forward_unix_test.go │ │ │ │ ├── session_test.go │ │ │ │ ├── test_unix_test.go │ │ │ │ └── testdata_test.go │ │ │ ├── testdata │ │ │ │ ├── doc.go │ │ │ │ └── keys.go │ │ │ ├── testdata_test.go │ │ │ ├── transport.go │ │ │ └── transport_test.go │ │ ├── tea │ │ │ ├── cipher.go │ │ │ └── tea_test.go │ │ ├── twofish │ │ │ ├── twofish.go │ │ │ └── twofish_test.go │ │ ├── xtea │ │ │ ├── block.go │ │ │ ├── cipher.go │ │ │ └── xtea_test.go │ │ └── xts │ │ │ ├── xts.go │ │ │ └── xts_test.go │ │ └── sys │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README │ │ ├── codereview.cfg │ │ ├── plan9 │ │ ├── asm.s │ │ ├── asm_plan9_386.s │ │ ├── asm_plan9_amd64.s │ │ ├── const_plan9.go │ │ ├── dir_plan9.go │ │ ├── env_plan9.go │ │ ├── env_unset.go │ │ ├── errors_plan9.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mksyscall.pl │ │ ├── mksysnum_plan9.sh │ │ ├── pwd_go15_plan9.go │ │ ├── pwd_plan9.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_plan9.go │ │ ├── syscall_test.go │ │ ├── zsyscall_plan9_386.go │ │ ├── zsyscall_plan9_amd64.go │ │ └── zsysnum_plan9.go │ │ ├── unix │ │ ├── .gitignore │ │ ├── README.md │ │ ├── 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_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_openbsd_386.s │ │ ├── asm_openbsd_amd64.s │ │ ├── asm_openbsd_arm.s │ │ ├── asm_solaris_amd64.s │ │ ├── bluetooth_linux.go │ │ ├── cap_freebsd.go │ │ ├── constants.go │ │ ├── creds_test.go │ │ ├── dev_linux.go │ │ ├── dev_linux_test.go │ │ ├── dirent.go │ │ ├── endian_big.go │ │ ├── endian_little.go │ │ ├── env_unix.go │ │ ├── env_unset.go │ │ ├── errors_freebsd_386.go │ │ ├── errors_freebsd_amd64.go │ │ ├── errors_freebsd_arm.go │ │ ├── export_test.go │ │ ├── file_unix.go │ │ ├── flock.go │ │ ├── flock_linux_32bit.go │ │ ├── gccgo.go │ │ ├── gccgo_c.c │ │ ├── gccgo_linux_amd64.go │ │ ├── gccgo_linux_sparc64.go │ │ ├── linux │ │ │ ├── Dockerfile │ │ │ ├── mkall.go │ │ │ ├── mksysnum.pl │ │ │ └── types.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mkpost.go │ │ ├── mksyscall.pl │ │ ├── mksyscall_solaris.pl │ │ ├── mksysctl_openbsd.pl │ │ ├── mksysnum_darwin.pl │ │ ├── mksysnum_dragonfly.pl │ │ ├── mksysnum_freebsd.pl │ │ ├── mksysnum_netbsd.pl │ │ ├── mksysnum_openbsd.pl │ │ ├── mmap_unix_test.go │ │ ├── openbsd_pledge.go │ │ ├── openbsd_test.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── sockcmsg_linux.go │ │ ├── sockcmsg_unix.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_bsd.go │ │ ├── syscall_bsd_test.go │ │ ├── syscall_darwin.go │ │ ├── syscall_darwin_386.go │ │ ├── syscall_darwin_amd64.go │ │ ├── syscall_darwin_arm.go │ │ ├── syscall_darwin_arm64.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_test.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_mips64x.go │ │ ├── syscall_linux_mipsx.go │ │ ├── syscall_linux_ppc64x.go │ │ ├── syscall_linux_s390x.go │ │ ├── syscall_linux_sparc64.go │ │ ├── syscall_linux_test.go │ │ ├── syscall_netbsd.go │ │ ├── syscall_netbsd_386.go │ │ ├── syscall_netbsd_amd64.go │ │ ├── syscall_netbsd_arm.go │ │ ├── syscall_no_getwd.go │ │ ├── syscall_openbsd.go │ │ ├── syscall_openbsd_386.go │ │ ├── syscall_openbsd_amd64.go │ │ ├── syscall_openbsd_arm.go │ │ ├── syscall_solaris.go │ │ ├── syscall_solaris_amd64.go │ │ ├── syscall_solaris_test.go │ │ ├── syscall_test.go │ │ ├── syscall_unix.go │ │ ├── syscall_unix_gc.go │ │ ├── syscall_unix_test.go │ │ ├── types_darwin.go │ │ ├── types_dragonfly.go │ │ ├── types_freebsd.go │ │ ├── types_netbsd.go │ │ ├── types_openbsd.go │ │ ├── types_solaris.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_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_s390x.go │ │ ├── zerrors_linux_sparc64.go │ │ ├── zerrors_netbsd_386.go │ │ ├── zerrors_netbsd_amd64.go │ │ ├── zerrors_netbsd_arm.go │ │ ├── zerrors_openbsd_386.go │ │ ├── zerrors_openbsd_amd64.go │ │ ├── zerrors_openbsd_arm.go │ │ ├── zerrors_solaris_amd64.go │ │ ├── zsyscall_darwin_386.go │ │ ├── zsyscall_darwin_amd64.go │ │ ├── zsyscall_darwin_arm.go │ │ ├── zsyscall_darwin_arm64.go │ │ ├── zsyscall_dragonfly_amd64.go │ │ ├── zsyscall_freebsd_386.go │ │ ├── zsyscall_freebsd_amd64.go │ │ ├── zsyscall_freebsd_arm.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_s390x.go │ │ ├── zsyscall_linux_sparc64.go │ │ ├── zsyscall_netbsd_386.go │ │ ├── zsyscall_netbsd_amd64.go │ │ ├── zsyscall_netbsd_arm.go │ │ ├── zsyscall_openbsd_386.go │ │ ├── zsyscall_openbsd_amd64.go │ │ ├── zsyscall_openbsd_arm.go │ │ ├── zsyscall_solaris_amd64.go │ │ ├── zsysctl_openbsd.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_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_s390x.go │ │ ├── zsysnum_linux_sparc64.go │ │ ├── zsysnum_netbsd_386.go │ │ ├── zsysnum_netbsd_amd64.go │ │ ├── zsysnum_netbsd_arm.go │ │ ├── zsysnum_openbsd_386.go │ │ ├── zsysnum_openbsd_amd64.go │ │ ├── zsysnum_openbsd_arm.go │ │ ├── zsysnum_solaris_amd64.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_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_s390x.go │ │ ├── ztypes_linux_sparc64.go │ │ ├── ztypes_netbsd_386.go │ │ ├── ztypes_netbsd_amd64.go │ │ ├── ztypes_netbsd_arm.go │ │ ├── ztypes_openbsd_386.go │ │ ├── ztypes_openbsd_amd64.go │ │ ├── ztypes_openbsd_arm.go │ │ └── ztypes_solaris_amd64.go │ │ └── windows │ │ ├── asm_windows_386.s │ │ ├── asm_windows_amd64.s │ │ ├── dll_windows.go │ │ ├── env_unset.go │ │ ├── env_windows.go │ │ ├── eventlog.go │ │ ├── exec_windows.go │ │ ├── memory_windows.go │ │ ├── mksyscall.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── registry │ │ ├── export_test.go │ │ ├── key.go │ │ ├── mksyscall.go │ │ ├── registry_test.go │ │ ├── syscall.go │ │ ├── value.go │ │ └── zsyscall_windows.go │ │ ├── security_windows.go │ │ ├── service.go │ │ ├── str.go │ │ ├── svc │ │ ├── debug │ │ │ ├── log.go │ │ │ └── service.go │ │ ├── event.go │ │ ├── eventlog │ │ │ ├── install.go │ │ │ ├── log.go │ │ │ └── log_test.go │ │ ├── example │ │ │ ├── beep.go │ │ │ ├── install.go │ │ │ ├── main.go │ │ │ ├── manage.go │ │ │ └── service.go │ │ ├── go12.c │ │ ├── go12.go │ │ ├── go13.go │ │ ├── mgr │ │ │ ├── config.go │ │ │ ├── mgr.go │ │ │ ├── mgr_test.go │ │ │ └── service.go │ │ ├── security.go │ │ ├── service.go │ │ ├── svc_test.go │ │ ├── sys_386.s │ │ └── sys_amd64.s │ │ ├── syscall.go │ │ ├── syscall_test.go │ │ ├── syscall_windows.go │ │ ├── syscall_windows_test.go │ │ ├── types_windows.go │ │ ├── types_windows_386.go │ │ ├── types_windows_amd64.go │ │ └── zsyscall_windows.go ├── go.mod ├── go.sum ├── godep-vendor │ ├── github.com │ │ ├── golang │ │ │ └── glog │ │ │ │ ├── LICENSE │ │ │ │ ├── README │ │ │ │ ├── glog.go │ │ │ │ └── glog_file.go │ │ ├── sirupsen │ │ │ └── logrus │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── alt_exit.go │ │ │ │ ├── appveyor.yml │ │ │ │ ├── doc.go │ │ │ │ ├── entry.go │ │ │ │ ├── exported.go │ │ │ │ ├── formatter.go │ │ │ │ ├── hooks.go │ │ │ │ ├── json_formatter.go │ │ │ │ ├── logger.go │ │ │ │ ├── logrus.go │ │ │ │ ├── terminal_bsd.go │ │ │ │ ├── terminal_linux.go │ │ │ │ ├── text_formatter.go │ │ │ │ └── writer.go │ │ └── spf13 │ │ │ └── pflag │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bool.go │ │ │ ├── bool_slice.go │ │ │ ├── count.go │ │ │ ├── duration.go │ │ │ ├── flag.go │ │ │ ├── float32.go │ │ │ ├── float64.go │ │ │ ├── golangflag.go │ │ │ ├── int.go │ │ │ ├── int32.go │ │ │ ├── int64.go │ │ │ ├── int8.go │ │ │ ├── int_slice.go │ │ │ ├── ip.go │ │ │ ├── ip_slice.go │ │ │ ├── ipmask.go │ │ │ ├── ipnet.go │ │ │ ├── string.go │ │ │ ├── string_array.go │ │ │ ├── string_slice.go │ │ │ ├── uint.go │ │ │ ├── uint16.go │ │ │ ├── uint32.go │ │ │ ├── uint64.go │ │ │ ├── uint8.go │ │ │ └── uint_slice.go │ └── golang.org │ │ └── x │ │ ├── crypto │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── ssh │ │ │ └── terminal │ │ │ ├── terminal.go │ │ │ ├── util.go │ │ │ ├── util_bsd.go │ │ │ ├── util_linux.go │ │ │ ├── util_plan9.go │ │ │ ├── util_solaris.go │ │ │ └── util_windows.go │ │ └── sys │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── unix │ │ ├── .gitignore │ │ ├── README.md │ │ ├── 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_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_openbsd_386.s │ │ ├── asm_openbsd_amd64.s │ │ ├── asm_openbsd_arm.s │ │ ├── asm_solaris_amd64.s │ │ ├── bluetooth_linux.go │ │ ├── cap_freebsd.go │ │ ├── constants.go │ │ ├── dev_linux.go │ │ ├── dirent.go │ │ ├── endian_big.go │ │ ├── endian_little.go │ │ ├── env_unix.go │ │ ├── env_unset.go │ │ ├── errors_freebsd_386.go │ │ ├── errors_freebsd_amd64.go │ │ ├── errors_freebsd_arm.go │ │ ├── file_unix.go │ │ ├── flock.go │ │ ├── flock_linux_32bit.go │ │ ├── gccgo.go │ │ ├── gccgo_c.c │ │ ├── gccgo_linux_amd64.go │ │ ├── gccgo_linux_sparc64.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mkpost.go │ │ ├── mksyscall.pl │ │ ├── mksyscall_solaris.pl │ │ ├── mksysctl_openbsd.pl │ │ ├── mksysnum_darwin.pl │ │ ├── mksysnum_dragonfly.pl │ │ ├── mksysnum_freebsd.pl │ │ ├── mksysnum_netbsd.pl │ │ ├── mksysnum_openbsd.pl │ │ ├── openbsd_pledge.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── sockcmsg_linux.go │ │ ├── sockcmsg_unix.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_bsd.go │ │ ├── syscall_darwin.go │ │ ├── syscall_darwin_386.go │ │ ├── syscall_darwin_amd64.go │ │ ├── syscall_darwin_arm.go │ │ ├── syscall_darwin_arm64.go │ │ ├── syscall_dragonfly.go │ │ ├── syscall_dragonfly_amd64.go │ │ ├── syscall_freebsd.go │ │ ├── syscall_freebsd_386.go │ │ ├── syscall_freebsd_amd64.go │ │ ├── syscall_freebsd_arm.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_mips64x.go │ │ ├── syscall_linux_mipsx.go │ │ ├── syscall_linux_ppc64x.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_no_getwd.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 │ │ ├── types_darwin.go │ │ ├── types_dragonfly.go │ │ ├── types_freebsd.go │ │ ├── types_netbsd.go │ │ ├── types_openbsd.go │ │ ├── types_solaris.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_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_s390x.go │ │ ├── zerrors_linux_sparc64.go │ │ ├── zerrors_netbsd_386.go │ │ ├── zerrors_netbsd_amd64.go │ │ ├── zerrors_netbsd_arm.go │ │ ├── zerrors_openbsd_386.go │ │ ├── zerrors_openbsd_amd64.go │ │ ├── zerrors_openbsd_arm.go │ │ ├── zerrors_solaris_amd64.go │ │ ├── zsyscall_darwin_386.go │ │ ├── zsyscall_darwin_amd64.go │ │ ├── zsyscall_darwin_arm.go │ │ ├── zsyscall_darwin_arm64.go │ │ ├── zsyscall_dragonfly_amd64.go │ │ ├── zsyscall_freebsd_386.go │ │ ├── zsyscall_freebsd_amd64.go │ │ ├── zsyscall_freebsd_arm.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_s390x.go │ │ ├── zsyscall_linux_sparc64.go │ │ ├── zsyscall_netbsd_386.go │ │ ├── zsyscall_netbsd_amd64.go │ │ ├── zsyscall_netbsd_arm.go │ │ ├── zsyscall_openbsd_386.go │ │ ├── zsyscall_openbsd_amd64.go │ │ ├── zsyscall_openbsd_arm.go │ │ ├── zsyscall_solaris_amd64.go │ │ ├── zsysctl_openbsd.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_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_s390x.go │ │ ├── zsysnum_linux_sparc64.go │ │ ├── zsysnum_netbsd_386.go │ │ ├── zsysnum_netbsd_amd64.go │ │ ├── zsysnum_netbsd_arm.go │ │ ├── zsysnum_openbsd_386.go │ │ ├── zsysnum_openbsd_amd64.go │ │ ├── zsysnum_openbsd_arm.go │ │ ├── zsysnum_solaris_amd64.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_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_s390x.go │ │ ├── ztypes_linux_sparc64.go │ │ ├── ztypes_netbsd_386.go │ │ ├── ztypes_netbsd_amd64.go │ │ ├── ztypes_netbsd_arm.go │ │ ├── ztypes_openbsd_386.go │ │ ├── ztypes_openbsd_amd64.go │ │ ├── ztypes_openbsd_arm.go │ │ └── ztypes_solaris_amd64.go │ │ └── windows │ │ ├── asm_windows_386.s │ │ ├── asm_windows_amd64.s │ │ ├── dll_windows.go │ │ ├── env_unset.go │ │ ├── env_windows.go │ │ ├── eventlog.go │ │ ├── exec_windows.go │ │ ├── memory_windows.go │ │ ├── mksyscall.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── security_windows.go │ │ ├── service.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_windows.go │ │ ├── types_windows.go │ │ ├── types_windows_386.go │ │ ├── types_windows_amd64.go │ │ └── zsyscall_windows.go ├── govendor-vendor │ ├── github.com │ │ ├── sirupsen │ │ │ └── logrus │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── alt_exit.go │ │ │ │ ├── appveyor.yml │ │ │ │ ├── doc.go │ │ │ │ ├── entry.go │ │ │ │ ├── exported.go │ │ │ │ ├── formatter.go │ │ │ │ ├── hooks.go │ │ │ │ ├── json_formatter.go │ │ │ │ ├── logger.go │ │ │ │ ├── logrus.go │ │ │ │ ├── terminal_bsd.go │ │ │ │ ├── terminal_linux.go │ │ │ │ ├── text_formatter.go │ │ │ │ └── writer.go │ │ └── spf13 │ │ │ └── pflag │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bool.go │ │ │ ├── bool_slice.go │ │ │ ├── count.go │ │ │ ├── duration.go │ │ │ ├── flag.go │ │ │ ├── float32.go │ │ │ ├── float64.go │ │ │ ├── golangflag.go │ │ │ ├── int.go │ │ │ ├── int32.go │ │ │ ├── int64.go │ │ │ ├── int8.go │ │ │ ├── int_slice.go │ │ │ ├── ip.go │ │ │ ├── ip_slice.go │ │ │ ├── ipmask.go │ │ │ ├── ipnet.go │ │ │ ├── string.go │ │ │ ├── string_array.go │ │ │ ├── string_slice.go │ │ │ ├── uint.go │ │ │ ├── uint16.go │ │ │ ├── uint32.go │ │ │ ├── uint64.go │ │ │ ├── uint8.go │ │ │ └── uint_slice.go │ ├── golang.org │ │ └── x │ │ │ ├── crypto │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ └── ssh │ │ │ │ └── terminal │ │ │ │ ├── terminal.go │ │ │ │ ├── util.go │ │ │ │ ├── util_bsd.go │ │ │ │ ├── util_linux.go │ │ │ │ ├── util_plan9.go │ │ │ │ ├── util_solaris.go │ │ │ │ └── util_windows.go │ │ │ └── sys │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── unix │ │ │ ├── README.md │ │ │ ├── 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_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_openbsd_386.s │ │ │ ├── asm_openbsd_amd64.s │ │ │ ├── asm_openbsd_arm.s │ │ │ ├── asm_solaris_amd64.s │ │ │ ├── bluetooth_linux.go │ │ │ ├── cap_freebsd.go │ │ │ ├── constants.go │ │ │ ├── dev_linux.go │ │ │ ├── dirent.go │ │ │ ├── endian_big.go │ │ │ ├── endian_little.go │ │ │ ├── env_unix.go │ │ │ ├── env_unset.go │ │ │ ├── errors_freebsd_386.go │ │ │ ├── errors_freebsd_amd64.go │ │ │ ├── errors_freebsd_arm.go │ │ │ ├── file_unix.go │ │ │ ├── flock.go │ │ │ ├── flock_linux_32bit.go │ │ │ ├── gccgo.go │ │ │ ├── gccgo_c.c │ │ │ ├── gccgo_linux_amd64.go │ │ │ ├── gccgo_linux_sparc64.go │ │ │ ├── mkall.sh │ │ │ ├── mkerrors.sh │ │ │ ├── mkpost.go │ │ │ ├── mksyscall.pl │ │ │ ├── mksyscall_solaris.pl │ │ │ ├── mksysctl_openbsd.pl │ │ │ ├── mksysnum_darwin.pl │ │ │ ├── mksysnum_dragonfly.pl │ │ │ ├── mksysnum_freebsd.pl │ │ │ ├── mksysnum_netbsd.pl │ │ │ ├── mksysnum_openbsd.pl │ │ │ ├── openbsd_pledge.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── sockcmsg_linux.go │ │ │ ├── sockcmsg_unix.go │ │ │ ├── str.go │ │ │ ├── syscall.go │ │ │ ├── syscall_bsd.go │ │ │ ├── syscall_darwin.go │ │ │ ├── syscall_darwin_386.go │ │ │ ├── syscall_darwin_amd64.go │ │ │ ├── syscall_darwin_arm.go │ │ │ ├── syscall_darwin_arm64.go │ │ │ ├── syscall_dragonfly.go │ │ │ ├── syscall_dragonfly_amd64.go │ │ │ ├── syscall_freebsd.go │ │ │ ├── syscall_freebsd_386.go │ │ │ ├── syscall_freebsd_amd64.go │ │ │ ├── syscall_freebsd_arm.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_mips64x.go │ │ │ ├── syscall_linux_mipsx.go │ │ │ ├── syscall_linux_ppc64x.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_no_getwd.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 │ │ │ ├── types_darwin.go │ │ │ ├── types_dragonfly.go │ │ │ ├── types_freebsd.go │ │ │ ├── types_netbsd.go │ │ │ ├── types_openbsd.go │ │ │ ├── types_solaris.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_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_s390x.go │ │ │ ├── zerrors_linux_sparc64.go │ │ │ ├── zerrors_netbsd_386.go │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ ├── zerrors_netbsd_arm.go │ │ │ ├── zerrors_openbsd_386.go │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ ├── zerrors_openbsd_arm.go │ │ │ ├── zerrors_solaris_amd64.go │ │ │ ├── zsyscall_darwin_386.go │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ ├── zsyscall_darwin_arm.go │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ ├── zsyscall_dragonfly_amd64.go │ │ │ ├── zsyscall_freebsd_386.go │ │ │ ├── zsyscall_freebsd_amd64.go │ │ │ ├── zsyscall_freebsd_arm.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_s390x.go │ │ │ ├── zsyscall_linux_sparc64.go │ │ │ ├── zsyscall_netbsd_386.go │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ ├── zsyscall_openbsd_386.go │ │ │ ├── zsyscall_openbsd_amd64.go │ │ │ ├── zsyscall_openbsd_arm.go │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ ├── zsysctl_openbsd.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_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_s390x.go │ │ │ ├── zsysnum_linux_sparc64.go │ │ │ ├── zsysnum_netbsd_386.go │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ ├── zsysnum_openbsd_386.go │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ ├── zsysnum_openbsd_arm.go │ │ │ ├── zsysnum_solaris_amd64.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_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_s390x.go │ │ │ ├── ztypes_linux_sparc64.go │ │ │ ├── ztypes_netbsd_386.go │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ ├── ztypes_netbsd_arm.go │ │ │ ├── ztypes_openbsd_386.go │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ ├── ztypes_openbsd_arm.go │ │ │ └── ztypes_solaris_amd64.go │ │ │ └── windows │ │ │ ├── asm_windows_386.s │ │ │ ├── asm_windows_amd64.s │ │ │ ├── dll_windows.go │ │ │ ├── env_unset.go │ │ │ ├── env_windows.go │ │ │ ├── eventlog.go │ │ │ ├── exec_windows.go │ │ │ ├── memory_windows.go │ │ │ ├── mksyscall.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── security_windows.go │ │ │ ├── service.go │ │ │ ├── str.go │ │ │ ├── syscall.go │ │ │ ├── syscall_windows.go │ │ │ ├── types_windows.go │ │ │ ├── types_windows_386.go │ │ │ ├── types_windows_amd64.go │ │ │ └── zsyscall_windows.go │ └── vendor.json └── mod-vendor │ ├── github.com │ ├── davecgh │ │ └── go-spew │ │ │ ├── LICENSE │ │ │ └── spew │ │ │ ├── bypass.go │ │ │ ├── bypasssafe.go │ │ │ ├── common.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── dump.go │ │ │ ├── format.go │ │ │ └── spew.go │ ├── pmezard │ │ └── go-difflib │ │ │ ├── LICENSE │ │ │ └── difflib │ │ │ └── difflib.go │ ├── sirupsen │ │ └── logrus │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── alt_exit.go │ │ │ ├── appveyor.yml │ │ │ ├── doc.go │ │ │ ├── entry.go │ │ │ ├── exported.go │ │ │ ├── formatter.go │ │ │ ├── hooks.go │ │ │ ├── json_formatter.go │ │ │ ├── logger.go │ │ │ ├── logrus.go │ │ │ ├── terminal_bsd.go │ │ │ ├── terminal_linux.go │ │ │ ├── text_formatter.go │ │ │ └── writer.go │ ├── spf13 │ │ └── pflag │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bool.go │ │ │ ├── bool_slice.go │ │ │ ├── count.go │ │ │ ├── duration.go │ │ │ ├── flag.go │ │ │ ├── float32.go │ │ │ ├── float64.go │ │ │ ├── golangflag.go │ │ │ ├── int.go │ │ │ ├── int32.go │ │ │ ├── int64.go │ │ │ ├── int8.go │ │ │ ├── int_slice.go │ │ │ ├── ip.go │ │ │ ├── ip_slice.go │ │ │ ├── ipmask.go │ │ │ ├── ipnet.go │ │ │ ├── string.go │ │ │ ├── string_array.go │ │ │ ├── string_slice.go │ │ │ ├── uint.go │ │ │ ├── uint16.go │ │ │ ├── uint32.go │ │ │ ├── uint64.go │ │ │ ├── uint8.go │ │ │ └── uint_slice.go │ └── stretchr │ │ └── testify │ │ ├── LICENSE │ │ └── assert │ │ ├── assertion_format.go │ │ ├── assertion_format.go.tmpl │ │ ├── assertion_forward.go │ │ ├── assertion_forward.go.tmpl │ │ ├── assertion_order.go │ │ ├── assertions.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── forward_assertions.go │ │ └── http_assertions.go │ ├── golang.org │ └── x │ │ ├── crypto │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── acme │ │ │ ├── acme.go │ │ │ ├── autocert │ │ │ │ ├── autocert.go │ │ │ │ ├── cache.go │ │ │ │ ├── listener.go │ │ │ │ └── renewal.go │ │ │ ├── jws.go │ │ │ └── types.go │ │ ├── blowfish │ │ │ ├── block.go │ │ │ ├── cipher.go │ │ │ └── const.go │ │ ├── cast5 │ │ │ └── cast5.go │ │ ├── chacha20poly1305 │ │ │ └── internal │ │ │ │ └── chacha20 │ │ │ │ └── chacha_generic.go │ │ ├── cryptobyte │ │ │ ├── asn1.go │ │ │ ├── builder.go │ │ │ └── string.go │ │ ├── curve25519 │ │ │ ├── const_amd64.h │ │ │ ├── const_amd64.s │ │ │ ├── cswap_amd64.s │ │ │ ├── curve25519.go │ │ │ ├── doc.go │ │ │ ├── freeze_amd64.s │ │ │ ├── ladderstep_amd64.s │ │ │ ├── mont25519_amd64.go │ │ │ ├── mul_amd64.s │ │ │ └── square_amd64.s │ │ ├── ed25519 │ │ │ ├── ed25519.go │ │ │ └── internal │ │ │ │ └── edwards25519 │ │ │ │ ├── const.go │ │ │ │ └── edwards25519.go │ │ ├── hkdf │ │ │ └── hkdf.go │ │ ├── md4 │ │ │ ├── md4.go │ │ │ └── md4block.go │ │ ├── nacl │ │ │ ├── auth │ │ │ │ └── auth.go │ │ │ ├── box │ │ │ │ └── box.go │ │ │ └── secretbox │ │ │ │ └── secretbox.go │ │ ├── openpgp │ │ │ ├── armor │ │ │ │ ├── armor.go │ │ │ │ └── encode.go │ │ │ ├── canonical_text.go │ │ │ ├── elgamal │ │ │ │ └── elgamal.go │ │ │ ├── errors │ │ │ │ └── errors.go │ │ │ ├── keys.go │ │ │ ├── packet │ │ │ │ ├── compressed.go │ │ │ │ ├── config.go │ │ │ │ ├── encrypted_key.go │ │ │ │ ├── literal.go │ │ │ │ ├── ocfb.go │ │ │ │ ├── one_pass_signature.go │ │ │ │ ├── opaque.go │ │ │ │ ├── packet.go │ │ │ │ ├── private_key.go │ │ │ │ ├── public_key.go │ │ │ │ ├── public_key_v3.go │ │ │ │ ├── reader.go │ │ │ │ ├── signature.go │ │ │ │ ├── signature_v3.go │ │ │ │ ├── symmetric_key_encrypted.go │ │ │ │ ├── symmetrically_encrypted.go │ │ │ │ ├── userattribute.go │ │ │ │ └── userid.go │ │ │ ├── read.go │ │ │ ├── s2k │ │ │ │ └── s2k.go │ │ │ └── write.go │ │ ├── pbkdf2 │ │ │ └── pbkdf2.go │ │ ├── pkcs12 │ │ │ └── internal │ │ │ │ └── rc2 │ │ │ │ └── rc2.go │ │ ├── poly1305 │ │ │ ├── poly1305.go │ │ │ ├── sum_amd64.go │ │ │ ├── sum_amd64.s │ │ │ ├── sum_arm.go │ │ │ ├── sum_arm.s │ │ │ └── sum_ref.go │ │ ├── ripemd160 │ │ │ ├── ripemd160.go │ │ │ └── ripemd160block.go │ │ ├── salsa20 │ │ │ └── salsa │ │ │ │ ├── hsalsa20.go │ │ │ │ ├── salsa2020_amd64.s │ │ │ │ ├── salsa208.go │ │ │ │ ├── salsa20_amd64.go │ │ │ │ └── salsa20_ref.go │ │ └── ssh │ │ │ ├── agent │ │ │ ├── client.go │ │ │ ├── forward.go │ │ │ ├── keyring.go │ │ │ └── server.go │ │ │ ├── buffer.go │ │ │ ├── certs.go │ │ │ ├── channel.go │ │ │ ├── cipher.go │ │ │ ├── client.go │ │ │ ├── client_auth.go │ │ │ ├── common.go │ │ │ ├── connection.go │ │ │ ├── doc.go │ │ │ ├── handshake.go │ │ │ ├── kex.go │ │ │ ├── keys.go │ │ │ ├── mac.go │ │ │ ├── messages.go │ │ │ ├── mux.go │ │ │ ├── server.go │ │ │ ├── session.go │ │ │ ├── streamlocal.go │ │ │ ├── tcpip.go │ │ │ ├── terminal │ │ │ ├── terminal.go │ │ │ ├── util.go │ │ │ ├── util_bsd.go │ │ │ ├── util_linux.go │ │ │ ├── util_plan9.go │ │ │ ├── util_solaris.go │ │ │ └── util_windows.go │ │ │ ├── testdata │ │ │ ├── doc.go │ │ │ └── keys.go │ │ │ └── transport.go │ │ └── sys │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── plan9 │ │ ├── asm.s │ │ ├── asm_plan9_386.s │ │ ├── asm_plan9_amd64.s │ │ ├── asm_plan9_arm.s │ │ ├── const_plan9.go │ │ ├── dir_plan9.go │ │ ├── env_plan9.go │ │ ├── errors_plan9.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mksyscall.go │ │ ├── mksysnum_plan9.sh │ │ ├── pwd_go15_plan9.go │ │ ├── pwd_plan9.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_plan9.go │ │ ├── zsyscall_plan9_386.go │ │ ├── zsyscall_plan9_amd64.go │ │ ├── zsyscall_plan9_arm.go │ │ └── zsysnum_plan9.go │ │ ├── unix │ │ ├── .gitignore │ │ ├── README.md │ │ ├── affinity_linux.go │ │ ├── aliases.go │ │ ├── asm_aix_ppc64.s │ │ ├── asm_darwin_386.s │ │ ├── asm_darwin_amd64.s │ │ ├── asm_darwin_arm.s │ │ ├── asm_darwin_arm64.s │ │ ├── asm_dragonfly_amd64.s │ │ ├── asm_freebsd_386.s │ │ ├── asm_freebsd_amd64.s │ │ ├── asm_freebsd_arm.s │ │ ├── asm_freebsd_arm64.s │ │ ├── asm_linux_386.s │ │ ├── asm_linux_amd64.s │ │ ├── asm_linux_arm.s │ │ ├── asm_linux_arm64.s │ │ ├── asm_linux_mips64x.s │ │ ├── asm_linux_mipsx.s │ │ ├── asm_linux_ppc64x.s │ │ ├── asm_linux_riscv64.s │ │ ├── asm_linux_s390x.s │ │ ├── asm_netbsd_386.s │ │ ├── asm_netbsd_amd64.s │ │ ├── asm_netbsd_arm.s │ │ ├── asm_netbsd_arm64.s │ │ ├── asm_openbsd_386.s │ │ ├── asm_openbsd_amd64.s │ │ ├── asm_openbsd_arm.s │ │ ├── asm_openbsd_arm64.s │ │ ├── asm_solaris_amd64.s │ │ ├── bluetooth_linux.go │ │ ├── cap_freebsd.go │ │ ├── constants.go │ │ ├── dev_aix_ppc.go │ │ ├── dev_aix_ppc64.go │ │ ├── dev_darwin.go │ │ ├── dev_dragonfly.go │ │ ├── dev_freebsd.go │ │ ├── dev_linux.go │ │ ├── dev_netbsd.go │ │ ├── dev_openbsd.go │ │ ├── dirent.go │ │ ├── endian_big.go │ │ ├── endian_little.go │ │ ├── env_unix.go │ │ ├── errors_freebsd_386.go │ │ ├── errors_freebsd_amd64.go │ │ ├── errors_freebsd_arm.go │ │ ├── fcntl.go │ │ ├── fcntl_darwin.go │ │ ├── fcntl_linux_32bit.go │ │ ├── fdset.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.go │ │ ├── mksysnum.go │ │ ├── pagesize_unix.go │ │ ├── pledge_openbsd.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── readdirent_getdents.go │ │ ├── readdirent_getdirentries.go │ │ ├── sockcmsg_dragonfly.go │ │ ├── sockcmsg_linux.go │ │ ├── sockcmsg_unix.go │ │ ├── sockcmsg_unix_other.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_aix.go │ │ ├── syscall_aix_ppc.go │ │ ├── syscall_aix_ppc64.go │ │ ├── syscall_bsd.go │ │ ├── syscall_darwin.1_12.go │ │ ├── syscall_darwin.1_13.go │ │ ├── syscall_darwin.go │ │ ├── syscall_darwin_386.1_11.go │ │ ├── syscall_darwin_386.go │ │ ├── syscall_darwin_amd64.1_11.go │ │ ├── syscall_darwin_amd64.go │ │ ├── syscall_darwin_arm.1_11.go │ │ ├── syscall_darwin_arm.go │ │ ├── syscall_darwin_arm64.1_11.go │ │ ├── syscall_darwin_arm64.go │ │ ├── syscall_darwin_libSystem.go │ │ ├── syscall_dragonfly.go │ │ ├── syscall_dragonfly_amd64.go │ │ ├── syscall_freebsd.go │ │ ├── syscall_freebsd_386.go │ │ ├── syscall_freebsd_amd64.go │ │ ├── syscall_freebsd_arm.go │ │ ├── syscall_freebsd_arm64.go │ │ ├── syscall_linux.go │ │ ├── syscall_linux_386.go │ │ ├── syscall_linux_amd64.go │ │ ├── syscall_linux_amd64_gc.go │ │ ├── syscall_linux_arm.go │ │ ├── syscall_linux_arm64.go │ │ ├── syscall_linux_gc.go │ │ ├── syscall_linux_gc_386.go │ │ ├── syscall_linux_gccgo_386.go │ │ ├── syscall_linux_gccgo_arm.go │ │ ├── syscall_linux_mips64x.go │ │ ├── syscall_linux_mipsx.go │ │ ├── syscall_linux_ppc64x.go │ │ ├── syscall_linux_riscv64.go │ │ ├── syscall_linux_s390x.go │ │ ├── syscall_linux_sparc64.go │ │ ├── syscall_netbsd.go │ │ ├── syscall_netbsd_386.go │ │ ├── syscall_netbsd_amd64.go │ │ ├── syscall_netbsd_arm.go │ │ ├── syscall_netbsd_arm64.go │ │ ├── syscall_openbsd.go │ │ ├── syscall_openbsd_386.go │ │ ├── syscall_openbsd_amd64.go │ │ ├── syscall_openbsd_arm.go │ │ ├── syscall_openbsd_arm64.go │ │ ├── syscall_solaris.go │ │ ├── syscall_solaris_amd64.go │ │ ├── syscall_unix.go │ │ ├── syscall_unix_gc.go │ │ ├── syscall_unix_gc_ppc64x.go │ │ ├── timestruct.go │ │ ├── types_aix.go │ │ ├── types_darwin.go │ │ ├── types_dragonfly.go │ │ ├── types_freebsd.go │ │ ├── types_netbsd.go │ │ ├── types_openbsd.go │ │ ├── types_solaris.go │ │ ├── unveil_openbsd.go │ │ ├── xattr_bsd.go │ │ ├── zerrors_aix_ppc.go │ │ ├── zerrors_aix_ppc64.go │ │ ├── zerrors_darwin_386.go │ │ ├── zerrors_darwin_amd64.go │ │ ├── zerrors_darwin_arm.go │ │ ├── zerrors_darwin_arm64.go │ │ ├── zerrors_dragonfly_amd64.go │ │ ├── zerrors_freebsd_386.go │ │ ├── zerrors_freebsd_amd64.go │ │ ├── zerrors_freebsd_arm.go │ │ ├── zerrors_freebsd_arm64.go │ │ ├── zerrors_linux_386.go │ │ ├── zerrors_linux_amd64.go │ │ ├── zerrors_linux_arm.go │ │ ├── zerrors_linux_arm64.go │ │ ├── zerrors_linux_mips.go │ │ ├── zerrors_linux_mips64.go │ │ ├── zerrors_linux_mips64le.go │ │ ├── zerrors_linux_mipsle.go │ │ ├── zerrors_linux_ppc64.go │ │ ├── zerrors_linux_ppc64le.go │ │ ├── zerrors_linux_riscv64.go │ │ ├── zerrors_linux_s390x.go │ │ ├── zerrors_linux_sparc64.go │ │ ├── zerrors_netbsd_386.go │ │ ├── zerrors_netbsd_amd64.go │ │ ├── zerrors_netbsd_arm.go │ │ ├── zerrors_netbsd_arm64.go │ │ ├── zerrors_openbsd_386.go │ │ ├── zerrors_openbsd_amd64.go │ │ ├── zerrors_openbsd_arm.go │ │ ├── zerrors_openbsd_arm64.go │ │ ├── zerrors_solaris_amd64.go │ │ ├── zptrace_armnn_linux.go │ │ ├── zptrace_linux_arm64.go │ │ ├── zptrace_mipsnn_linux.go │ │ ├── zptrace_mipsnnle_linux.go │ │ ├── zptrace_x86_linux.go │ │ ├── zsyscall_aix_ppc.go │ │ ├── zsyscall_aix_ppc64.go │ │ ├── zsyscall_aix_ppc64_gc.go │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ ├── zsyscall_darwin_386.1_11.go │ │ ├── zsyscall_darwin_386.1_13.go │ │ ├── zsyscall_darwin_386.1_13.s │ │ ├── zsyscall_darwin_386.go │ │ ├── zsyscall_darwin_386.s │ │ ├── zsyscall_darwin_amd64.1_11.go │ │ ├── zsyscall_darwin_amd64.1_13.go │ │ ├── zsyscall_darwin_amd64.1_13.s │ │ ├── zsyscall_darwin_amd64.go │ │ ├── zsyscall_darwin_amd64.s │ │ ├── zsyscall_darwin_arm.1_11.go │ │ ├── zsyscall_darwin_arm.1_13.go │ │ ├── zsyscall_darwin_arm.1_13.s │ │ ├── zsyscall_darwin_arm.go │ │ ├── zsyscall_darwin_arm.s │ │ ├── zsyscall_darwin_arm64.1_11.go │ │ ├── zsyscall_darwin_arm64.1_13.go │ │ ├── zsyscall_darwin_arm64.1_13.s │ │ ├── zsyscall_darwin_arm64.go │ │ ├── zsyscall_darwin_arm64.s │ │ ├── zsyscall_dragonfly_amd64.go │ │ ├── zsyscall_freebsd_386.go │ │ ├── zsyscall_freebsd_amd64.go │ │ ├── zsyscall_freebsd_arm.go │ │ ├── zsyscall_freebsd_arm64.go │ │ ├── zsyscall_linux_386.go │ │ ├── zsyscall_linux_amd64.go │ │ ├── zsyscall_linux_arm.go │ │ ├── zsyscall_linux_arm64.go │ │ ├── zsyscall_linux_mips.go │ │ ├── zsyscall_linux_mips64.go │ │ ├── zsyscall_linux_mips64le.go │ │ ├── zsyscall_linux_mipsle.go │ │ ├── zsyscall_linux_ppc64.go │ │ ├── zsyscall_linux_ppc64le.go │ │ ├── zsyscall_linux_riscv64.go │ │ ├── zsyscall_linux_s390x.go │ │ ├── zsyscall_linux_sparc64.go │ │ ├── zsyscall_netbsd_386.go │ │ ├── zsyscall_netbsd_amd64.go │ │ ├── zsyscall_netbsd_arm.go │ │ ├── zsyscall_netbsd_arm64.go │ │ ├── zsyscall_openbsd_386.go │ │ ├── zsyscall_openbsd_amd64.go │ │ ├── zsyscall_openbsd_arm.go │ │ ├── zsyscall_openbsd_arm64.go │ │ ├── zsyscall_solaris_amd64.go │ │ ├── zsysctl_openbsd_386.go │ │ ├── zsysctl_openbsd_amd64.go │ │ ├── zsysctl_openbsd_arm.go │ │ ├── zsysctl_openbsd_arm64.go │ │ ├── zsysnum_darwin_386.go │ │ ├── zsysnum_darwin_amd64.go │ │ ├── zsysnum_darwin_arm.go │ │ ├── zsysnum_darwin_arm64.go │ │ ├── zsysnum_dragonfly_amd64.go │ │ ├── zsysnum_freebsd_386.go │ │ ├── zsysnum_freebsd_amd64.go │ │ ├── zsysnum_freebsd_arm.go │ │ ├── zsysnum_freebsd_arm64.go │ │ ├── zsysnum_linux_386.go │ │ ├── zsysnum_linux_amd64.go │ │ ├── zsysnum_linux_arm.go │ │ ├── zsysnum_linux_arm64.go │ │ ├── zsysnum_linux_mips.go │ │ ├── zsysnum_linux_mips64.go │ │ ├── zsysnum_linux_mips64le.go │ │ ├── zsysnum_linux_mipsle.go │ │ ├── zsysnum_linux_ppc64.go │ │ ├── zsysnum_linux_ppc64le.go │ │ ├── zsysnum_linux_riscv64.go │ │ ├── zsysnum_linux_s390x.go │ │ ├── zsysnum_linux_sparc64.go │ │ ├── zsysnum_netbsd_386.go │ │ ├── zsysnum_netbsd_amd64.go │ │ ├── zsysnum_netbsd_arm.go │ │ ├── zsysnum_netbsd_arm64.go │ │ ├── zsysnum_openbsd_386.go │ │ ├── zsysnum_openbsd_amd64.go │ │ ├── zsysnum_openbsd_arm.go │ │ ├── zsysnum_openbsd_arm64.go │ │ ├── ztypes_aix_ppc.go │ │ ├── ztypes_aix_ppc64.go │ │ ├── ztypes_darwin_386.go │ │ ├── ztypes_darwin_amd64.go │ │ ├── ztypes_darwin_arm.go │ │ ├── ztypes_darwin_arm64.go │ │ ├── ztypes_dragonfly_amd64.go │ │ ├── ztypes_freebsd_386.go │ │ ├── ztypes_freebsd_amd64.go │ │ ├── ztypes_freebsd_arm.go │ │ ├── ztypes_freebsd_arm64.go │ │ ├── ztypes_linux_386.go │ │ ├── ztypes_linux_amd64.go │ │ ├── ztypes_linux_arm.go │ │ ├── ztypes_linux_arm64.go │ │ ├── ztypes_linux_mips.go │ │ ├── ztypes_linux_mips64.go │ │ ├── ztypes_linux_mips64le.go │ │ ├── ztypes_linux_mipsle.go │ │ ├── ztypes_linux_ppc64.go │ │ ├── ztypes_linux_ppc64le.go │ │ ├── ztypes_linux_riscv64.go │ │ ├── ztypes_linux_s390x.go │ │ ├── ztypes_linux_sparc64.go │ │ ├── ztypes_netbsd_386.go │ │ ├── ztypes_netbsd_amd64.go │ │ ├── ztypes_netbsd_arm.go │ │ ├── ztypes_netbsd_arm64.go │ │ ├── ztypes_openbsd_386.go │ │ ├── ztypes_openbsd_amd64.go │ │ ├── ztypes_openbsd_arm.go │ │ ├── ztypes_openbsd_arm64.go │ │ └── ztypes_solaris_amd64.go │ │ └── windows │ │ ├── aliases.go │ │ ├── dll_windows.go │ │ ├── empty.s │ │ ├── env_windows.go │ │ ├── eventlog.go │ │ ├── exec_windows.go │ │ ├── memory_windows.go │ │ ├── mkerrors.bash │ │ ├── mkknownfolderids.bash │ │ ├── mksyscall.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── registry │ │ ├── key.go │ │ ├── mksyscall.go │ │ ├── syscall.go │ │ ├── value.go │ │ └── zsyscall_windows.go │ │ ├── security_windows.go │ │ ├── service.go │ │ ├── str.go │ │ ├── svc │ │ ├── debug │ │ │ ├── log.go │ │ │ └── service.go │ │ ├── event.go │ │ ├── eventlog │ │ │ ├── install.go │ │ │ └── log.go │ │ ├── go12.c │ │ ├── go12.go │ │ ├── go13.go │ │ ├── mgr │ │ │ ├── config.go │ │ │ ├── mgr.go │ │ │ ├── recovery.go │ │ │ └── service.go │ │ ├── security.go │ │ ├── service.go │ │ ├── sys_386.s │ │ ├── sys_amd64.s │ │ └── sys_arm.s │ │ ├── syscall.go │ │ ├── syscall_windows.go │ │ ├── types_windows.go │ │ ├── types_windows_386.go │ │ ├── types_windows_amd64.go │ │ ├── types_windows_arm.go │ │ ├── zerrors_windows.go │ │ ├── zknownfolderids_windows.go │ │ └── zsyscall_windows.go │ ├── gopkg.in │ ├── airbrake │ │ └── gobrake.v2 │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── gobrake.go │ │ │ ├── notice.go │ │ │ ├── notifier.go │ │ │ └── util.go │ ├── gemnasium │ │ └── logrus-airbrake-hook.v2 │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── airbrake.go │ └── yaml.v2 │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── LICENSE.libyaml │ │ ├── NOTICE │ │ ├── README.md │ │ ├── apic.go │ │ ├── decode.go │ │ ├── emitterc.go │ │ ├── encode.go │ │ ├── go.mod │ │ ├── parserc.go │ │ ├── readerc.go │ │ ├── resolve.go │ │ ├── scannerc.go │ │ ├── sorter.go │ │ ├── writerc.go │ │ ├── yaml.go │ │ ├── yamlh.go │ │ └── yamlprivateh.go │ └── modules.txt ├── embedded-structure └── main.go ├── file-server ├── README.md ├── img │ ├── file-request-result.png │ ├── folder-request-result.png │ └── nomal-request-result.png ├── main.go └── static │ ├── css │ └── app.css │ └── home.html ├── file ├── main.go └── util.go ├── graceful-shutdown ├── README.md └── main.go ├── http ├── log │ ├── README.md │ └── main.go ├── request-auth │ ├── customized_client.go │ ├── main.go │ └── proxy_client.go ├── reverse-proxy │ ├── README.md │ └── main.go └── stream-log │ ├── Gopkg.lock │ ├── Gopkg.toml │ ├── README.md │ ├── curl-websocket.sh │ ├── main.go │ └── vendor │ └── github.com │ ├── golang │ └── glog │ │ ├── LICENSE │ │ ├── README │ │ ├── glog.go │ │ ├── glog_file.go │ │ └── glog_test.go │ └── gorilla │ └── websocket │ ├── .gitignore │ ├── .travis.yml │ ├── AUTHORS │ ├── LICENSE │ ├── README.md │ ├── client.go │ ├── client_clone.go │ ├── client_clone_legacy.go │ ├── client_server_test.go │ ├── client_test.go │ ├── compression.go │ ├── compression_test.go │ ├── conn.go │ ├── conn_broadcast_test.go │ ├── conn_read.go │ ├── conn_read_legacy.go │ ├── conn_test.go │ ├── doc.go │ ├── example_test.go │ ├── examples │ ├── autobahn │ │ ├── README.md │ │ ├── fuzzingclient.json │ │ └── server.go │ ├── chat │ │ ├── README.md │ │ ├── client.go │ │ ├── home.html │ │ ├── hub.go │ │ └── main.go │ ├── command │ │ ├── README.md │ │ ├── home.html │ │ └── main.go │ ├── echo │ │ ├── README.md │ │ ├── client.go │ │ └── server.go │ └── filewatch │ │ ├── README.md │ │ └── main.go │ ├── json.go │ ├── json_test.go │ ├── mask.go │ ├── mask_safe.go │ ├── mask_test.go │ ├── prepared.go │ ├── prepared_test.go │ ├── server.go │ ├── server_test.go │ ├── util.go │ └── util_test.go ├── json ├── main.go └── util.go ├── k8s-goclient ├── README.md ├── examples │ └── deployment-management │ │ └── main.go ├── images │ ├── k8s-clientSet.png │ └── my-clientSet.png ├── kubernetes │ ├── clientset.go │ ├── configmap.go │ ├── deployment.go │ ├── ingress.go │ ├── namespace.go │ └── service.go └── vendor │ ├── github.com │ ├── PuerkitoBio │ │ ├── purell │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── purell.go │ │ └── urlesc │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── urlesc.go │ ├── davecgh │ │ └── go-spew │ │ │ ├── LICENSE │ │ │ └── spew │ │ │ ├── bypass.go │ │ │ ├── bypasssafe.go │ │ │ ├── common.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── dump.go │ │ │ ├── format.go │ │ │ └── spew.go │ ├── emicklei │ │ ├── go-restful-swagger12 │ │ │ ├── CHANGES.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── api_declaration_list.go │ │ │ ├── config.go │ │ │ ├── model_builder.go │ │ │ ├── model_list.go │ │ │ ├── model_property_ext.go │ │ │ ├── model_property_list.go │ │ │ ├── ordered_route_map.go │ │ │ ├── swagger.go │ │ │ ├── swagger_builder.go │ │ │ └── swagger_webservice.go │ │ └── go-restful │ │ │ ├── CHANGES.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── Srcfile │ │ │ ├── bench_test.sh │ │ │ ├── compress.go │ │ │ ├── compressor_cache.go │ │ │ ├── compressor_pools.go │ │ │ ├── compressors.go │ │ │ ├── constants.go │ │ │ ├── container.go │ │ │ ├── cors_filter.go │ │ │ ├── coverage.sh │ │ │ ├── curly.go │ │ │ ├── curly_route.go │ │ │ ├── doc.go │ │ │ ├── entity_accessors.go │ │ │ ├── filter.go │ │ │ ├── jsr311.go │ │ │ ├── log │ │ │ └── log.go │ │ │ ├── logger.go │ │ │ ├── mime.go │ │ │ ├── options_filter.go │ │ │ ├── parameter.go │ │ │ ├── path_expression.go │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ ├── route.go │ │ │ ├── route_builder.go │ │ │ ├── router.go │ │ │ ├── service_error.go │ │ │ ├── web_service.go │ │ │ └── web_service_container.go │ ├── ghodss │ │ └── yaml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── fields.go │ │ │ └── yaml.go │ ├── go-openapi │ │ ├── jsonpointer │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── pointer.go │ │ ├── jsonreference │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── reference.go │ │ ├── spec │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bindata.go │ │ │ ├── contact_info.go │ │ │ ├── expander.go │ │ │ ├── external_docs.go │ │ │ ├── header.go │ │ │ ├── info.go │ │ │ ├── items.go │ │ │ ├── license.go │ │ │ ├── operation.go │ │ │ ├── parameter.go │ │ │ ├── path_item.go │ │ │ ├── paths.go │ │ │ ├── ref.go │ │ │ ├── response.go │ │ │ ├── responses.go │ │ │ ├── schema.go │ │ │ ├── security_scheme.go │ │ │ ├── spec.go │ │ │ ├── swagger.go │ │ │ ├── tag.go │ │ │ └── xml_object.go │ │ └── swag │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── convert.go │ │ │ ├── convert_types.go │ │ │ ├── json.go │ │ │ ├── loading.go │ │ │ ├── net.go │ │ │ ├── path.go │ │ │ └── util.go │ ├── gogo │ │ └── protobuf │ │ │ ├── LICENSE │ │ │ ├── proto │ │ │ ├── Makefile │ │ │ ├── clone.go │ │ │ ├── decode.go │ │ │ ├── decode_gogo.go │ │ │ ├── duration.go │ │ │ ├── duration_gogo.go │ │ │ ├── encode.go │ │ │ ├── encode_gogo.go │ │ │ ├── equal.go │ │ │ ├── extensions.go │ │ │ ├── extensions_gogo.go │ │ │ ├── lib.go │ │ │ ├── lib_gogo.go │ │ │ ├── message_set.go │ │ │ ├── pointer_reflect.go │ │ │ ├── pointer_reflect_gogo.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── pointer_unsafe_gogo.go │ │ │ ├── properties.go │ │ │ ├── properties_gogo.go │ │ │ ├── skip_gogo.go │ │ │ ├── text.go │ │ │ ├── text_gogo.go │ │ │ ├── text_parser.go │ │ │ ├── timestamp.go │ │ │ └── timestamp_gogo.go │ │ │ └── sortkeys │ │ │ └── sortkeys.go │ ├── golang │ │ ├── glog │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── glog.go │ │ │ └── glog_file.go │ │ └── protobuf │ │ │ ├── LICENSE │ │ │ ├── proto │ │ │ ├── Makefile │ │ │ ├── clone.go │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── equal.go │ │ │ ├── extensions.go │ │ │ ├── lib.go │ │ │ ├── message_set.go │ │ │ ├── pointer_reflect.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── properties.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 │ │ │ ├── regen.sh │ │ │ ├── timestamp.go │ │ │ └── timestamp │ │ │ ├── timestamp.pb.go │ │ │ └── timestamp.proto │ ├── google │ │ └── gofuzz │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ └── fuzz.go │ ├── googleapis │ │ └── gnostic │ │ │ ├── LICENSE │ │ │ ├── OpenAPIv2 │ │ │ ├── OpenAPIv2.go │ │ │ ├── OpenAPIv2.pb.go │ │ │ ├── OpenAPIv2.proto │ │ │ ├── README.md │ │ │ └── openapi-2.0.json │ │ │ ├── compiler │ │ │ ├── README.md │ │ │ ├── context.go │ │ │ ├── error.go │ │ │ ├── extension-handler.go │ │ │ ├── helpers.go │ │ │ ├── main.go │ │ │ └── reader.go │ │ │ └── extensions │ │ │ ├── COMPILE-EXTENSION.sh │ │ │ ├── README.md │ │ │ ├── extension.pb.go │ │ │ ├── extension.proto │ │ │ └── extensions.go │ ├── juju │ │ └── ratelimit │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── ratelimit.go │ │ │ └── reader.go │ ├── mailru │ │ └── easyjson │ │ │ ├── LICENSE │ │ │ ├── buffer │ │ │ └── pool.go │ │ │ ├── jlexer │ │ │ ├── error.go │ │ │ └── lexer.go │ │ │ └── jwriter │ │ │ └── writer.go │ ├── spf13 │ │ └── pflag │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bool.go │ │ │ ├── bool_slice.go │ │ │ ├── count.go │ │ │ ├── duration.go │ │ │ ├── flag.go │ │ │ ├── float32.go │ │ │ ├── float64.go │ │ │ ├── golangflag.go │ │ │ ├── int.go │ │ │ ├── int32.go │ │ │ ├── int64.go │ │ │ ├── int8.go │ │ │ ├── int_slice.go │ │ │ ├── ip.go │ │ │ ├── ip_slice.go │ │ │ ├── ipmask.go │ │ │ ├── ipnet.go │ │ │ ├── string.go │ │ │ ├── string_array.go │ │ │ ├── string_slice.go │ │ │ ├── uint.go │ │ │ ├── uint16.go │ │ │ ├── uint32.go │ │ │ ├── uint64.go │ │ │ ├── uint8.go │ │ │ └── uint_slice.go │ └── ugorji │ │ └── go │ │ ├── LICENSE │ │ └── codec │ │ ├── 0doc.go │ │ ├── README.md │ │ ├── binc.go │ │ ├── cbor.go │ │ ├── decode.go │ │ ├── decode_go.go │ │ ├── decode_go14.go │ │ ├── encode.go │ │ ├── fast-path.generated.go │ │ ├── fast-path.go.tmpl │ │ ├── fast-path.not.go │ │ ├── gen-dec-array.go.tmpl │ │ ├── gen-dec-map.go.tmpl │ │ ├── gen-helper.generated.go │ │ ├── gen-helper.go.tmpl │ │ ├── gen.generated.go │ │ ├── gen.go │ │ ├── gen_15.go │ │ ├── gen_16.go │ │ ├── gen_17.go │ │ ├── helper.go │ │ ├── helper_internal.go │ │ ├── helper_not_unsafe.go │ │ ├── helper_unsafe.go │ │ ├── json.go │ │ ├── msgpack.go │ │ ├── noop.go │ │ ├── prebuild.go │ │ ├── prebuild.sh │ │ ├── rpc.go │ │ ├── simple.go │ │ ├── test-cbor-goldens.json │ │ ├── test.py │ │ ├── tests.sh │ │ └── time.go │ ├── golang.org │ └── x │ │ ├── net │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── http2 │ │ │ ├── Dockerfile │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── ciphers.go │ │ │ ├── client_conn_pool.go │ │ │ ├── configure_transport.go │ │ │ ├── databuffer.go │ │ │ ├── errors.go │ │ │ ├── flow.go │ │ │ ├── frame.go │ │ │ ├── go16.go │ │ │ ├── go17.go │ │ │ ├── go17_not18.go │ │ │ ├── go18.go │ │ │ ├── gotrack.go │ │ │ ├── headermap.go │ │ │ ├── hpack │ │ │ │ ├── encode.go │ │ │ │ ├── hpack.go │ │ │ │ ├── huffman.go │ │ │ │ └── tables.go │ │ │ ├── http2.go │ │ │ ├── not_go16.go │ │ │ ├── not_go17.go │ │ │ ├── not_go18.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 │ │ └── lex │ │ │ └── httplex │ │ │ └── httplex.go │ │ └── text │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── cases │ │ ├── cases.go │ │ ├── context.go │ │ ├── fold.go │ │ ├── gen.go │ │ ├── gen_trieval.go │ │ ├── icu.go │ │ ├── info.go │ │ ├── map.go │ │ ├── tables.go │ │ └── trieval.go │ │ ├── internal │ │ ├── gen.go │ │ ├── internal.go │ │ ├── match.go │ │ ├── tables.go │ │ └── tag │ │ │ └── tag.go │ │ ├── language │ │ ├── Makefile │ │ ├── common.go │ │ ├── coverage.go │ │ ├── gen_common.go │ │ ├── gen_index.go │ │ ├── go1_1.go │ │ ├── go1_2.go │ │ ├── index.go │ │ ├── language.go │ │ ├── lookup.go │ │ ├── maketables.go │ │ ├── match.go │ │ ├── parse.go │ │ ├── tables.go │ │ └── tags.go │ │ ├── runes │ │ ├── cond.go │ │ └── runes.go │ │ ├── secure │ │ ├── bidirule │ │ │ └── bidirule.go │ │ └── precis │ │ │ ├── class.go │ │ │ ├── context.go │ │ │ ├── doc.go │ │ │ ├── gen.go │ │ │ ├── gen_trieval.go │ │ │ ├── nickname.go │ │ │ ├── options.go │ │ │ ├── profile.go │ │ │ ├── profiles.go │ │ │ ├── tables.go │ │ │ ├── transformer.go │ │ │ └── trieval.go │ │ ├── transform │ │ └── transform.go │ │ ├── unicode │ │ ├── bidi │ │ │ ├── bidi.go │ │ │ ├── bracket.go │ │ │ ├── core.go │ │ │ ├── gen.go │ │ │ ├── gen_ranges.go │ │ │ ├── gen_trieval.go │ │ │ ├── prop.go │ │ │ ├── tables.go │ │ │ └── trieval.go │ │ └── norm │ │ │ ├── composition.go │ │ │ ├── forminfo.go │ │ │ ├── input.go │ │ │ ├── iter.go │ │ │ ├── maketables.go │ │ │ ├── normalize.go │ │ │ ├── readwriter.go │ │ │ ├── tables.go │ │ │ ├── transform.go │ │ │ ├── trie.go │ │ │ └── triegen.go │ │ └── width │ │ ├── gen.go │ │ ├── gen_common.go │ │ ├── gen_trieval.go │ │ ├── kind_string.go │ │ ├── tables.go │ │ ├── transform.go │ │ ├── trieval.go │ │ └── width.go │ ├── gopkg.in │ ├── inf.v0 │ │ ├── LICENSE │ │ ├── dec.go │ │ └── rounder.go │ └── yaml.v2 │ │ ├── LICENSE │ │ ├── LICENSE.libyaml │ │ ├── README.md │ │ ├── apic.go │ │ ├── decode.go │ │ ├── emitterc.go │ │ ├── encode.go │ │ ├── parserc.go │ │ ├── readerc.go │ │ ├── resolve.go │ │ ├── scannerc.go │ │ ├── sorter.go │ │ ├── writerc.go │ │ ├── yaml.go │ │ ├── yamlh.go │ │ └── yamlprivateh.go │ ├── k8s.io │ ├── api │ │ ├── admissionregistration │ │ │ └── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── apps │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── authentication │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── authorization │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── autoscaling │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v2alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── batch │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v2alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── certificates │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── core │ │ │ └── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── annotation_key_constants.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── meta.go │ │ │ │ ├── objectreference.go │ │ │ │ ├── register.go │ │ │ │ ├── resource.go │ │ │ │ ├── taint.go │ │ │ │ ├── toleration.go │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── extensions │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── networking │ │ │ └── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── policy │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── rbac │ │ │ ├── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── scheduling │ │ │ └── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── settings │ │ │ └── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ └── storage │ │ │ ├── v1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.generated.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── apimachinery │ │ ├── pkg │ │ │ ├── api │ │ │ │ ├── equality │ │ │ │ │ ├── BUILD │ │ │ │ │ └── semantic.go │ │ │ │ ├── errors │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── doc.go │ │ │ │ │ └── errors.go │ │ │ │ ├── meta │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── default.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── firsthit_restmapper.go │ │ │ │ │ ├── help.go │ │ │ │ │ ├── interfaces.go │ │ │ │ │ ├── meta.go │ │ │ │ │ ├── multirestmapper.go │ │ │ │ │ ├── priority.go │ │ │ │ │ ├── restmapper.go │ │ │ │ │ └── unstructured.go │ │ │ │ └── resource │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── amount.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── math.go │ │ │ │ │ ├── quantity.go │ │ │ │ │ ├── quantity_proto.go │ │ │ │ │ ├── scale_int.go │ │ │ │ │ └── suffix.go │ │ │ ├── apis │ │ │ │ └── meta │ │ │ │ │ ├── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── controller_ref.go │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── duration.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── group_version.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── labels.go │ │ │ │ │ ├── meta.go │ │ │ │ │ ├── micro_time.go │ │ │ │ │ ├── micro_time_proto.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── time.go │ │ │ │ │ ├── time_proto.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── unstructured │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── unstructured.go │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ │ ├── watch.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── deepcopy.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ ├── conversion │ │ │ │ ├── BUILD │ │ │ │ ├── cloner.go │ │ │ │ ├── converter.go │ │ │ │ ├── deep_equal.go │ │ │ │ ├── doc.go │ │ │ │ ├── helper.go │ │ │ │ ├── queryparams │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── convert.go │ │ │ │ │ └── doc.go │ │ │ │ └── unstructured │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── converter.go │ │ │ │ │ └── doc.go │ │ │ ├── fields │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fields.go │ │ │ │ ├── requirements.go │ │ │ │ └── selector.go │ │ │ ├── labels │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── labels.go │ │ │ │ ├── selector.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── openapi │ │ │ │ ├── BUILD │ │ │ │ ├── common.go │ │ │ │ └── doc.go │ │ │ ├── runtime │ │ │ │ ├── BUILD │ │ │ │ ├── codec.go │ │ │ │ ├── codec_check.go │ │ │ │ ├── conversion.go │ │ │ │ ├── doc.go │ │ │ │ ├── embedded.go │ │ │ │ ├── error.go │ │ │ │ ├── extension.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── helper.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── register.go │ │ │ │ ├── schema │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── group_version.go │ │ │ │ │ └── interfaces.go │ │ │ │ ├── scheme.go │ │ │ │ ├── scheme_builder.go │ │ │ │ ├── serializer │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── codec_factory.go │ │ │ │ │ ├── json │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── json.go │ │ │ │ │ │ └── meta.go │ │ │ │ │ ├── negotiated_codec.go │ │ │ │ │ ├── protobuf │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── protobuf.go │ │ │ │ │ ├── protobuf_extension.go │ │ │ │ │ ├── recognizer │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ └── recognizer.go │ │ │ │ │ ├── streaming │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ └── streaming.go │ │ │ │ │ └── versioning │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ └── versioning.go │ │ │ │ ├── swagger_doc_generator.go │ │ │ │ ├── types.go │ │ │ │ ├── types_proto.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── selection │ │ │ │ ├── BUILD │ │ │ │ └── operator.go │ │ │ ├── types │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── namespacedname.go │ │ │ │ ├── nodename.go │ │ │ │ ├── patch.go │ │ │ │ └── uid.go │ │ │ ├── util │ │ │ │ ├── clock │ │ │ │ │ ├── BUILD │ │ │ │ │ └── clock.go │ │ │ │ ├── diff │ │ │ │ │ ├── BUILD │ │ │ │ │ └── diff.go │ │ │ │ ├── errors │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ └── errors.go │ │ │ │ ├── framer │ │ │ │ │ ├── BUILD │ │ │ │ │ └── framer.go │ │ │ │ ├── intstr │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ └── intstr.go │ │ │ │ ├── json │ │ │ │ │ ├── BUILD │ │ │ │ │ └── json.go │ │ │ │ ├── net │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── http.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── port_range.go │ │ │ │ │ ├── port_split.go │ │ │ │ │ └── util.go │ │ │ │ ├── runtime │ │ │ │ │ ├── BUILD │ │ │ │ │ └── runtime.go │ │ │ │ ├── sets │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── byte.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── empty.go │ │ │ │ │ ├── int.go │ │ │ │ │ ├── int64.go │ │ │ │ │ └── string.go │ │ │ │ ├── validation │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── field │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ └── path.go │ │ │ │ │ └── validation.go │ │ │ │ ├── wait │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ └── wait.go │ │ │ │ └── yaml │ │ │ │ │ ├── BUILD │ │ │ │ │ └── decoder.go │ │ │ ├── version │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ └── types.go │ │ │ └── watch │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── filter.go │ │ │ │ ├── mux.go │ │ │ │ ├── streamwatcher.go │ │ │ │ ├── until.go │ │ │ │ ├── watch.go │ │ │ │ └── zz_generated.deepcopy.go │ │ └── third_party │ │ │ └── forked │ │ │ └── golang │ │ │ └── reflect │ │ │ ├── BUILD │ │ │ ├── deep_equal.go │ │ │ └── type.go │ └── client-go │ │ ├── LICENSE │ │ ├── discovery │ │ ├── BUILD │ │ ├── discovery_client.go │ │ ├── helper.go │ │ ├── restmapper.go │ │ └── unstructured.go │ │ ├── kubernetes │ │ ├── BUILD │ │ ├── clientset.go │ │ ├── doc.go │ │ ├── import.go │ │ ├── scheme │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ └── register.go │ │ └── typed │ │ │ ├── admissionregistration │ │ │ └── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── admissionregistration_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── externaladmissionhookconfiguration.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── initializerconfiguration.go │ │ │ ├── apps │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── apps_client.go │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── deployment.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── scale.go │ │ │ │ └── statefulset.go │ │ │ ├── authentication │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── authentication_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── tokenreview.go │ │ │ │ └── tokenreview_expansion.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── authentication_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── tokenreview.go │ │ │ │ └── tokenreview_expansion.go │ │ │ ├── authorization │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── authorization_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ ├── localsubjectaccessreview_expansion.go │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ ├── selfsubjectaccessreview_expansion.go │ │ │ │ ├── subjectaccessreview.go │ │ │ │ └── subjectaccessreview_expansion.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── authorization_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ ├── localsubjectaccessreview_expansion.go │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ ├── selfsubjectaccessreview_expansion.go │ │ │ │ ├── subjectaccessreview.go │ │ │ │ └── subjectaccessreview_expansion.go │ │ │ ├── autoscaling │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── autoscaling_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ └── v2alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── autoscaling_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ ├── batch │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── batch_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── job.go │ │ │ └── v2alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── batch_client.go │ │ │ │ ├── cronjob.go │ │ │ │ ├── doc.go │ │ │ │ └── generated_expansion.go │ │ │ ├── certificates │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── certificates_client.go │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ ├── certificatesigningrequest_expansion.go │ │ │ │ ├── doc.go │ │ │ │ └── generated_expansion.go │ │ │ ├── core │ │ │ └── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── componentstatus.go │ │ │ │ ├── configmap.go │ │ │ │ ├── core_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── event.go │ │ │ │ ├── event_expansion.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── limitrange.go │ │ │ │ ├── namespace.go │ │ │ │ ├── namespace_expansion.go │ │ │ │ ├── node.go │ │ │ │ ├── node_expansion.go │ │ │ │ ├── persistentvolume.go │ │ │ │ ├── persistentvolumeclaim.go │ │ │ │ ├── pod.go │ │ │ │ ├── pod_expansion.go │ │ │ │ ├── podtemplate.go │ │ │ │ ├── replicationcontroller.go │ │ │ │ ├── resourcequota.go │ │ │ │ ├── secret.go │ │ │ │ ├── service.go │ │ │ │ ├── service_expansion.go │ │ │ │ └── serviceaccount.go │ │ │ ├── extensions │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── deployment_expansion.go │ │ │ │ ├── doc.go │ │ │ │ ├── extensions_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── ingress.go │ │ │ │ ├── podsecuritypolicy.go │ │ │ │ ├── replicaset.go │ │ │ │ ├── scale.go │ │ │ │ ├── scale_expansion.go │ │ │ │ └── thirdpartyresource.go │ │ │ ├── networking │ │ │ └── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── networking_client.go │ │ │ │ └── networkpolicy.go │ │ │ ├── policy │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── eviction.go │ │ │ │ ├── eviction_expansion.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ └── policy_client.go │ │ │ ├── rbac │ │ │ ├── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── rbac_client.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── rbac_client.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ ├── scheduling │ │ │ └── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── priorityclass.go │ │ │ │ └── scheduling_client.go │ │ │ ├── settings │ │ │ └── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── podpreset.go │ │ │ │ └── settings_client.go │ │ │ └── storage │ │ │ ├── v1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated_expansion.go │ │ │ ├── storage_client.go │ │ │ └── storageclass.go │ │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated_expansion.go │ │ │ ├── storage_client.go │ │ │ └── storageclass.go │ │ ├── pkg │ │ └── version │ │ │ ├── BUILD │ │ │ ├── base.go │ │ │ ├── def.bzl │ │ │ ├── doc.go │ │ │ └── version.go │ │ ├── rest │ │ ├── BUILD │ │ ├── OWNERS │ │ ├── client.go │ │ ├── config.go │ │ ├── plugin.go │ │ ├── request.go │ │ ├── transport.go │ │ ├── url_utils.go │ │ ├── urlbackoff.go │ │ ├── versions.go │ │ ├── watch │ │ │ ├── BUILD │ │ │ ├── decoder.go │ │ │ └── encoder.go │ │ └── zz_generated.deepcopy.go │ │ ├── tools │ │ ├── clientcmd │ │ │ └── api │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── helpers.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── metrics │ │ │ ├── BUILD │ │ │ ├── OWNERS │ │ │ └── metrics.go │ │ └── reference │ │ │ ├── BUILD │ │ │ └── ref.go │ │ ├── transport │ │ ├── BUILD │ │ ├── OWNERS │ │ ├── cache.go │ │ ├── config.go │ │ ├── round_trippers.go │ │ └── transport.go │ │ └── util │ │ ├── cert │ │ ├── BUILD │ │ ├── cert.go │ │ ├── csr.go │ │ ├── io.go │ │ └── pem.go │ │ ├── flowcontrol │ │ ├── BUILD │ │ ├── backoff.go │ │ └── throttle.go │ │ └── integer │ │ ├── BUILD │ │ └── integer.go │ └── vendor.json ├── lint ├── .golangci.yml ├── Makefile ├── main.go └── students │ └── students.go ├── log ├── README.md ├── glog │ └── main.go ├── logrus │ └── main.go ├── stdlog │ └── main.go └── vendor │ ├── github.com │ ├── golang │ │ └── glog │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── glog.go │ │ │ └── glog_file.go │ └── sirupsen │ │ └── logrus │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── alt_exit.go │ │ ├── appveyor.yml │ │ ├── doc.go │ │ ├── entry.go │ │ ├── exported.go │ │ ├── formatter.go │ │ ├── hooks.go │ │ ├── json_formatter.go │ │ ├── logger.go │ │ ├── logrus.go │ │ ├── terminal_bsd.go │ │ ├── terminal_linux.go │ │ ├── text_formatter.go │ │ └── writer.go │ ├── golang.org │ └── x │ │ ├── crypto │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── ssh │ │ │ └── terminal │ │ │ ├── terminal.go │ │ │ ├── util.go │ │ │ ├── util_bsd.go │ │ │ ├── util_linux.go │ │ │ ├── util_plan9.go │ │ │ ├── util_solaris.go │ │ │ └── util_windows.go │ │ └── sys │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── unix │ │ ├── README.md │ │ ├── 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_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_openbsd_386.s │ │ ├── asm_openbsd_amd64.s │ │ ├── asm_openbsd_arm.s │ │ ├── asm_solaris_amd64.s │ │ ├── bluetooth_linux.go │ │ ├── cap_freebsd.go │ │ ├── constants.go │ │ ├── dev_linux.go │ │ ├── dirent.go │ │ ├── endian_big.go │ │ ├── endian_little.go │ │ ├── env_unix.go │ │ ├── env_unset.go │ │ ├── errors_freebsd_386.go │ │ ├── errors_freebsd_amd64.go │ │ ├── errors_freebsd_arm.go │ │ ├── file_unix.go │ │ ├── flock.go │ │ ├── flock_linux_32bit.go │ │ ├── gccgo.go │ │ ├── gccgo_c.c │ │ ├── gccgo_linux_amd64.go │ │ ├── gccgo_linux_sparc64.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mkpost.go │ │ ├── mksyscall.pl │ │ ├── mksyscall_solaris.pl │ │ ├── mksysctl_openbsd.pl │ │ ├── mksysnum_darwin.pl │ │ ├── mksysnum_dragonfly.pl │ │ ├── mksysnum_freebsd.pl │ │ ├── mksysnum_netbsd.pl │ │ ├── mksysnum_openbsd.pl │ │ ├── openbsd_pledge.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── sockcmsg_linux.go │ │ ├── sockcmsg_unix.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_bsd.go │ │ ├── syscall_darwin.go │ │ ├── syscall_darwin_386.go │ │ ├── syscall_darwin_amd64.go │ │ ├── syscall_darwin_arm.go │ │ ├── syscall_darwin_arm64.go │ │ ├── syscall_dragonfly.go │ │ ├── syscall_dragonfly_amd64.go │ │ ├── syscall_freebsd.go │ │ ├── syscall_freebsd_386.go │ │ ├── syscall_freebsd_amd64.go │ │ ├── syscall_freebsd_arm.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_mips64x.go │ │ ├── syscall_linux_mipsx.go │ │ ├── syscall_linux_ppc64x.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_no_getwd.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 │ │ ├── types_darwin.go │ │ ├── types_dragonfly.go │ │ ├── types_freebsd.go │ │ ├── types_netbsd.go │ │ ├── types_openbsd.go │ │ ├── types_solaris.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_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_s390x.go │ │ ├── zerrors_linux_sparc64.go │ │ ├── zerrors_netbsd_386.go │ │ ├── zerrors_netbsd_amd64.go │ │ ├── zerrors_netbsd_arm.go │ │ ├── zerrors_openbsd_386.go │ │ ├── zerrors_openbsd_amd64.go │ │ ├── zerrors_openbsd_arm.go │ │ ├── zerrors_solaris_amd64.go │ │ ├── zsyscall_darwin_386.go │ │ ├── zsyscall_darwin_amd64.go │ │ ├── zsyscall_darwin_arm.go │ │ ├── zsyscall_darwin_arm64.go │ │ ├── zsyscall_dragonfly_amd64.go │ │ ├── zsyscall_freebsd_386.go │ │ ├── zsyscall_freebsd_amd64.go │ │ ├── zsyscall_freebsd_arm.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_s390x.go │ │ ├── zsyscall_linux_sparc64.go │ │ ├── zsyscall_netbsd_386.go │ │ ├── zsyscall_netbsd_amd64.go │ │ ├── zsyscall_netbsd_arm.go │ │ ├── zsyscall_openbsd_386.go │ │ ├── zsyscall_openbsd_amd64.go │ │ ├── zsyscall_openbsd_arm.go │ │ ├── zsyscall_solaris_amd64.go │ │ ├── zsysctl_openbsd.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_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_s390x.go │ │ ├── zsysnum_linux_sparc64.go │ │ ├── zsysnum_netbsd_386.go │ │ ├── zsysnum_netbsd_amd64.go │ │ ├── zsysnum_netbsd_arm.go │ │ ├── zsysnum_openbsd_386.go │ │ ├── zsysnum_openbsd_amd64.go │ │ ├── zsysnum_openbsd_arm.go │ │ ├── zsysnum_solaris_amd64.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_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_s390x.go │ │ ├── ztypes_linux_sparc64.go │ │ ├── ztypes_netbsd_386.go │ │ ├── ztypes_netbsd_amd64.go │ │ ├── ztypes_netbsd_arm.go │ │ ├── ztypes_openbsd_386.go │ │ ├── ztypes_openbsd_amd64.go │ │ ├── ztypes_openbsd_arm.go │ │ └── ztypes_solaris_amd64.go │ │ └── windows │ │ ├── asm_windows_386.s │ │ ├── asm_windows_amd64.s │ │ ├── dll_windows.go │ │ ├── env_unset.go │ │ ├── env_windows.go │ │ ├── eventlog.go │ │ ├── exec_windows.go │ │ ├── memory_windows.go │ │ ├── mksyscall.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── security_windows.go │ │ ├── service.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_windows.go │ │ ├── types_windows.go │ │ ├── types_windows_386.go │ │ ├── types_windows_amd64.go │ │ └── zsyscall_windows.go │ └── vendor.json ├── mbus ├── example │ └── main.go ├── kafka │ └── kafka.go ├── mbus.go ├── mbus_test.go ├── nats │ └── nats.go └── vendor │ ├── github.com │ ├── golang │ │ └── snappy │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── decode.go │ │ │ ├── decode_amd64.go │ │ │ ├── decode_amd64.s │ │ │ ├── decode_other.go │ │ │ ├── encode.go │ │ │ ├── encode_amd64.go │ │ │ ├── encode_amd64.s │ │ │ ├── encode_other.go │ │ │ └── snappy.go │ ├── nats-io │ │ ├── go-nats │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── TODO.md │ │ │ ├── context.go │ │ │ ├── enc.go │ │ │ ├── encoders │ │ │ │ └── builtin │ │ │ │ │ ├── default_enc.go │ │ │ │ │ ├── gob_enc.go │ │ │ │ │ └── json_enc.go │ │ │ ├── nats.go │ │ │ ├── netchan.go │ │ │ ├── parser.go │ │ │ ├── staticcheck.ignore │ │ │ ├── timer.go │ │ │ └── util │ │ │ │ ├── tls.go │ │ │ │ └── tls_pre17.go │ │ └── nuid │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── nuid.go │ └── optiopay │ │ └── kafka │ │ ├── LICENSE │ │ ├── README.md │ │ ├── broker.go │ │ ├── connection.go │ │ ├── distributing_producer.go │ │ ├── doc.go │ │ ├── log.go │ │ ├── multiplexer.go │ │ └── proto │ │ ├── doc.go │ │ ├── errors.go │ │ ├── messages.go │ │ ├── serialization.go │ │ └── snappy.go │ └── vendor.json ├── multiple-dep-versions ├── Gopkg.lock ├── Gopkg.toml ├── main.go └── vendor │ ├── github.com │ ├── golang │ │ ├── glog │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── glog.go │ │ │ ├── glog_file.go │ │ │ └── glog_test.go │ │ └── protobuf │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── conformance │ │ │ ├── Makefile │ │ │ ├── conformance.go │ │ │ ├── conformance.sh │ │ │ ├── failure_list_go.txt │ │ │ ├── internal │ │ │ │ └── conformance_proto │ │ │ │ │ ├── conformance.pb.go │ │ │ │ │ └── conformance.proto │ │ │ └── test.sh │ │ │ ├── descriptor │ │ │ ├── descriptor.go │ │ │ └── descriptor_test.go │ │ │ ├── jsonpb │ │ │ ├── jsonpb.go │ │ │ ├── jsonpb_test.go │ │ │ └── jsonpb_test_proto │ │ │ │ ├── more_test_objects.pb.go │ │ │ │ ├── more_test_objects.proto │ │ │ │ ├── test_objects.pb.go │ │ │ │ └── test_objects.proto │ │ │ ├── proto │ │ │ ├── all_test.go │ │ │ ├── any_test.go │ │ │ ├── clone.go │ │ │ ├── clone_test.go │ │ │ ├── decode.go │ │ │ ├── decode_test.go │ │ │ ├── discard.go │ │ │ ├── discard_test.go │ │ │ ├── encode.go │ │ │ ├── encode_test.go │ │ │ ├── equal.go │ │ │ ├── equal_test.go │ │ │ ├── extensions.go │ │ │ ├── extensions_test.go │ │ │ ├── lib.go │ │ │ ├── map_test.go │ │ │ ├── message_set.go │ │ │ ├── message_set_test.go │ │ │ ├── pointer_reflect.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── properties.go │ │ │ ├── proto3_proto │ │ │ │ ├── proto3.pb.go │ │ │ │ └── proto3.proto │ │ │ ├── proto3_test.go │ │ │ ├── size2_test.go │ │ │ ├── size_test.go │ │ │ ├── table_marshal.go │ │ │ ├── table_merge.go │ │ │ ├── table_unmarshal.go │ │ │ ├── test_proto │ │ │ │ ├── test.pb.go │ │ │ │ └── test.proto │ │ │ ├── text.go │ │ │ ├── text_parser.go │ │ │ ├── text_parser_test.go │ │ │ └── text_test.go │ │ │ ├── protoc-gen-go │ │ │ ├── descriptor │ │ │ │ ├── descriptor.pb.go │ │ │ │ └── descriptor.proto │ │ │ ├── doc.go │ │ │ ├── generator │ │ │ │ ├── generator.go │ │ │ │ ├── internal │ │ │ │ │ └── remap │ │ │ │ │ │ ├── remap.go │ │ │ │ │ │ └── remap_test.go │ │ │ │ └── name_test.go │ │ │ ├── golden_test.go │ │ │ ├── grpc │ │ │ │ └── grpc.go │ │ │ ├── link_grpc.go │ │ │ ├── main.go │ │ │ ├── plugin │ │ │ │ ├── plugin.pb.go │ │ │ │ ├── plugin.pb.golden │ │ │ │ └── plugin.proto │ │ │ └── testdata │ │ │ │ ├── deprecated │ │ │ │ ├── deprecated.pb.go │ │ │ │ └── deprecated.proto │ │ │ │ ├── extension_base │ │ │ │ ├── extension_base.pb.go │ │ │ │ └── extension_base.proto │ │ │ │ ├── extension_extra │ │ │ │ ├── extension_extra.pb.go │ │ │ │ └── extension_extra.proto │ │ │ │ ├── extension_test.go │ │ │ │ ├── extension_user │ │ │ │ ├── extension_user.pb.go │ │ │ │ └── extension_user.proto │ │ │ │ ├── grpc │ │ │ │ ├── grpc.pb.go │ │ │ │ └── grpc.proto │ │ │ │ ├── import_public │ │ │ │ ├── a.pb.go │ │ │ │ ├── a.proto │ │ │ │ ├── b.pb.go │ │ │ │ ├── b.proto │ │ │ │ └── sub │ │ │ │ │ ├── a.pb.go │ │ │ │ │ ├── a.proto │ │ │ │ │ ├── b.pb.go │ │ │ │ │ └── b.proto │ │ │ │ ├── import_public_test.go │ │ │ │ ├── imports │ │ │ │ ├── fmt │ │ │ │ │ ├── m.pb.go │ │ │ │ │ └── m.proto │ │ │ │ ├── test_a_1 │ │ │ │ │ ├── m1.pb.go │ │ │ │ │ ├── m1.proto │ │ │ │ │ ├── m2.pb.go │ │ │ │ │ └── m2.proto │ │ │ │ ├── test_a_2 │ │ │ │ │ ├── m3.pb.go │ │ │ │ │ ├── m3.proto │ │ │ │ │ ├── m4.pb.go │ │ │ │ │ └── m4.proto │ │ │ │ ├── test_b_1 │ │ │ │ │ ├── m1.pb.go │ │ │ │ │ ├── m1.proto │ │ │ │ │ ├── m2.pb.go │ │ │ │ │ └── m2.proto │ │ │ │ ├── test_import_a1m1.pb.go │ │ │ │ ├── test_import_a1m1.proto │ │ │ │ ├── test_import_a1m2.pb.go │ │ │ │ ├── test_import_a1m2.proto │ │ │ │ ├── test_import_all.pb.go │ │ │ │ └── test_import_all.proto │ │ │ │ ├── main_test.go │ │ │ │ ├── multi │ │ │ │ ├── multi1.pb.go │ │ │ │ ├── multi1.proto │ │ │ │ ├── multi2.pb.go │ │ │ │ ├── multi2.proto │ │ │ │ ├── multi3.pb.go │ │ │ │ └── multi3.proto │ │ │ │ ├── my_test │ │ │ │ ├── test.pb.go │ │ │ │ └── test.proto │ │ │ │ └── proto3 │ │ │ │ ├── proto3.pb.go │ │ │ │ └── proto3.proto │ │ │ ├── ptypes │ │ │ ├── any.go │ │ │ ├── any │ │ │ │ ├── any.pb.go │ │ │ │ └── any.proto │ │ │ ├── any_test.go │ │ │ ├── doc.go │ │ │ ├── duration.go │ │ │ ├── duration │ │ │ │ ├── duration.pb.go │ │ │ │ └── duration.proto │ │ │ ├── duration_test.go │ │ │ ├── empty │ │ │ │ ├── empty.pb.go │ │ │ │ └── empty.proto │ │ │ ├── struct │ │ │ │ ├── struct.pb.go │ │ │ │ └── struct.proto │ │ │ ├── timestamp.go │ │ │ ├── timestamp │ │ │ │ ├── timestamp.pb.go │ │ │ │ └── timestamp.proto │ │ │ ├── timestamp_test.go │ │ │ └── wrappers │ │ │ │ ├── wrappers.pb.go │ │ │ │ └── wrappers.proto │ │ │ └── regenerate.sh │ ├── google │ │ └── go-querystring │ │ │ ├── .gitignore │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── query │ │ │ ├── encode.go │ │ │ └── encode_test.go │ └── xanzy │ │ └── go-gitlab │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── branches.go │ │ ├── build_variables.go │ │ ├── build_variables_test.go │ │ ├── builds.go │ │ ├── commits.go │ │ ├── commits_test.go │ │ ├── deploy_keys.go │ │ ├── events.go │ │ ├── events_test.go │ │ ├── examples │ │ ├── labels.go │ │ ├── main.go │ │ ├── projects.go │ │ └── repository_files.go │ │ ├── gitlab.go │ │ ├── gitlab_test.go │ │ ├── groups.go │ │ ├── issues.go │ │ ├── labels.go │ │ ├── merge_requests.go │ │ ├── milestones.go │ │ ├── namespaces.go │ │ ├── notes.go │ │ ├── notifications.go │ │ ├── pipelines.go │ │ ├── pipelines_test.go │ │ ├── project_snippets.go │ │ ├── projects.go │ │ ├── projects_test.go │ │ ├── repositories.go │ │ ├── repository_files.go │ │ ├── services.go │ │ ├── services_test.go │ │ ├── session.go │ │ ├── settings.go │ │ ├── strings.go │ │ ├── system_hooks.go │ │ ├── tags.go │ │ ├── time_stats.go │ │ └── users.go │ ├── golang.org │ └── x │ │ ├── net │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README.md │ │ ├── bpf │ │ │ ├── asm.go │ │ │ ├── constants.go │ │ │ ├── doc.go │ │ │ ├── instructions.go │ │ │ ├── instructions_test.go │ │ │ ├── setter.go │ │ │ ├── testdata │ │ │ │ ├── all_instructions.bpf │ │ │ │ └── all_instructions.txt │ │ │ ├── vm.go │ │ │ ├── vm_aluop_test.go │ │ │ ├── vm_bpf_test.go │ │ │ ├── vm_extension_test.go │ │ │ ├── vm_instructions.go │ │ │ ├── vm_jump_test.go │ │ │ ├── vm_load_test.go │ │ │ ├── vm_ret_test.go │ │ │ ├── vm_scratch_test.go │ │ │ └── vm_test.go │ │ ├── codereview.cfg │ │ ├── context │ │ │ ├── context.go │ │ │ ├── context_test.go │ │ │ ├── ctxhttp │ │ │ │ ├── ctxhttp.go │ │ │ │ ├── ctxhttp_17_test.go │ │ │ │ ├── ctxhttp_pre17.go │ │ │ │ ├── ctxhttp_pre17_test.go │ │ │ │ └── ctxhttp_test.go │ │ │ ├── go17.go │ │ │ ├── go19.go │ │ │ ├── pre_go17.go │ │ │ ├── pre_go19.go │ │ │ └── withtimeout_test.go │ │ ├── dict │ │ │ └── dict.go │ │ ├── dns │ │ │ └── dnsmessage │ │ │ │ ├── example_test.go │ │ │ │ ├── message.go │ │ │ │ └── message_test.go │ │ ├── html │ │ │ ├── atom │ │ │ │ ├── atom.go │ │ │ │ ├── atom_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── table.go │ │ │ │ └── table_test.go │ │ │ ├── charset │ │ │ │ ├── charset.go │ │ │ │ ├── charset_test.go │ │ │ │ └── testdata │ │ │ │ │ ├── HTTP-charset.html │ │ │ │ │ ├── HTTP-vs-UTF-8-BOM.html │ │ │ │ │ ├── HTTP-vs-meta-charset.html │ │ │ │ │ ├── HTTP-vs-meta-content.html │ │ │ │ │ ├── No-encoding-declaration.html │ │ │ │ │ ├── README │ │ │ │ │ ├── UTF-16BE-BOM.html │ │ │ │ │ ├── UTF-16LE-BOM.html │ │ │ │ │ ├── UTF-8-BOM-vs-meta-charset.html │ │ │ │ │ ├── UTF-8-BOM-vs-meta-content.html │ │ │ │ │ ├── meta-charset-attribute.html │ │ │ │ │ └── meta-content-attribute.html │ │ │ ├── const.go │ │ │ ├── doc.go │ │ │ ├── doctype.go │ │ │ ├── entity.go │ │ │ ├── entity_test.go │ │ │ ├── escape.go │ │ │ ├── escape_test.go │ │ │ ├── example_test.go │ │ │ ├── foreign.go │ │ │ ├── node.go │ │ │ ├── node_test.go │ │ │ ├── parse.go │ │ │ ├── parse_test.go │ │ │ ├── render.go │ │ │ ├── render_test.go │ │ │ ├── testdata │ │ │ │ ├── go1.html │ │ │ │ └── webkit │ │ │ │ │ ├── README │ │ │ │ │ ├── adoption01.dat │ │ │ │ │ ├── adoption02.dat │ │ │ │ │ ├── comments01.dat │ │ │ │ │ ├── doctype01.dat │ │ │ │ │ ├── entities01.dat │ │ │ │ │ ├── entities02.dat │ │ │ │ │ ├── html5test-com.dat │ │ │ │ │ ├── inbody01.dat │ │ │ │ │ ├── isindex.dat │ │ │ │ │ ├── pending-spec-changes-plain-text-unsafe.dat │ │ │ │ │ ├── pending-spec-changes.dat │ │ │ │ │ ├── plain-text-unsafe.dat │ │ │ │ │ ├── ruby.dat │ │ │ │ │ ├── scriptdata01.dat │ │ │ │ │ ├── scripted │ │ │ │ │ ├── adoption01.dat │ │ │ │ │ └── webkit01.dat │ │ │ │ │ ├── tables01.dat │ │ │ │ │ ├── template.dat │ │ │ │ │ ├── tests1.dat │ │ │ │ │ ├── tests10.dat │ │ │ │ │ ├── tests11.dat │ │ │ │ │ ├── tests12.dat │ │ │ │ │ ├── tests14.dat │ │ │ │ │ ├── tests15.dat │ │ │ │ │ ├── tests16.dat │ │ │ │ │ ├── tests17.dat │ │ │ │ │ ├── tests18.dat │ │ │ │ │ ├── tests19.dat │ │ │ │ │ ├── tests2.dat │ │ │ │ │ ├── tests20.dat │ │ │ │ │ ├── tests21.dat │ │ │ │ │ ├── tests22.dat │ │ │ │ │ ├── tests23.dat │ │ │ │ │ ├── tests24.dat │ │ │ │ │ ├── tests25.dat │ │ │ │ │ ├── tests26.dat │ │ │ │ │ ├── tests3.dat │ │ │ │ │ ├── tests4.dat │ │ │ │ │ ├── tests5.dat │ │ │ │ │ ├── tests6.dat │ │ │ │ │ ├── tests7.dat │ │ │ │ │ ├── tests8.dat │ │ │ │ │ ├── tests9.dat │ │ │ │ │ ├── tests_innerHTML_1.dat │ │ │ │ │ ├── tricky01.dat │ │ │ │ │ ├── webkit01.dat │ │ │ │ │ └── webkit02.dat │ │ │ ├── token.go │ │ │ └── token_test.go │ │ ├── http │ │ │ ├── httpguts │ │ │ │ ├── guts.go │ │ │ │ ├── httplex.go │ │ │ │ └── httplex_test.go │ │ │ └── httpproxy │ │ │ │ ├── export_test.go │ │ │ │ ├── go19_test.go │ │ │ │ ├── proxy.go │ │ │ │ └── proxy_test.go │ │ ├── http2 │ │ │ ├── .gitignore │ │ │ ├── Dockerfile │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── ciphers.go │ │ │ ├── ciphers_test.go │ │ │ ├── client_conn_pool.go │ │ │ ├── configure_transport.go │ │ │ ├── databuffer.go │ │ │ ├── databuffer_test.go │ │ │ ├── errors.go │ │ │ ├── errors_test.go │ │ │ ├── flow.go │ │ │ ├── flow_test.go │ │ │ ├── frame.go │ │ │ ├── frame_test.go │ │ │ ├── go16.go │ │ │ ├── go17.go │ │ │ ├── go17_not18.go │ │ │ ├── go18.go │ │ │ ├── go18_test.go │ │ │ ├── go19.go │ │ │ ├── go19_test.go │ │ │ ├── gotrack.go │ │ │ ├── gotrack_test.go │ │ │ ├── h2demo │ │ │ │ ├── .gitignore │ │ │ │ ├── Dockerfile │ │ │ │ ├── Dockerfile.0 │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── deployment-prod.yaml │ │ │ │ ├── h2demo.go │ │ │ │ ├── launch.go │ │ │ │ ├── rootCA.key │ │ │ │ ├── rootCA.pem │ │ │ │ ├── rootCA.srl │ │ │ │ ├── server.crt │ │ │ │ ├── server.key │ │ │ │ ├── service.yaml │ │ │ │ └── tmpl.go │ │ │ ├── h2i │ │ │ │ ├── README.md │ │ │ │ └── h2i.go │ │ │ ├── headermap.go │ │ │ ├── hpack │ │ │ │ ├── encode.go │ │ │ │ ├── encode_test.go │ │ │ │ ├── hpack.go │ │ │ │ ├── hpack_test.go │ │ │ │ ├── huffman.go │ │ │ │ ├── tables.go │ │ │ │ └── tables_test.go │ │ │ ├── http2.go │ │ │ ├── http2_test.go │ │ │ ├── not_go16.go │ │ │ ├── not_go17.go │ │ │ ├── not_go18.go │ │ │ ├── not_go19.go │ │ │ ├── pipe.go │ │ │ ├── pipe_test.go │ │ │ ├── server.go │ │ │ ├── server_push_test.go │ │ │ ├── server_test.go │ │ │ ├── testdata │ │ │ │ └── draft-ietf-httpbis-http2.xml │ │ │ ├── transport.go │ │ │ ├── transport_test.go │ │ │ ├── write.go │ │ │ ├── writesched.go │ │ │ ├── writesched_priority.go │ │ │ ├── writesched_priority_test.go │ │ │ ├── writesched_random.go │ │ │ ├── writesched_random_test.go │ │ │ ├── writesched_test.go │ │ │ └── z_spec_test.go │ │ ├── icmp │ │ │ ├── diag_test.go │ │ │ ├── dstunreach.go │ │ │ ├── echo.go │ │ │ ├── endpoint.go │ │ │ ├── example_test.go │ │ │ ├── extension.go │ │ │ ├── extension_test.go │ │ │ ├── helper_posix.go │ │ │ ├── interface.go │ │ │ ├── ipv4.go │ │ │ ├── ipv4_test.go │ │ │ ├── ipv6.go │ │ │ ├── listen_posix.go │ │ │ ├── listen_stub.go │ │ │ ├── message.go │ │ │ ├── message_test.go │ │ │ ├── messagebody.go │ │ │ ├── mpls.go │ │ │ ├── multipart.go │ │ │ ├── multipart_test.go │ │ │ ├── packettoobig.go │ │ │ ├── paramprob.go │ │ │ ├── sys_freebsd.go │ │ │ └── timeexceeded.go │ │ ├── idna │ │ │ ├── example_test.go │ │ │ ├── idna.go │ │ │ ├── idna_test.go │ │ │ ├── punycode.go │ │ │ ├── punycode_test.go │ │ │ ├── tables.go │ │ │ ├── trie.go │ │ │ └── trieval.go │ │ ├── internal │ │ │ ├── iana │ │ │ │ ├── const.go │ │ │ │ └── gen.go │ │ │ ├── nettest │ │ │ │ ├── helper_bsd.go │ │ │ │ ├── helper_nobsd.go │ │ │ │ ├── helper_posix.go │ │ │ │ ├── helper_stub.go │ │ │ │ ├── helper_unix.go │ │ │ │ ├── helper_windows.go │ │ │ │ ├── interface.go │ │ │ │ ├── rlimit.go │ │ │ │ └── stack.go │ │ │ ├── socket │ │ │ │ ├── cmsghdr.go │ │ │ │ ├── cmsghdr_bsd.go │ │ │ │ ├── cmsghdr_linux_32bit.go │ │ │ │ ├── cmsghdr_linux_64bit.go │ │ │ │ ├── cmsghdr_solaris_64bit.go │ │ │ │ ├── cmsghdr_stub.go │ │ │ │ ├── defs_darwin.go │ │ │ │ ├── defs_dragonfly.go │ │ │ │ ├── defs_freebsd.go │ │ │ │ ├── defs_linux.go │ │ │ │ ├── defs_netbsd.go │ │ │ │ ├── defs_openbsd.go │ │ │ │ ├── defs_solaris.go │ │ │ │ ├── error_unix.go │ │ │ │ ├── error_windows.go │ │ │ │ ├── iovec_32bit.go │ │ │ │ ├── iovec_64bit.go │ │ │ │ ├── iovec_solaris_64bit.go │ │ │ │ ├── iovec_stub.go │ │ │ │ ├── mmsghdr_stub.go │ │ │ │ ├── mmsghdr_unix.go │ │ │ │ ├── msghdr_bsd.go │ │ │ │ ├── msghdr_bsdvar.go │ │ │ │ ├── msghdr_linux.go │ │ │ │ ├── msghdr_linux_32bit.go │ │ │ │ ├── msghdr_linux_64bit.go │ │ │ │ ├── msghdr_openbsd.go │ │ │ │ ├── msghdr_solaris_64bit.go │ │ │ │ ├── msghdr_stub.go │ │ │ │ ├── rawconn.go │ │ │ │ ├── rawconn_mmsg.go │ │ │ │ ├── rawconn_msg.go │ │ │ │ ├── rawconn_nommsg.go │ │ │ │ ├── rawconn_nomsg.go │ │ │ │ ├── rawconn_stub.go │ │ │ │ ├── reflect.go │ │ │ │ ├── socket.go │ │ │ │ ├── socket_go1_9_test.go │ │ │ │ ├── socket_test.go │ │ │ │ ├── sys.go │ │ │ │ ├── sys_bsd.go │ │ │ │ ├── sys_bsdvar.go │ │ │ │ ├── sys_darwin.go │ │ │ │ ├── sys_dragonfly.go │ │ │ │ ├── sys_linux.go │ │ │ │ ├── sys_linux_386.go │ │ │ │ ├── sys_linux_386.s │ │ │ │ ├── sys_linux_amd64.go │ │ │ │ ├── sys_linux_arm.go │ │ │ │ ├── sys_linux_arm64.go │ │ │ │ ├── sys_linux_mips.go │ │ │ │ ├── sys_linux_mips64.go │ │ │ │ ├── sys_linux_mips64le.go │ │ │ │ ├── sys_linux_mipsle.go │ │ │ │ ├── sys_linux_ppc64.go │ │ │ │ ├── sys_linux_ppc64le.go │ │ │ │ ├── sys_linux_s390x.go │ │ │ │ ├── sys_linux_s390x.s │ │ │ │ ├── sys_netbsd.go │ │ │ │ ├── sys_posix.go │ │ │ │ ├── sys_solaris.go │ │ │ │ ├── sys_solaris_amd64.s │ │ │ │ ├── sys_stub.go │ │ │ │ ├── sys_unix.go │ │ │ │ ├── sys_windows.go │ │ │ │ ├── zsys_darwin_386.go │ │ │ │ ├── zsys_darwin_amd64.go │ │ │ │ ├── zsys_darwin_arm.go │ │ │ │ ├── zsys_darwin_arm64.go │ │ │ │ ├── zsys_dragonfly_amd64.go │ │ │ │ ├── zsys_freebsd_386.go │ │ │ │ ├── zsys_freebsd_amd64.go │ │ │ │ ├── zsys_freebsd_arm.go │ │ │ │ ├── zsys_linux_386.go │ │ │ │ ├── zsys_linux_amd64.go │ │ │ │ ├── zsys_linux_arm.go │ │ │ │ ├── zsys_linux_arm64.go │ │ │ │ ├── zsys_linux_mips.go │ │ │ │ ├── zsys_linux_mips64.go │ │ │ │ ├── zsys_linux_mips64le.go │ │ │ │ ├── zsys_linux_mipsle.go │ │ │ │ ├── zsys_linux_ppc64.go │ │ │ │ ├── zsys_linux_ppc64le.go │ │ │ │ ├── zsys_linux_s390x.go │ │ │ │ ├── zsys_netbsd_386.go │ │ │ │ ├── zsys_netbsd_amd64.go │ │ │ │ ├── zsys_netbsd_arm.go │ │ │ │ ├── zsys_openbsd_386.go │ │ │ │ ├── zsys_openbsd_amd64.go │ │ │ │ ├── zsys_openbsd_arm.go │ │ │ │ └── zsys_solaris_amd64.go │ │ │ ├── socks │ │ │ │ ├── client.go │ │ │ │ ├── dial_test.go │ │ │ │ └── socks.go │ │ │ ├── sockstest │ │ │ │ ├── server.go │ │ │ │ └── server_test.go │ │ │ └── timeseries │ │ │ │ ├── timeseries.go │ │ │ │ └── timeseries_test.go │ │ ├── ipv4 │ │ │ ├── batch.go │ │ │ ├── bpf_test.go │ │ │ ├── control.go │ │ │ ├── control_bsd.go │ │ │ ├── control_pktinfo.go │ │ │ ├── control_stub.go │ │ │ ├── control_test.go │ │ │ ├── control_unix.go │ │ │ ├── control_windows.go │ │ │ ├── defs_darwin.go │ │ │ ├── defs_dragonfly.go │ │ │ ├── defs_freebsd.go │ │ │ ├── defs_linux.go │ │ │ ├── defs_netbsd.go │ │ │ ├── defs_openbsd.go │ │ │ ├── defs_solaris.go │ │ │ ├── dgramopt.go │ │ │ ├── doc.go │ │ │ ├── endpoint.go │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── genericopt.go │ │ │ ├── header.go │ │ │ ├── header_test.go │ │ │ ├── helper.go │ │ │ ├── iana.go │ │ │ ├── icmp.go │ │ │ ├── icmp_linux.go │ │ │ ├── icmp_stub.go │ │ │ ├── icmp_test.go │ │ │ ├── multicast_test.go │ │ │ ├── multicastlistener_test.go │ │ │ ├── multicastsockopt_test.go │ │ │ ├── packet.go │ │ │ ├── packet_go1_8.go │ │ │ ├── packet_go1_9.go │ │ │ ├── payload.go │ │ │ ├── payload_cmsg.go │ │ │ ├── payload_cmsg_go1_8.go │ │ │ ├── payload_cmsg_go1_9.go │ │ │ ├── payload_nocmsg.go │ │ │ ├── readwrite_go1_8_test.go │ │ │ ├── readwrite_go1_9_test.go │ │ │ ├── readwrite_test.go │ │ │ ├── sockopt.go │ │ │ ├── sockopt_posix.go │ │ │ ├── sockopt_stub.go │ │ │ ├── sys_asmreq.go │ │ │ ├── sys_asmreq_stub.go │ │ │ ├── sys_asmreqn.go │ │ │ ├── sys_asmreqn_stub.go │ │ │ ├── sys_bpf.go │ │ │ ├── sys_bpf_stub.go │ │ │ ├── sys_bsd.go │ │ │ ├── sys_darwin.go │ │ │ ├── sys_dragonfly.go │ │ │ ├── sys_freebsd.go │ │ │ ├── sys_linux.go │ │ │ ├── sys_solaris.go │ │ │ ├── sys_ssmreq.go │ │ │ ├── sys_ssmreq_stub.go │ │ │ ├── sys_stub.go │ │ │ ├── sys_windows.go │ │ │ ├── unicast_test.go │ │ │ ├── unicastsockopt_test.go │ │ │ ├── zsys_darwin.go │ │ │ ├── zsys_dragonfly.go │ │ │ ├── zsys_freebsd_386.go │ │ │ ├── zsys_freebsd_amd64.go │ │ │ ├── zsys_freebsd_arm.go │ │ │ ├── zsys_linux_386.go │ │ │ ├── zsys_linux_amd64.go │ │ │ ├── zsys_linux_arm.go │ │ │ ├── zsys_linux_arm64.go │ │ │ ├── zsys_linux_mips.go │ │ │ ├── zsys_linux_mips64.go │ │ │ ├── zsys_linux_mips64le.go │ │ │ ├── zsys_linux_mipsle.go │ │ │ ├── zsys_linux_ppc.go │ │ │ ├── zsys_linux_ppc64.go │ │ │ ├── zsys_linux_ppc64le.go │ │ │ ├── zsys_linux_s390x.go │ │ │ ├── zsys_netbsd.go │ │ │ ├── zsys_openbsd.go │ │ │ └── zsys_solaris.go │ │ ├── ipv6 │ │ │ ├── batch.go │ │ │ ├── bpf_test.go │ │ │ ├── control.go │ │ │ ├── control_rfc2292_unix.go │ │ │ ├── control_rfc3542_unix.go │ │ │ ├── control_stub.go │ │ │ ├── control_test.go │ │ │ ├── control_unix.go │ │ │ ├── control_windows.go │ │ │ ├── defs_darwin.go │ │ │ ├── defs_dragonfly.go │ │ │ ├── defs_freebsd.go │ │ │ ├── defs_linux.go │ │ │ ├── defs_netbsd.go │ │ │ ├── defs_openbsd.go │ │ │ ├── defs_solaris.go │ │ │ ├── dgramopt.go │ │ │ ├── doc.go │ │ │ ├── endpoint.go │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── genericopt.go │ │ │ ├── header.go │ │ │ ├── header_test.go │ │ │ ├── helper.go │ │ │ ├── iana.go │ │ │ ├── icmp.go │ │ │ ├── icmp_bsd.go │ │ │ ├── icmp_linux.go │ │ │ ├── icmp_solaris.go │ │ │ ├── icmp_stub.go │ │ │ ├── icmp_test.go │ │ │ ├── icmp_windows.go │ │ │ ├── mocktransponder_test.go │ │ │ ├── multicast_test.go │ │ │ ├── multicastlistener_test.go │ │ │ ├── multicastsockopt_test.go │ │ │ ├── payload.go │ │ │ ├── payload_cmsg.go │ │ │ ├── payload_cmsg_go1_8.go │ │ │ ├── payload_cmsg_go1_9.go │ │ │ ├── payload_nocmsg.go │ │ │ ├── readwrite_go1_8_test.go │ │ │ ├── readwrite_go1_9_test.go │ │ │ ├── readwrite_test.go │ │ │ ├── sockopt.go │ │ │ ├── sockopt_posix.go │ │ │ ├── sockopt_stub.go │ │ │ ├── sockopt_test.go │ │ │ ├── sys_asmreq.go │ │ │ ├── sys_asmreq_stub.go │ │ │ ├── sys_bpf.go │ │ │ ├── sys_bpf_stub.go │ │ │ ├── sys_bsd.go │ │ │ ├── sys_darwin.go │ │ │ ├── sys_freebsd.go │ │ │ ├── sys_linux.go │ │ │ ├── sys_solaris.go │ │ │ ├── sys_ssmreq.go │ │ │ ├── sys_ssmreq_stub.go │ │ │ ├── sys_stub.go │ │ │ ├── sys_windows.go │ │ │ ├── unicast_test.go │ │ │ ├── unicastsockopt_test.go │ │ │ ├── zsys_darwin.go │ │ │ ├── zsys_dragonfly.go │ │ │ ├── zsys_freebsd_386.go │ │ │ ├── zsys_freebsd_amd64.go │ │ │ ├── zsys_freebsd_arm.go │ │ │ ├── zsys_linux_386.go │ │ │ ├── zsys_linux_amd64.go │ │ │ ├── zsys_linux_arm.go │ │ │ ├── zsys_linux_arm64.go │ │ │ ├── zsys_linux_mips.go │ │ │ ├── zsys_linux_mips64.go │ │ │ ├── zsys_linux_mips64le.go │ │ │ ├── zsys_linux_mipsle.go │ │ │ ├── zsys_linux_ppc.go │ │ │ ├── zsys_linux_ppc64.go │ │ │ ├── zsys_linux_ppc64le.go │ │ │ ├── zsys_linux_s390x.go │ │ │ ├── zsys_netbsd.go │ │ │ ├── zsys_openbsd.go │ │ │ └── zsys_solaris.go │ │ ├── lif │ │ │ ├── address.go │ │ │ ├── address_test.go │ │ │ ├── binary.go │ │ │ ├── defs_solaris.go │ │ │ ├── lif.go │ │ │ ├── link.go │ │ │ ├── link_test.go │ │ │ ├── sys.go │ │ │ ├── sys_solaris_amd64.s │ │ │ ├── syscall.go │ │ │ └── zsys_solaris_amd64.go │ │ ├── nettest │ │ │ ├── conntest.go │ │ │ ├── conntest_go16.go │ │ │ ├── conntest_go17.go │ │ │ └── conntest_test.go │ │ ├── netutil │ │ │ ├── listen.go │ │ │ └── listen_test.go │ │ ├── proxy │ │ │ ├── direct.go │ │ │ ├── per_host.go │ │ │ ├── per_host_test.go │ │ │ ├── proxy.go │ │ │ ├── proxy_test.go │ │ │ └── socks5.go │ │ ├── publicsuffix │ │ │ ├── gen.go │ │ │ ├── list.go │ │ │ ├── list_test.go │ │ │ ├── table.go │ │ │ └── table_test.go │ │ ├── route │ │ │ ├── address.go │ │ │ ├── address_darwin_test.go │ │ │ ├── address_test.go │ │ │ ├── binary.go │ │ │ ├── defs_darwin.go │ │ │ ├── defs_dragonfly.go │ │ │ ├── defs_freebsd.go │ │ │ ├── defs_netbsd.go │ │ │ ├── defs_openbsd.go │ │ │ ├── interface.go │ │ │ ├── interface_announce.go │ │ │ ├── interface_classic.go │ │ │ ├── interface_freebsd.go │ │ │ ├── interface_multicast.go │ │ │ ├── interface_openbsd.go │ │ │ ├── message.go │ │ │ ├── message_darwin_test.go │ │ │ ├── message_freebsd_test.go │ │ │ ├── message_test.go │ │ │ ├── route.go │ │ │ ├── route_classic.go │ │ │ ├── route_openbsd.go │ │ │ ├── route_test.go │ │ │ ├── sys.go │ │ │ ├── sys_darwin.go │ │ │ ├── sys_dragonfly.go │ │ │ ├── sys_freebsd.go │ │ │ ├── sys_netbsd.go │ │ │ ├── sys_openbsd.go │ │ │ ├── syscall.go │ │ │ ├── zsys_darwin.go │ │ │ ├── zsys_dragonfly.go │ │ │ ├── zsys_freebsd_386.go │ │ │ ├── zsys_freebsd_amd64.go │ │ │ ├── zsys_freebsd_arm.go │ │ │ ├── zsys_netbsd.go │ │ │ └── zsys_openbsd.go │ │ ├── trace │ │ │ ├── events.go │ │ │ ├── histogram.go │ │ │ ├── histogram_test.go │ │ │ ├── trace.go │ │ │ ├── trace_go16.go │ │ │ ├── trace_go17.go │ │ │ └── trace_test.go │ │ ├── webdav │ │ │ ├── file.go │ │ │ ├── file_go1.6.go │ │ │ ├── file_go1.7.go │ │ │ ├── file_test.go │ │ │ ├── if.go │ │ │ ├── if_test.go │ │ │ ├── internal │ │ │ │ └── xml │ │ │ │ │ ├── README │ │ │ │ │ ├── atom_test.go │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── marshal.go │ │ │ │ │ ├── marshal_test.go │ │ │ │ │ ├── read.go │ │ │ │ │ ├── read_test.go │ │ │ │ │ ├── typeinfo.go │ │ │ │ │ ├── xml.go │ │ │ │ │ └── xml_test.go │ │ │ ├── litmus_test_server.go │ │ │ ├── lock.go │ │ │ ├── lock_test.go │ │ │ ├── prop.go │ │ │ ├── prop_test.go │ │ │ ├── webdav.go │ │ │ ├── webdav_test.go │ │ │ ├── xml.go │ │ │ └── xml_test.go │ │ ├── websocket │ │ │ ├── client.go │ │ │ ├── dial.go │ │ │ ├── dial_test.go │ │ │ ├── exampledial_test.go │ │ │ ├── examplehandler_test.go │ │ │ ├── hybi.go │ │ │ ├── hybi_test.go │ │ │ ├── server.go │ │ │ ├── websocket.go │ │ │ └── websocket_test.go │ │ └── xsrftoken │ │ │ ├── xsrf.go │ │ │ └── xsrf_test.go │ │ └── oauth2 │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── amazon │ │ └── amazon.go │ │ ├── bitbucket │ │ └── bitbucket.go │ │ ├── cern │ │ └── cern.go │ │ ├── clientcredentials │ │ ├── clientcredentials.go │ │ └── clientcredentials_test.go │ │ ├── example_test.go │ │ ├── facebook │ │ └── facebook.go │ │ ├── fitbit │ │ └── fitbit.go │ │ ├── foursquare │ │ └── foursquare.go │ │ ├── github │ │ └── github.go │ │ ├── gitlab │ │ └── gitlab.go │ │ ├── google │ │ ├── appengine.go │ │ ├── appengine_hook.go │ │ ├── appengineflex_hook.go │ │ ├── default.go │ │ ├── doc_go19.go │ │ ├── doc_not_go19.go │ │ ├── example_test.go │ │ ├── go19.go │ │ ├── google.go │ │ ├── google_test.go │ │ ├── jwt.go │ │ ├── jwt_test.go │ │ ├── not_go19.go │ │ ├── sdk.go │ │ ├── sdk_test.go │ │ └── testdata │ │ │ └── gcloud │ │ │ ├── credentials │ │ │ └── properties │ │ ├── heroku │ │ └── heroku.go │ │ ├── hipchat │ │ └── hipchat.go │ │ ├── internal │ │ ├── client_appengine.go │ │ ├── doc.go │ │ ├── oauth2.go │ │ ├── token.go │ │ ├── token_test.go │ │ └── transport.go │ │ ├── jira │ │ ├── jira.go │ │ └── jira_test.go │ │ ├── jws │ │ ├── jws.go │ │ └── jws_test.go │ │ ├── jwt │ │ ├── example_test.go │ │ ├── jwt.go │ │ └── jwt_test.go │ │ ├── kakao │ │ └── kakao.go │ │ ├── linkedin │ │ └── linkedin.go │ │ ├── mailchimp │ │ └── mailchimp.go │ │ ├── mailru │ │ └── mailru.go │ │ ├── mediamath │ │ └── mediamath.go │ │ ├── microsoft │ │ └── microsoft.go │ │ ├── oauth2.go │ │ ├── oauth2_test.go │ │ ├── odnoklassniki │ │ └── odnoklassniki.go │ │ ├── paypal │ │ └── paypal.go │ │ ├── slack │ │ └── slack.go │ │ ├── spotify │ │ └── spotify.go │ │ ├── stackoverflow │ │ └── stackoverflow.go │ │ ├── token.go │ │ ├── token_test.go │ │ ├── transport.go │ │ ├── transport_test.go │ │ ├── twitch │ │ └── twitch.go │ │ ├── uber │ │ └── uber.go │ │ ├── vk │ │ └── vk.go │ │ ├── yahoo │ │ └── yahoo.go │ │ └── yandex │ │ └── yandex.go │ ├── google.golang.org │ └── appengine │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── aetest │ │ ├── doc.go │ │ ├── instance.go │ │ ├── instance_classic.go │ │ ├── instance_test.go │ │ ├── instance_vm.go │ │ └── user.go │ │ ├── appengine.go │ │ ├── appengine_test.go │ │ ├── appengine_vm.go │ │ ├── blobstore │ │ ├── blobstore.go │ │ ├── blobstore_test.go │ │ └── read.go │ │ ├── capability │ │ └── capability.go │ │ ├── channel │ │ ├── channel.go │ │ └── channel_test.go │ │ ├── cloudsql │ │ ├── cloudsql.go │ │ ├── cloudsql_classic.go │ │ └── cloudsql_vm.go │ │ ├── cmd │ │ ├── aebundler │ │ │ └── aebundler.go │ │ ├── aedeploy │ │ │ └── aedeploy.go │ │ └── aefix │ │ │ ├── ae.go │ │ │ ├── ae_test.go │ │ │ ├── fix.go │ │ │ ├── main.go │ │ │ ├── main_test.go │ │ │ └── typecheck.go │ │ ├── datastore │ │ ├── datastore.go │ │ ├── datastore_test.go │ │ ├── doc.go │ │ ├── key.go │ │ ├── key_test.go │ │ ├── load.go │ │ ├── load_test.go │ │ ├── metadata.go │ │ ├── prop.go │ │ ├── prop_test.go │ │ ├── query.go │ │ ├── query_test.go │ │ ├── save.go │ │ ├── time_test.go │ │ └── transaction.go │ │ ├── delay │ │ ├── delay.go │ │ ├── delay_go17.go │ │ ├── delay_go17_test.go │ │ ├── delay_pre17.go │ │ └── delay_test.go │ │ ├── demos │ │ ├── guestbook │ │ │ ├── app.yaml │ │ │ ├── favicon.ico │ │ │ ├── guestbook.go │ │ │ ├── index.yaml │ │ │ └── templates │ │ │ │ └── guestbook.html │ │ └── helloworld │ │ │ ├── app.yaml │ │ │ ├── favicon.ico │ │ │ └── helloworld.go │ │ ├── errors.go │ │ ├── file │ │ └── file.go │ │ ├── identity.go │ │ ├── image │ │ └── image.go │ │ ├── internal │ │ ├── aetesting │ │ │ └── fake.go │ │ ├── api.go │ │ ├── api_classic.go │ │ ├── api_common.go │ │ ├── api_pre17.go │ │ ├── api_race_test.go │ │ ├── api_test.go │ │ ├── app_id.go │ │ ├── app_id_test.go │ │ ├── app_identity │ │ │ ├── app_identity_service.pb.go │ │ │ └── app_identity_service.proto │ │ ├── base │ │ │ ├── api_base.pb.go │ │ │ └── api_base.proto │ │ ├── blobstore │ │ │ ├── blobstore_service.pb.go │ │ │ └── blobstore_service.proto │ │ ├── capability │ │ │ ├── capability_service.pb.go │ │ │ └── capability_service.proto │ │ ├── channel │ │ │ ├── channel_service.pb.go │ │ │ └── channel_service.proto │ │ ├── datastore │ │ │ ├── datastore_v3.pb.go │ │ │ └── datastore_v3.proto │ │ ├── identity.go │ │ ├── identity_classic.go │ │ ├── identity_vm.go │ │ ├── image │ │ │ ├── images_service.pb.go │ │ │ └── images_service.proto │ │ ├── internal.go │ │ ├── internal_vm_test.go │ │ ├── log │ │ │ ├── log_service.pb.go │ │ │ └── log_service.proto │ │ ├── mail │ │ │ ├── mail_service.pb.go │ │ │ └── mail_service.proto │ │ ├── main.go │ │ ├── main_vm.go │ │ ├── memcache │ │ │ ├── memcache_service.pb.go │ │ │ └── memcache_service.proto │ │ ├── metadata.go │ │ ├── modules │ │ │ ├── modules_service.pb.go │ │ │ └── modules_service.proto │ │ ├── net.go │ │ ├── net_test.go │ │ ├── regen.sh │ │ ├── remote_api │ │ │ ├── remote_api.pb.go │ │ │ └── remote_api.proto │ │ ├── search │ │ │ ├── search.pb.go │ │ │ └── search.proto │ │ ├── socket │ │ │ ├── socket_service.pb.go │ │ │ └── socket_service.proto │ │ ├── system │ │ │ ├── system_service.pb.go │ │ │ └── system_service.proto │ │ ├── taskqueue │ │ │ ├── taskqueue_service.pb.go │ │ │ └── taskqueue_service.proto │ │ ├── transaction.go │ │ ├── urlfetch │ │ │ ├── urlfetch_service.pb.go │ │ │ └── urlfetch_service.proto │ │ ├── user │ │ │ ├── user_service.pb.go │ │ │ └── user_service.proto │ │ └── xmpp │ │ │ ├── xmpp_service.pb.go │ │ │ └── xmpp_service.proto │ │ ├── log │ │ ├── api.go │ │ ├── log.go │ │ └── log_test.go │ │ ├── mail │ │ ├── mail.go │ │ └── mail_test.go │ │ ├── memcache │ │ ├── memcache.go │ │ └── memcache_test.go │ │ ├── module │ │ ├── module.go │ │ └── module_test.go │ │ ├── namespace.go │ │ ├── namespace_test.go │ │ ├── remote_api │ │ ├── client.go │ │ ├── client_test.go │ │ └── remote_api.go │ │ ├── runtime │ │ ├── runtime.go │ │ └── runtime_test.go │ │ ├── search │ │ ├── doc.go │ │ ├── field.go │ │ ├── search.go │ │ ├── search_test.go │ │ ├── struct.go │ │ └── struct_test.go │ │ ├── socket │ │ ├── doc.go │ │ ├── socket_classic.go │ │ └── socket_vm.go │ │ ├── taskqueue │ │ ├── taskqueue.go │ │ └── taskqueue_test.go │ │ ├── timeout.go │ │ ├── urlfetch │ │ └── urlfetch.go │ │ ├── user │ │ ├── oauth.go │ │ ├── user.go │ │ ├── user_classic.go │ │ ├── user_test.go │ │ └── user_vm.go │ │ └── xmpp │ │ ├── xmpp.go │ │ └── xmpp_test.go │ └── gopkg.in │ └── xanzy │ └── go-gitlab.v0 │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── award_emojis.go │ ├── boards.go │ ├── branches.go │ ├── broadcast_messages.go │ ├── broadcast_messages_test.go │ ├── build_variables.go │ ├── build_variables_test.go │ ├── commits.go │ ├── commits_test.go │ ├── deploy_keys.go │ ├── deployments.go │ ├── environments.go │ ├── event_types.go │ ├── event_types_test.go │ ├── events.go │ ├── examples │ ├── basic_auth.go │ ├── impersonation.go │ ├── labels.go │ ├── main.go │ ├── pipelines.go │ ├── projects.go │ └── repository_files.go │ ├── feature_flags.go │ ├── feature_flags_test.go │ ├── gitignore_templates.go │ ├── gitlab.go │ ├── gitlab_test.go │ ├── group_members.go │ ├── group_milestones.go │ ├── groups.go │ ├── groups_test.go │ ├── issue_links.go │ ├── issues.go │ ├── jobs.go │ ├── jobs_test.go │ ├── labels.go │ ├── merge_request_approvals.go │ ├── merge_requests.go │ ├── milestones.go │ ├── namespaces.go │ ├── notes.go │ ├── notifications.go │ ├── pages_domains.go │ ├── pipeline_schedules.go │ ├── pipeline_triggers.go │ ├── pipeline_triggers_test.go │ ├── pipelines.go │ ├── pipelines_test.go │ ├── project_members.go │ ├── project_snippets.go │ ├── projects.go │ ├── projects_test.go │ ├── protected_branches.go │ ├── repositories.go │ ├── repository_files.go │ ├── runners.go │ ├── runners_test.go │ ├── search.go │ ├── services.go │ ├── services_test.go │ ├── session.go │ ├── settings.go │ ├── sidekiq_metrics.go │ ├── snippets.go │ ├── strings.go │ ├── system_hooks.go │ ├── tags.go │ ├── tags_test.go │ ├── time_stats.go │ ├── todos.go │ ├── todos_test.go │ ├── users.go │ ├── validate.go │ ├── validate_test.go │ ├── version.go │ └── wikis.go ├── openapi ├── README.md ├── main.go ├── swagger-ui │ └── dist │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── index.html │ │ ├── oauth2-redirect.html │ │ ├── swagger-ui-bundle.js │ │ ├── swagger-ui-bundle.js.map │ │ ├── swagger-ui-standalone-preset.js │ │ ├── swagger-ui-standalone-preset.js.map │ │ ├── swagger-ui.css │ │ ├── swagger-ui.css.map │ │ ├── swagger-ui.js │ │ └── swagger-ui.js.map └── vendor │ ├── github.com │ ├── PuerkitoBio │ │ ├── purell │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── purell.go │ │ └── urlesc │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── urlesc.go │ ├── emicklei │ │ ├── go-restful-openapi │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── build_definitions.go │ │ │ ├── build_path.go │ │ │ ├── config.go │ │ │ ├── definition_builder.go │ │ │ ├── lookup.go │ │ │ ├── property_ext.go │ │ │ └── spec_resource.go │ │ └── go-restful │ │ │ ├── CHANGES.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── Srcfile │ │ │ ├── bench_test.sh │ │ │ ├── compress.go │ │ │ ├── compressor_cache.go │ │ │ ├── compressor_pools.go │ │ │ ├── compressors.go │ │ │ ├── constants.go │ │ │ ├── container.go │ │ │ ├── cors_filter.go │ │ │ ├── coverage.sh │ │ │ ├── curly.go │ │ │ ├── curly_route.go │ │ │ ├── doc.go │ │ │ ├── entity_accessors.go │ │ │ ├── filter.go │ │ │ ├── jsr311.go │ │ │ ├── log │ │ │ └── log.go │ │ │ ├── logger.go │ │ │ ├── mime.go │ │ │ ├── options_filter.go │ │ │ ├── parameter.go │ │ │ ├── path_expression.go │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ ├── route.go │ │ │ ├── route_builder.go │ │ │ ├── router.go │ │ │ ├── service_error.go │ │ │ ├── web_service.go │ │ │ └── web_service_container.go │ ├── go-openapi │ │ ├── jsonpointer │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── pointer.go │ │ ├── jsonreference │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── reference.go │ │ ├── spec │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bindata.go │ │ │ ├── contact_info.go │ │ │ ├── expander.go │ │ │ ├── external_docs.go │ │ │ ├── header.go │ │ │ ├── info.go │ │ │ ├── items.go │ │ │ ├── license.go │ │ │ ├── operation.go │ │ │ ├── parameter.go │ │ │ ├── path_item.go │ │ │ ├── paths.go │ │ │ ├── ref.go │ │ │ ├── response.go │ │ │ ├── responses.go │ │ │ ├── schema.go │ │ │ ├── security_scheme.go │ │ │ ├── spec.go │ │ │ ├── swagger.go │ │ │ ├── tag.go │ │ │ └── xml_object.go │ │ └── swag │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── convert.go │ │ │ ├── convert_types.go │ │ │ ├── json.go │ │ │ ├── loading.go │ │ │ ├── net.go │ │ │ ├── path.go │ │ │ └── util.go │ └── mailru │ │ └── easyjson │ │ ├── LICENSE │ │ ├── buffer │ │ └── pool.go │ │ ├── jlexer │ │ ├── error.go │ │ └── lexer.go │ │ └── jwriter │ │ └── writer.go │ ├── golang.org │ └── x │ │ ├── net │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── idna │ │ │ ├── idna.go │ │ │ ├── punycode.go │ │ │ ├── tables.go │ │ │ ├── trie.go │ │ │ └── trieval.go │ │ └── text │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── cases │ │ ├── cases.go │ │ ├── context.go │ │ ├── fold.go │ │ ├── gen.go │ │ ├── gen_trieval.go │ │ ├── icu.go │ │ ├── info.go │ │ ├── map.go │ │ ├── tables.go │ │ └── trieval.go │ │ ├── internal │ │ ├── gen.go │ │ ├── internal.go │ │ ├── match.go │ │ ├── tables.go │ │ └── tag │ │ │ └── tag.go │ │ ├── language │ │ ├── Makefile │ │ ├── common.go │ │ ├── coverage.go │ │ ├── gen_common.go │ │ ├── gen_index.go │ │ ├── go1_1.go │ │ ├── go1_2.go │ │ ├── index.go │ │ ├── language.go │ │ ├── lookup.go │ │ ├── maketables.go │ │ ├── match.go │ │ ├── parse.go │ │ ├── tables.go │ │ └── tags.go │ │ ├── runes │ │ ├── cond.go │ │ └── runes.go │ │ ├── secure │ │ ├── bidirule │ │ │ └── bidirule.go │ │ └── precis │ │ │ ├── class.go │ │ │ ├── context.go │ │ │ ├── doc.go │ │ │ ├── gen.go │ │ │ ├── gen_trieval.go │ │ │ ├── nickname.go │ │ │ ├── options.go │ │ │ ├── profile.go │ │ │ ├── profiles.go │ │ │ ├── tables.go │ │ │ ├── transformer.go │ │ │ └── trieval.go │ │ ├── transform │ │ └── transform.go │ │ ├── unicode │ │ ├── bidi │ │ │ ├── bidi.go │ │ │ ├── bracket.go │ │ │ ├── core.go │ │ │ ├── gen.go │ │ │ ├── gen_ranges.go │ │ │ ├── gen_trieval.go │ │ │ ├── prop.go │ │ │ ├── tables.go │ │ │ └── trieval.go │ │ └── norm │ │ │ ├── composition.go │ │ │ ├── forminfo.go │ │ │ ├── input.go │ │ │ ├── iter.go │ │ │ ├── maketables.go │ │ │ ├── normalize.go │ │ │ ├── readwriter.go │ │ │ ├── tables.go │ │ │ ├── transform.go │ │ │ ├── trie.go │ │ │ └── triegen.go │ │ └── width │ │ ├── gen.go │ │ ├── gen_common.go │ │ ├── gen_trieval.go │ │ ├── kind_string.go │ │ ├── tables.go │ │ ├── transform.go │ │ ├── trieval.go │ │ └── width.go │ └── vendor.json ├── protobuf ├── README.md ├── add-people │ ├── add_people.go │ └── address-book.txt ├── list-people │ ├── address-book.txt │ └── list_people.go ├── tutorial │ ├── addressbook.pb.go │ └── addressbook.proto └── vendor │ ├── github.com │ └── golang │ │ └── protobuf │ │ ├── LICENSE │ │ └── proto │ │ ├── Makefile │ │ ├── clone.go │ │ ├── decode.go │ │ ├── encode.go │ │ ├── equal.go │ │ ├── extensions.go │ │ ├── lib.go │ │ ├── message_set.go │ │ ├── pointer_reflect.go │ │ ├── pointer_unsafe.go │ │ ├── properties.go │ │ ├── text.go │ │ └── text_parser.go │ └── vendor.json ├── rbac └── auth-server │ ├── README.md │ ├── auth │ ├── auth.go │ ├── order │ │ └── order.go │ ├── product │ │ └── product.go │ └── types.go │ ├── cmd │ ├── cert │ │ ├── private_key.pem │ │ └── public_key.pem │ ├── config.json │ └── main.go │ ├── config │ └── config.go │ ├── server │ └── server.go │ ├── ticket │ ├── order │ │ └── order.go │ ├── product │ │ └── product.go │ └── ticket.go │ ├── token │ └── token.go │ └── utils │ └── sets │ └── strings.go ├── sort └── main.go └── template ├── README.md ├── html.go ├── main.go ├── metadata.yaml └── text.go /.gitignore: -------------------------------------------------------------------------------- 1 | # Dirty file in OS X 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config-reader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/README.md -------------------------------------------------------------------------------- /config-reader/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/config.json -------------------------------------------------------------------------------- /config-reader/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/config.yaml -------------------------------------------------------------------------------- /config-reader/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/main.go -------------------------------------------------------------------------------- /config-reader/vendor/github.com/coreos/etcd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/github.com/coreos/etcd/LICENSE -------------------------------------------------------------------------------- /config-reader/vendor/github.com/coreos/etcd/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/github.com/coreos/etcd/NOTICE -------------------------------------------------------------------------------- /config-reader/vendor/github.com/coreos/pkg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/github.com/coreos/pkg/LICENSE -------------------------------------------------------------------------------- /config-reader/vendor/github.com/coreos/pkg/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/github.com/coreos/pkg/NOTICE -------------------------------------------------------------------------------- /config-reader/vendor/github.com/golang/glog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/github.com/golang/glog/LICENSE -------------------------------------------------------------------------------- /config-reader/vendor/github.com/golang/glog/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/github.com/golang/glog/README -------------------------------------------------------------------------------- /config-reader/vendor/github.com/golang/glog/glog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/github.com/golang/glog/glog.go -------------------------------------------------------------------------------- /config-reader/vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /config-reader/vendor/github.com/spf13/pflag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/github.com/spf13/pflag/README.md -------------------------------------------------------------------------------- /config-reader/vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /config-reader/vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /config-reader/vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /config-reader/vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /config-reader/vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /config-reader/vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /config-reader/vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /config-reader/vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /config-reader/vendor/github.com/spf13/pflag/ipmask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/github.com/spf13/pflag/ipmask.go -------------------------------------------------------------------------------- /config-reader/vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /config-reader/vendor/github.com/spf13/pflag/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/github.com/spf13/pflag/string.go -------------------------------------------------------------------------------- /config-reader/vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /config-reader/vendor/github.com/spf13/pflag/uint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/github.com/spf13/pflag/uint16.go -------------------------------------------------------------------------------- /config-reader/vendor/github.com/spf13/pflag/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/github.com/spf13/pflag/uint32.go -------------------------------------------------------------------------------- /config-reader/vendor/github.com/spf13/pflag/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/github.com/spf13/pflag/uint64.go -------------------------------------------------------------------------------- /config-reader/vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /config-reader/vendor/github.com/ugorji/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/github.com/ugorji/go/LICENSE -------------------------------------------------------------------------------- /config-reader/vendor/github.com/ugorji/go/codec/prebuild.go: -------------------------------------------------------------------------------- 1 | package codec 2 | 3 | //go:generate bash prebuild.sh 4 | -------------------------------------------------------------------------------- /config-reader/vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /config-reader/vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /config-reader/vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /config-reader/vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /config-reader/vendor/golang.org/x/net/context/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/golang.org/x/net/context/go17.go -------------------------------------------------------------------------------- /config-reader/vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /config-reader/vendor/golang.org/x/net/http2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/golang.org/x/net/http2/README -------------------------------------------------------------------------------- /config-reader/vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /config-reader/vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /config-reader/vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /config-reader/vendor/golang.org/x/net/http2/go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/golang.org/x/net/http2/go16.go -------------------------------------------------------------------------------- /config-reader/vendor/golang.org/x/net/http2/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/golang.org/x/net/http2/go17.go -------------------------------------------------------------------------------- /config-reader/vendor/golang.org/x/net/http2/go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/golang.org/x/net/http2/go18.go -------------------------------------------------------------------------------- /config-reader/vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /config-reader/vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /config-reader/vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /config-reader/vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /config-reader/vendor/golang.org/x/net/idna/idna.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/golang.org/x/net/idna/idna.go -------------------------------------------------------------------------------- /config-reader/vendor/golang.org/x/net/trace/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/golang.org/x/net/trace/events.go -------------------------------------------------------------------------------- /config-reader/vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /config-reader/vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /config-reader/vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /config-reader/vendor/golang.org/x/sys/unix/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/golang.org/x/sys/unix/asm.s -------------------------------------------------------------------------------- /config-reader/vendor/golang.org/x/sys/unix/flock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/golang.org/x/sys/unix/flock.go -------------------------------------------------------------------------------- /config-reader/vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /config-reader/vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /config-reader/vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /config-reader/vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /config-reader/vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /config-reader/vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /config-reader/vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /config-reader/vendor/google.golang.org/grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /config-reader/vendor/google.golang.org/grpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/google.golang.org/grpc/Makefile -------------------------------------------------------------------------------- /config-reader/vendor/google.golang.org/grpc/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/google.golang.org/grpc/PATENTS -------------------------------------------------------------------------------- /config-reader/vendor/google.golang.org/grpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/google.golang.org/grpc/README.md -------------------------------------------------------------------------------- /config-reader/vendor/google.golang.org/grpc/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/google.golang.org/grpc/call.go -------------------------------------------------------------------------------- /config-reader/vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/google.golang.org/grpc/doc.go -------------------------------------------------------------------------------- /config-reader/vendor/google.golang.org/grpc/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/google.golang.org/grpc/server.go -------------------------------------------------------------------------------- /config-reader/vendor/google.golang.org/grpc/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/google.golang.org/grpc/stream.go -------------------------------------------------------------------------------- /config-reader/vendor/google.golang.org/grpc/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/google.golang.org/grpc/trace.go -------------------------------------------------------------------------------- /config-reader/vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /config-reader/vendor/gopkg.in/yaml.v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/gopkg.in/yaml.v2/LICENSE.libyaml -------------------------------------------------------------------------------- /config-reader/vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /config-reader/vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /config-reader/vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /config-reader/vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /config-reader/vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /config-reader/vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /config-reader/vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /config-reader/vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /config-reader/vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /config-reader/vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /config-reader/vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /config-reader/vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /config-reader/vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /config-reader/vendor/gopkg.in/yaml.v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/gopkg.in/yaml.v2/yamlprivateh.go -------------------------------------------------------------------------------- /config-reader/vendor/vendor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/config-reader/vendor/vendor.json -------------------------------------------------------------------------------- /dep-mngt/Godeps/Godeps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/Godeps/Godeps.json -------------------------------------------------------------------------------- /dep-mngt/Godeps/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/Godeps/Readme -------------------------------------------------------------------------------- /dep-mngt/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/Gopkg.lock -------------------------------------------------------------------------------- /dep-mngt/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/Gopkg.toml -------------------------------------------------------------------------------- /dep-mngt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/README.md -------------------------------------------------------------------------------- /dep-mngt/cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/cmd/main.go -------------------------------------------------------------------------------- /dep-mngt/cmd/options/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/cmd/options/options.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/github.com/sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/github.com/sirupsen/logrus/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/github.com/sirupsen/logrus/doc.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/github.com/spf13/pflag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/github.com/spf13/pflag/README.md -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/github.com/spf13/pflag/float32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/github.com/spf13/pflag/float32.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/github.com/spf13/pflag/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/github.com/spf13/pflag/float64.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/github.com/spf13/pflag/ip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/github.com/spf13/pflag/ip_test.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/github.com/spf13/pflag/ipmask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/github.com/spf13/pflag/ipmask.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/github.com/spf13/pflag/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/github.com/spf13/pflag/string.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/github.com/spf13/pflag/uint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/github.com/spf13/pflag/uint16.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/github.com/spf13/pflag/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/github.com/spf13/pflag/uint32.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/github.com/spf13/pflag/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/github.com/spf13/pflag/uint64.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/crypto/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/crypto/.gitignore -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/crypto/AUTHORS -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/crypto/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/crypto/CONTRIBUTORS -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/crypto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/crypto/README.md -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/crypto/acme/acme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/crypto/acme/acme.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/crypto/acme/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/crypto/acme/jws.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/crypto/acme/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/crypto/acme/types.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/crypto/bn256/gfp2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/crypto/bn256/gfp2.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/crypto/bn256/gfp6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/crypto/bn256/gfp6.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/crypto/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/crypto/hkdf/hkdf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/crypto/hkdf/hkdf.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/crypto/md4/md4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/crypto/md4/md4.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/crypto/ocsp/ocsp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/crypto/ocsp/ocsp.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/crypto/otr/otr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/crypto/otr/otr.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/crypto/otr/smp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/crypto/otr/smp.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/crypto/pkcs12/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/crypto/pkcs12/mac.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/crypto/sha3/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/crypto/sha3/doc.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/crypto/sha3/sha3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/crypto/sha3/sha3.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/crypto/sha3/shake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/crypto/sha3/shake.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/crypto/sha3/xor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/crypto/sha3/xor.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/crypto/ssh/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/crypto/ssh/buffer.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/crypto/ssh/certs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/crypto/ssh/certs.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/crypto/ssh/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/crypto/ssh/cipher.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/crypto/ssh/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/crypto/ssh/client.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/crypto/ssh/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/crypto/ssh/common.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/crypto/ssh/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/crypto/ssh/doc.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/crypto/ssh/kex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/crypto/ssh/kex.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/crypto/ssh/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/crypto/ssh/keys.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/crypto/ssh/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/crypto/ssh/mac.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/crypto/ssh/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/crypto/ssh/mux.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/crypto/ssh/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/crypto/ssh/server.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/crypto/ssh/tcpip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/crypto/ssh/tcpip.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/crypto/tea/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/crypto/tea/cipher.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/crypto/xtea/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/crypto/xtea/block.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/crypto/xts/xts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/crypto/xts/xts.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/sys/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/sys/.gitattributes -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/sys/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/sys/.gitignore -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/sys/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/sys/CONTRIBUTING.md -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/sys/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/sys/README -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/sys/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/sys/plan9/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/sys/plan9/asm.s -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/sys/plan9/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/sys/plan9/mkall.sh -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/sys/plan9/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/sys/plan9/race.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/sys/plan9/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/sys/plan9/race0.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/sys/plan9/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/sys/plan9/str.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/sys/plan9/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/sys/plan9/syscall.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/sys/unix/flock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/sys/unix/flock.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/sys/unix/mkpost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/sys/unix/mkpost.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /dep-mngt/dep-vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/dep-vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /dep-mngt/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/go.mod -------------------------------------------------------------------------------- /dep-mngt/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/go.sum -------------------------------------------------------------------------------- /dep-mngt/godep-vendor/github.com/golang/glog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/godep-vendor/github.com/golang/glog/LICENSE -------------------------------------------------------------------------------- /dep-mngt/godep-vendor/github.com/golang/glog/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/godep-vendor/github.com/golang/glog/README -------------------------------------------------------------------------------- /dep-mngt/godep-vendor/github.com/golang/glog/glog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/godep-vendor/github.com/golang/glog/glog.go -------------------------------------------------------------------------------- /dep-mngt/godep-vendor/github.com/sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | -------------------------------------------------------------------------------- /dep-mngt/godep-vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /dep-mngt/godep-vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/godep-vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /dep-mngt/godep-vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/godep-vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /dep-mngt/godep-vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/godep-vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /dep-mngt/godep-vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/godep-vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /dep-mngt/godep-vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/godep-vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /dep-mngt/godep-vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/godep-vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /dep-mngt/godep-vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/godep-vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /dep-mngt/godep-vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/godep-vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /dep-mngt/godep-vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/godep-vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /dep-mngt/godep-vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/godep-vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /dep-mngt/godep-vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/godep-vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /dep-mngt/godep-vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/godep-vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /dep-mngt/godep-vendor/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/godep-vendor/golang.org/x/crypto/AUTHORS -------------------------------------------------------------------------------- /dep-mngt/godep-vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/godep-vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /dep-mngt/godep-vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/godep-vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /dep-mngt/godep-vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/godep-vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /dep-mngt/godep-vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/godep-vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /dep-mngt/godep-vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/godep-vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /dep-mngt/godep-vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/godep-vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /dep-mngt/godep-vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | -------------------------------------------------------------------------------- /dep-mngt/godep-vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/godep-vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /dep-mngt/godep-vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/godep-vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /dep-mngt/godep-vendor/golang.org/x/sys/unix/flock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/godep-vendor/golang.org/x/sys/unix/flock.go -------------------------------------------------------------------------------- /dep-mngt/godep-vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/godep-vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /dep-mngt/godep-vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/godep-vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /dep-mngt/godep-vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/godep-vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /dep-mngt/godep-vendor/golang.org/x/sys/unix/mkpost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/godep-vendor/golang.org/x/sys/unix/mkpost.go -------------------------------------------------------------------------------- /dep-mngt/godep-vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/godep-vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /dep-mngt/godep-vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/godep-vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /dep-mngt/godep-vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/godep-vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /dep-mngt/godep-vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/godep-vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /dep-mngt/govendor-vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/govendor-vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /dep-mngt/govendor-vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/govendor-vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /dep-mngt/govendor-vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/govendor-vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /dep-mngt/govendor-vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/govendor-vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /dep-mngt/govendor-vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/govendor-vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /dep-mngt/govendor-vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/govendor-vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /dep-mngt/govendor-vendor/vendor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/govendor-vendor/vendor.json -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/github.com/sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/github.com/sirupsen/logrus/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/github.com/sirupsen/logrus/doc.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/github.com/spf13/pflag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/github.com/spf13/pflag/README.md -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/github.com/spf13/pflag/float32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/github.com/spf13/pflag/float32.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/github.com/spf13/pflag/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/github.com/spf13/pflag/float64.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/github.com/spf13/pflag/ipmask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/github.com/spf13/pflag/ipmask.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/github.com/spf13/pflag/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/github.com/spf13/pflag/string.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/github.com/spf13/pflag/uint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/github.com/spf13/pflag/uint16.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/github.com/spf13/pflag/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/github.com/spf13/pflag/uint32.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/github.com/spf13/pflag/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/github.com/spf13/pflag/uint64.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/crypto/AUTHORS -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/crypto/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/crypto/CONTRIBUTORS -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/crypto/acme/acme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/crypto/acme/acme.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/crypto/acme/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/crypto/acme/jws.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/crypto/acme/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/crypto/acme/types.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/crypto/hkdf/hkdf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/crypto/hkdf/hkdf.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/crypto/md4/md4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/crypto/md4/md4.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/crypto/ssh/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/crypto/ssh/buffer.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/crypto/ssh/certs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/crypto/ssh/certs.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/crypto/ssh/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/crypto/ssh/cipher.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/crypto/ssh/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/crypto/ssh/client.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/crypto/ssh/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/crypto/ssh/common.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/crypto/ssh/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/crypto/ssh/doc.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/crypto/ssh/kex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/crypto/ssh/kex.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/crypto/ssh/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/crypto/ssh/keys.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/crypto/ssh/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/crypto/ssh/mac.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/crypto/ssh/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/crypto/ssh/mux.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/crypto/ssh/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/crypto/ssh/server.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/crypto/ssh/tcpip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/crypto/ssh/tcpip.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/sys/plan9/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/sys/plan9/asm.s -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/sys/plan9/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/sys/plan9/mkall.sh -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/sys/plan9/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/sys/plan9/race.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/sys/plan9/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/sys/plan9/race0.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/sys/plan9/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/sys/plan9/str.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/sys/plan9/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/sys/plan9/syscall.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/sys/unix/aliases.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/sys/unix/fdset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/sys/unix/fdset.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/sys/unix/ioctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/sys/unix/ioctl.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/sys/unix/mkpost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/sys/unix/mkpost.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/sys/unix/mksysnum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/sys/unix/mksysnum.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/sys/windows/empty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/sys/windows/empty.s -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/gopkg.in/yaml.v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/gopkg.in/yaml.v2/LICENSE.libyaml -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/gopkg.in/yaml.v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/gopkg.in/yaml.v2/go.mod -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/gopkg.in/yaml.v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/gopkg.in/yaml.v2/yamlprivateh.go -------------------------------------------------------------------------------- /dep-mngt/mod-vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/dep-mngt/mod-vendor/modules.txt -------------------------------------------------------------------------------- /embedded-structure/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/embedded-structure/main.go -------------------------------------------------------------------------------- /file-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/file-server/README.md -------------------------------------------------------------------------------- /file-server/img/file-request-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/file-server/img/file-request-result.png -------------------------------------------------------------------------------- /file-server/img/folder-request-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/file-server/img/folder-request-result.png -------------------------------------------------------------------------------- /file-server/img/nomal-request-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/file-server/img/nomal-request-result.png -------------------------------------------------------------------------------- /file-server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/file-server/main.go -------------------------------------------------------------------------------- /file-server/static/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/file-server/static/css/app.css -------------------------------------------------------------------------------- /file-server/static/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/file-server/static/home.html -------------------------------------------------------------------------------- /file/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/file/main.go -------------------------------------------------------------------------------- /file/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/file/util.go -------------------------------------------------------------------------------- /graceful-shutdown/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/graceful-shutdown/README.md -------------------------------------------------------------------------------- /graceful-shutdown/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/graceful-shutdown/main.go -------------------------------------------------------------------------------- /http/log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/http/log/README.md -------------------------------------------------------------------------------- /http/log/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/http/log/main.go -------------------------------------------------------------------------------- /http/request-auth/customized_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/http/request-auth/customized_client.go -------------------------------------------------------------------------------- /http/request-auth/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/http/request-auth/main.go -------------------------------------------------------------------------------- /http/request-auth/proxy_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/http/request-auth/proxy_client.go -------------------------------------------------------------------------------- /http/reverse-proxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/http/reverse-proxy/README.md -------------------------------------------------------------------------------- /http/reverse-proxy/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/http/reverse-proxy/main.go -------------------------------------------------------------------------------- /http/stream-log/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/http/stream-log/Gopkg.lock -------------------------------------------------------------------------------- /http/stream-log/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/http/stream-log/Gopkg.toml -------------------------------------------------------------------------------- /http/stream-log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/http/stream-log/README.md -------------------------------------------------------------------------------- /http/stream-log/curl-websocket.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/http/stream-log/curl-websocket.sh -------------------------------------------------------------------------------- /http/stream-log/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/http/stream-log/main.go -------------------------------------------------------------------------------- /http/stream-log/vendor/github.com/golang/glog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/http/stream-log/vendor/github.com/golang/glog/LICENSE -------------------------------------------------------------------------------- /http/stream-log/vendor/github.com/golang/glog/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/http/stream-log/vendor/github.com/golang/glog/README -------------------------------------------------------------------------------- /http/stream-log/vendor/github.com/golang/glog/glog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/http/stream-log/vendor/github.com/golang/glog/glog.go -------------------------------------------------------------------------------- /json/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/json/main.go -------------------------------------------------------------------------------- /json/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/json/util.go -------------------------------------------------------------------------------- /k8s-goclient/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/README.md -------------------------------------------------------------------------------- /k8s-goclient/examples/deployment-management/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/examples/deployment-management/main.go -------------------------------------------------------------------------------- /k8s-goclient/images/k8s-clientSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/images/k8s-clientSet.png -------------------------------------------------------------------------------- /k8s-goclient/images/my-clientSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/images/my-clientSet.png -------------------------------------------------------------------------------- /k8s-goclient/kubernetes/clientset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/kubernetes/clientset.go -------------------------------------------------------------------------------- /k8s-goclient/kubernetes/configmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/kubernetes/configmap.go -------------------------------------------------------------------------------- /k8s-goclient/kubernetes/deployment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/kubernetes/deployment.go -------------------------------------------------------------------------------- /k8s-goclient/kubernetes/ingress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/kubernetes/ingress.go -------------------------------------------------------------------------------- /k8s-goclient/kubernetes/namespace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/kubernetes/namespace.go -------------------------------------------------------------------------------- /k8s-goclient/kubernetes/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/kubernetes/service.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/github.com/emicklei/go-restful/Srcfile: -------------------------------------------------------------------------------- 1 | {"SkipDirs": ["examples"]} 2 | -------------------------------------------------------------------------------- /k8s-goclient/vendor/github.com/ghodss/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/github.com/ghodss/yaml/LICENSE -------------------------------------------------------------------------------- /k8s-goclient/vendor/github.com/ghodss/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/github.com/ghodss/yaml/README.md -------------------------------------------------------------------------------- /k8s-goclient/vendor/github.com/ghodss/yaml/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/github.com/ghodss/yaml/fields.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/github.com/ghodss/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/github.com/ghodss/yaml/yaml.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/github.com/go-openapi/spec/ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/github.com/go-openapi/spec/ref.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/github.com/go-openapi/spec/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/github.com/go-openapi/spec/tag.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/github.com/go-openapi/swag/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/github.com/go-openapi/swag/net.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/github.com/gogo/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/github.com/gogo/protobuf/LICENSE -------------------------------------------------------------------------------- /k8s-goclient/vendor/github.com/golang/glog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/github.com/golang/glog/LICENSE -------------------------------------------------------------------------------- /k8s-goclient/vendor/github.com/golang/glog/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/github.com/golang/glog/README -------------------------------------------------------------------------------- /k8s-goclient/vendor/github.com/golang/glog/glog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/github.com/golang/glog/glog.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/github.com/google/gofuzz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/github.com/google/gofuzz/LICENSE -------------------------------------------------------------------------------- /k8s-goclient/vendor/github.com/google/gofuzz/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/github.com/google/gofuzz/doc.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/github.com/google/gofuzz/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/github.com/google/gofuzz/fuzz.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/github.com/juju/ratelimit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/github.com/juju/ratelimit/LICENSE -------------------------------------------------------------------------------- /k8s-goclient/vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /k8s-goclient/vendor/github.com/spf13/pflag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/github.com/spf13/pflag/README.md -------------------------------------------------------------------------------- /k8s-goclient/vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/github.com/spf13/pflag/float32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/github.com/spf13/pflag/float32.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/github.com/spf13/pflag/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/github.com/spf13/pflag/float64.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/github.com/spf13/pflag/ipmask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/github.com/spf13/pflag/ipmask.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/github.com/spf13/pflag/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/github.com/spf13/pflag/string.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/github.com/spf13/pflag/uint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/github.com/spf13/pflag/uint16.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/github.com/spf13/pflag/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/github.com/spf13/pflag/uint32.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/github.com/spf13/pflag/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/github.com/spf13/pflag/uint64.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/github.com/ugorji/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/github.com/ugorji/go/LICENSE -------------------------------------------------------------------------------- /k8s-goclient/vendor/github.com/ugorji/go/codec/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/github.com/ugorji/go/codec/gen.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/github.com/ugorji/go/codec/prebuild.go: -------------------------------------------------------------------------------- 1 | package codec 2 | 3 | //go:generate bash prebuild.sh 4 | -------------------------------------------------------------------------------- /k8s-goclient/vendor/github.com/ugorji/go/codec/rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/github.com/ugorji/go/codec/rpc.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /k8s-goclient/vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /k8s-goclient/vendor/golang.org/x/net/http2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/golang.org/x/net/http2/Dockerfile -------------------------------------------------------------------------------- /k8s-goclient/vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /k8s-goclient/vendor/golang.org/x/net/http2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/golang.org/x/net/http2/README -------------------------------------------------------------------------------- /k8s-goclient/vendor/golang.org/x/net/http2/ciphers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/golang.org/x/net/http2/ciphers.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/golang.org/x/net/http2/go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/golang.org/x/net/http2/go16.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/golang.org/x/net/http2/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/golang.org/x/net/http2/go17.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/golang.org/x/net/http2/go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/golang.org/x/net/http2/go18.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/golang.org/x/net/http2/gotrack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/golang.org/x/net/http2/gotrack.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/golang.org/x/net/idna/idna.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/golang.org/x/net/idna/idna.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/golang.org/x/net/idna/punycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/golang.org/x/net/idna/punycode.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/golang.org/x/net/idna/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/golang.org/x/net/idna/tables.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /k8s-goclient/vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /k8s-goclient/vendor/golang.org/x/text/cases/cases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/golang.org/x/text/cases/cases.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/golang.org/x/text/cases/fold.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/golang.org/x/text/cases/fold.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/golang.org/x/text/cases/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/golang.org/x/text/cases/gen.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/golang.org/x/text/cases/icu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/golang.org/x/text/cases/icu.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/golang.org/x/text/cases/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/golang.org/x/text/cases/info.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/golang.org/x/text/cases/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/golang.org/x/text/cases/map.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/golang.org/x/text/cases/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/golang.org/x/text/cases/tables.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/golang.org/x/text/internal/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/golang.org/x/text/internal/gen.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/golang.org/x/text/runes/cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/golang.org/x/text/runes/cond.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/golang.org/x/text/runes/runes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/golang.org/x/text/runes/runes.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/golang.org/x/text/width/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/golang.org/x/text/width/gen.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/golang.org/x/text/width/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/golang.org/x/text/width/tables.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/golang.org/x/text/width/width.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/golang.org/x/text/width/width.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/gopkg.in/inf.v0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/gopkg.in/inf.v0/LICENSE -------------------------------------------------------------------------------- /k8s-goclient/vendor/gopkg.in/inf.v0/dec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/gopkg.in/inf.v0/dec.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/gopkg.in/inf.v0/rounder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/gopkg.in/inf.v0/rounder.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /k8s-goclient/vendor/gopkg.in/yaml.v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/gopkg.in/yaml.v2/LICENSE.libyaml -------------------------------------------------------------------------------- /k8s-goclient/vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /k8s-goclient/vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/gopkg.in/yaml.v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/gopkg.in/yaml.v2/yamlprivateh.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/api/apps/v1beta1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/api/apps/v1beta1/BUILD -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/api/apps/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/api/apps/v1beta1/doc.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/api/apps/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/api/apps/v1beta1/types.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/api/authorization/v1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/api/authorization/v1/BUILD -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/api/autoscaling/v1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/api/autoscaling/v1/BUILD -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/api/autoscaling/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/api/autoscaling/v1/doc.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/api/batch/v1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/api/batch/v1/BUILD -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/api/batch/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/api/batch/v1/doc.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/api/batch/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/api/batch/v1/register.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/api/batch/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/api/batch/v1/types.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/api/batch/v2alpha1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/api/batch/v2alpha1/BUILD -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/api/batch/v2alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/api/batch/v2alpha1/doc.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/api/core/v1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/api/core/v1/BUILD -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/api/core/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/api/core/v1/doc.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/api/core/v1/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/api/core/v1/meta.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/api/core/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/api/core/v1/register.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/api/core/v1/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/api/core/v1/resource.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/api/core/v1/taint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/api/core/v1/taint.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/api/core/v1/toleration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/api/core/v1/toleration.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/api/core/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/api/core/v1/types.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/api/networking/v1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/api/networking/v1/BUILD -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/api/networking/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/api/networking/v1/doc.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/api/networking/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/api/networking/v1/types.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/api/policy/v1beta1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/api/policy/v1beta1/BUILD -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/api/policy/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/api/policy/v1beta1/doc.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/api/rbac/v1alpha1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/api/rbac/v1alpha1/BUILD -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/api/rbac/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/api/rbac/v1alpha1/doc.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/api/rbac/v1alpha1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/api/rbac/v1alpha1/types.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/api/rbac/v1beta1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/api/rbac/v1beta1/BUILD -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/api/rbac/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/api/rbac/v1beta1/doc.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/api/rbac/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/api/rbac/v1beta1/types.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/api/storage/v1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/api/storage/v1/BUILD -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/api/storage/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/api/storage/v1/doc.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/api/storage/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/api/storage/v1/register.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/api/storage/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/api/storage/v1/types.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/api/storage/v1beta1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/api/storage/v1beta1/BUILD -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/api/storage/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/api/storage/v1beta1/doc.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/client-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/client-go/LICENSE -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/client-go/discovery/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/client-go/discovery/BUILD -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/client-go/kubernetes/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/client-go/kubernetes/BUILD -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/client-go/rest/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/client-go/rest/BUILD -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/client-go/rest/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/client-go/rest/OWNERS -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/client-go/rest/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/client-go/rest/client.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/client-go/rest/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/client-go/rest/config.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/client-go/rest/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/client-go/rest/plugin.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/client-go/rest/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/client-go/rest/request.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/client-go/rest/versions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/client-go/rest/versions.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/client-go/rest/watch/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/client-go/rest/watch/BUILD -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/client-go/transport/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/client-go/transport/BUILD -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/client-go/transport/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/client-go/transport/OWNERS -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/client-go/util/cert/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/client-go/util/cert/BUILD -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/client-go/util/cert/csr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/client-go/util/cert/csr.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/client-go/util/cert/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/client-go/util/cert/io.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/k8s.io/client-go/util/cert/pem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/k8s.io/client-go/util/cert/pem.go -------------------------------------------------------------------------------- /k8s-goclient/vendor/vendor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/k8s-goclient/vendor/vendor.json -------------------------------------------------------------------------------- /lint/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/lint/.golangci.yml -------------------------------------------------------------------------------- /lint/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/lint/Makefile -------------------------------------------------------------------------------- /lint/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/lint/main.go -------------------------------------------------------------------------------- /lint/students/students.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/lint/students/students.go -------------------------------------------------------------------------------- /log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/README.md -------------------------------------------------------------------------------- /log/glog/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/glog/main.go -------------------------------------------------------------------------------- /log/logrus/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/logrus/main.go -------------------------------------------------------------------------------- /log/stdlog/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/stdlog/main.go -------------------------------------------------------------------------------- /log/vendor/github.com/golang/glog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/github.com/golang/glog/LICENSE -------------------------------------------------------------------------------- /log/vendor/github.com/golang/glog/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/github.com/golang/glog/README -------------------------------------------------------------------------------- /log/vendor/github.com/golang/glog/glog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/github.com/golang/glog/glog.go -------------------------------------------------------------------------------- /log/vendor/github.com/golang/glog/glog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/github.com/golang/glog/glog_file.go -------------------------------------------------------------------------------- /log/vendor/github.com/sirupsen/logrus/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/github.com/sirupsen/logrus/CHANGELOG.md -------------------------------------------------------------------------------- /log/vendor/github.com/sirupsen/logrus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/github.com/sirupsen/logrus/LICENSE -------------------------------------------------------------------------------- /log/vendor/github.com/sirupsen/logrus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/github.com/sirupsen/logrus/README.md -------------------------------------------------------------------------------- /log/vendor/github.com/sirupsen/logrus/alt_exit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/github.com/sirupsen/logrus/alt_exit.go -------------------------------------------------------------------------------- /log/vendor/github.com/sirupsen/logrus/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/github.com/sirupsen/logrus/appveyor.yml -------------------------------------------------------------------------------- /log/vendor/github.com/sirupsen/logrus/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/github.com/sirupsen/logrus/doc.go -------------------------------------------------------------------------------- /log/vendor/github.com/sirupsen/logrus/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/github.com/sirupsen/logrus/entry.go -------------------------------------------------------------------------------- /log/vendor/github.com/sirupsen/logrus/exported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/github.com/sirupsen/logrus/exported.go -------------------------------------------------------------------------------- /log/vendor/github.com/sirupsen/logrus/formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/github.com/sirupsen/logrus/formatter.go -------------------------------------------------------------------------------- /log/vendor/github.com/sirupsen/logrus/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/github.com/sirupsen/logrus/hooks.go -------------------------------------------------------------------------------- /log/vendor/github.com/sirupsen/logrus/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/github.com/sirupsen/logrus/logger.go -------------------------------------------------------------------------------- /log/vendor/github.com/sirupsen/logrus/logrus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/github.com/sirupsen/logrus/logrus.go -------------------------------------------------------------------------------- /log/vendor/github.com/sirupsen/logrus/terminal_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/github.com/sirupsen/logrus/terminal_bsd.go -------------------------------------------------------------------------------- /log/vendor/github.com/sirupsen/logrus/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/github.com/sirupsen/logrus/writer.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /log/vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /log/vendor/golang.org/x/crypto/ssh/terminal/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/crypto/ssh/terminal/util.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/asm_darwin_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/asm_darwin_386.s -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/asm_darwin_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/asm_darwin_amd64.s -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/asm_darwin_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/asm_darwin_arm.s -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/asm_darwin_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/asm_darwin_arm64.s -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/asm_freebsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/asm_freebsd_386.s -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/asm_freebsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/asm_freebsd_amd64.s -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/asm_freebsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/asm_freebsd_arm.s -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/asm_linux_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/asm_linux_386.s -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/asm_linux_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/asm_linux_amd64.s -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/asm_linux_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/asm_linux_arm.s -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/asm_linux_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/asm_linux_arm64.s -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/asm_linux_mips64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/asm_linux_mips64x.s -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/asm_linux_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/asm_linux_s390x.s -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/asm_netbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/asm_netbsd_386.s -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/asm_netbsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/asm_netbsd_amd64.s -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/asm_netbsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/asm_netbsd_arm.s -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/asm_openbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/asm_openbsd_386.s -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/asm_openbsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/asm_openbsd_amd64.s -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/asm_openbsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/asm_openbsd_arm.s -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/bluetooth_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/bluetooth_linux.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/cap_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/cap_freebsd.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/dev_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/dev_linux.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/endian_big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/endian_big.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/endian_little.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/endian_little.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/env_unset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/env_unset.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/file_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/file_unix.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/flock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/flock.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/flock_linux_32bit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/flock_linux_32bit.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/mkpost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/mkpost.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/mksyscall.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/mksyscall.pl -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/mksyscall_solaris.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/mksyscall_solaris.pl -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/mksysctl_openbsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/mksysctl_openbsd.pl -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/mksysnum_darwin.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/mksysnum_darwin.pl -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/mksysnum_freebsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/mksysnum_freebsd.pl -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/mksysnum_netbsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/mksysnum_netbsd.pl -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/mksysnum_openbsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/mksysnum_openbsd.pl -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/openbsd_pledge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/openbsd_pledge.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/sockcmsg_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/sockcmsg_linux.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/sockcmsg_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/sockcmsg_unix.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/syscall_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/syscall_bsd.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/syscall_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/syscall_darwin.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/syscall_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/syscall_dragonfly.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/syscall_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/syscall_freebsd.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/syscall_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/syscall_linux.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/syscall_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/syscall_linux_386.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/syscall_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/syscall_linux_arm.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/syscall_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/syscall_netbsd.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/syscall_no_getwd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/syscall_no_getwd.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/syscall_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/syscall_openbsd.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/syscall_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/syscall_solaris.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/syscall_unix.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/syscall_unix_gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/syscall_unix_gc.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/types_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/types_darwin.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/types_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/types_dragonfly.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/types_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/types_freebsd.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/types_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/types_netbsd.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/types_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/types_openbsd.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/types_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/types_solaris.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/zerrors_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/zerrors_linux_386.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/zsysctl_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/zsysctl_openbsd.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/ztypes_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/ztypes_darwin_386.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/unix/ztypes_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/unix/ztypes_linux_386.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/windows/dll_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/windows/dll_windows.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/windows/env_unset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/windows/env_unset.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/windows/env_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/windows/env_windows.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/windows/eventlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/windows/eventlog.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/windows/mksyscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/windows/mksyscall.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/windows/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/windows/service.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /log/vendor/golang.org/x/sys/windows/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/golang.org/x/sys/windows/syscall.go -------------------------------------------------------------------------------- /log/vendor/vendor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/log/vendor/vendor.json -------------------------------------------------------------------------------- /mbus/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/mbus/example/main.go -------------------------------------------------------------------------------- /mbus/kafka/kafka.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/mbus/kafka/kafka.go -------------------------------------------------------------------------------- /mbus/mbus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/mbus/mbus.go -------------------------------------------------------------------------------- /mbus/mbus_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/mbus/mbus_test.go -------------------------------------------------------------------------------- /mbus/nats/nats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/mbus/nats/nats.go -------------------------------------------------------------------------------- /mbus/vendor/github.com/golang/snappy/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/mbus/vendor/github.com/golang/snappy/AUTHORS -------------------------------------------------------------------------------- /mbus/vendor/github.com/golang/snappy/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/mbus/vendor/github.com/golang/snappy/CONTRIBUTORS -------------------------------------------------------------------------------- /mbus/vendor/github.com/golang/snappy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/mbus/vendor/github.com/golang/snappy/LICENSE -------------------------------------------------------------------------------- /mbus/vendor/github.com/golang/snappy/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/mbus/vendor/github.com/golang/snappy/README -------------------------------------------------------------------------------- /mbus/vendor/github.com/golang/snappy/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/mbus/vendor/github.com/golang/snappy/decode.go -------------------------------------------------------------------------------- /mbus/vendor/github.com/golang/snappy/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/mbus/vendor/github.com/golang/snappy/encode.go -------------------------------------------------------------------------------- /mbus/vendor/github.com/golang/snappy/snappy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/mbus/vendor/github.com/golang/snappy/snappy.go -------------------------------------------------------------------------------- /mbus/vendor/github.com/nats-io/go-nats/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/mbus/vendor/github.com/nats-io/go-nats/LICENSE -------------------------------------------------------------------------------- /mbus/vendor/github.com/nats-io/go-nats/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/mbus/vendor/github.com/nats-io/go-nats/README.md -------------------------------------------------------------------------------- /mbus/vendor/github.com/nats-io/go-nats/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/mbus/vendor/github.com/nats-io/go-nats/TODO.md -------------------------------------------------------------------------------- /mbus/vendor/github.com/nats-io/go-nats/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/mbus/vendor/github.com/nats-io/go-nats/context.go -------------------------------------------------------------------------------- /mbus/vendor/github.com/nats-io/go-nats/enc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/mbus/vendor/github.com/nats-io/go-nats/enc.go -------------------------------------------------------------------------------- /mbus/vendor/github.com/nats-io/go-nats/nats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/mbus/vendor/github.com/nats-io/go-nats/nats.go -------------------------------------------------------------------------------- /mbus/vendor/github.com/nats-io/go-nats/netchan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/mbus/vendor/github.com/nats-io/go-nats/netchan.go -------------------------------------------------------------------------------- /mbus/vendor/github.com/nats-io/go-nats/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/mbus/vendor/github.com/nats-io/go-nats/parser.go -------------------------------------------------------------------------------- /mbus/vendor/github.com/nats-io/go-nats/timer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/mbus/vendor/github.com/nats-io/go-nats/timer.go -------------------------------------------------------------------------------- /mbus/vendor/github.com/nats-io/go-nats/util/tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/mbus/vendor/github.com/nats-io/go-nats/util/tls.go -------------------------------------------------------------------------------- /mbus/vendor/github.com/nats-io/nuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/mbus/vendor/github.com/nats-io/nuid/LICENSE -------------------------------------------------------------------------------- /mbus/vendor/github.com/nats-io/nuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/mbus/vendor/github.com/nats-io/nuid/README.md -------------------------------------------------------------------------------- /mbus/vendor/github.com/nats-io/nuid/nuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/mbus/vendor/github.com/nats-io/nuid/nuid.go -------------------------------------------------------------------------------- /mbus/vendor/github.com/optiopay/kafka/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/mbus/vendor/github.com/optiopay/kafka/LICENSE -------------------------------------------------------------------------------- /mbus/vendor/github.com/optiopay/kafka/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/mbus/vendor/github.com/optiopay/kafka/README.md -------------------------------------------------------------------------------- /mbus/vendor/github.com/optiopay/kafka/broker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/mbus/vendor/github.com/optiopay/kafka/broker.go -------------------------------------------------------------------------------- /mbus/vendor/github.com/optiopay/kafka/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/mbus/vendor/github.com/optiopay/kafka/doc.go -------------------------------------------------------------------------------- /mbus/vendor/github.com/optiopay/kafka/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/mbus/vendor/github.com/optiopay/kafka/log.go -------------------------------------------------------------------------------- /mbus/vendor/github.com/optiopay/kafka/proto/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/mbus/vendor/github.com/optiopay/kafka/proto/doc.go -------------------------------------------------------------------------------- /mbus/vendor/vendor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/mbus/vendor/vendor.json -------------------------------------------------------------------------------- /multiple-dep-versions/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/multiple-dep-versions/Gopkg.lock -------------------------------------------------------------------------------- /multiple-dep-versions/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/multiple-dep-versions/Gopkg.toml -------------------------------------------------------------------------------- /multiple-dep-versions/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/multiple-dep-versions/main.go -------------------------------------------------------------------------------- /multiple-dep-versions/vendor/github.com/golang/protobuf/conformance/conformance.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname $0) 4 | exec go run conformance.go $* 5 | -------------------------------------------------------------------------------- /multiple-dep-versions/vendor/github.com/google/go-querystring/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | -------------------------------------------------------------------------------- /multiple-dep-versions/vendor/golang.org/x/net/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /multiple-dep-versions/vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /multiple-dep-versions/vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /multiple-dep-versions/vendor/golang.org/x/net/http2/h2demo/rootCA.srl: -------------------------------------------------------------------------------- 1 | E2CE26BF3285059C 2 | -------------------------------------------------------------------------------- /multiple-dep-versions/vendor/golang.org/x/oauth2/google/testdata/gcloud/properties: -------------------------------------------------------------------------------- 1 | [core] 2 | account = bar@example.com -------------------------------------------------------------------------------- /openapi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/README.md -------------------------------------------------------------------------------- /openapi/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/main.go -------------------------------------------------------------------------------- /openapi/swagger-ui/dist/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/swagger-ui/dist/favicon-16x16.png -------------------------------------------------------------------------------- /openapi/swagger-ui/dist/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/swagger-ui/dist/favicon-32x32.png -------------------------------------------------------------------------------- /openapi/swagger-ui/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/swagger-ui/dist/index.html -------------------------------------------------------------------------------- /openapi/swagger-ui/dist/oauth2-redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/swagger-ui/dist/oauth2-redirect.html -------------------------------------------------------------------------------- /openapi/swagger-ui/dist/swagger-ui-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/swagger-ui/dist/swagger-ui-bundle.js -------------------------------------------------------------------------------- /openapi/swagger-ui/dist/swagger-ui-bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/swagger-ui/dist/swagger-ui-bundle.js.map -------------------------------------------------------------------------------- /openapi/swagger-ui/dist/swagger-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/swagger-ui/dist/swagger-ui.css -------------------------------------------------------------------------------- /openapi/swagger-ui/dist/swagger-ui.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/swagger-ui/dist/swagger-ui.css.map -------------------------------------------------------------------------------- /openapi/swagger-ui/dist/swagger-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/swagger-ui/dist/swagger-ui.js -------------------------------------------------------------------------------- /openapi/swagger-ui/dist/swagger-ui.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/swagger-ui/dist/swagger-ui.js.map -------------------------------------------------------------------------------- /openapi/vendor/github.com/emicklei/go-restful/Srcfile: -------------------------------------------------------------------------------- 1 | {"SkipDirs": ["examples"]} 2 | -------------------------------------------------------------------------------- /openapi/vendor/github.com/go-openapi/spec/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/github.com/go-openapi/spec/LICENSE -------------------------------------------------------------------------------- /openapi/vendor/github.com/go-openapi/spec/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/github.com/go-openapi/spec/info.go -------------------------------------------------------------------------------- /openapi/vendor/github.com/go-openapi/spec/items.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/github.com/go-openapi/spec/items.go -------------------------------------------------------------------------------- /openapi/vendor/github.com/go-openapi/spec/paths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/github.com/go-openapi/spec/paths.go -------------------------------------------------------------------------------- /openapi/vendor/github.com/go-openapi/spec/ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/github.com/go-openapi/spec/ref.go -------------------------------------------------------------------------------- /openapi/vendor/github.com/go-openapi/spec/spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/github.com/go-openapi/spec/spec.go -------------------------------------------------------------------------------- /openapi/vendor/github.com/go-openapi/spec/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/github.com/go-openapi/spec/tag.go -------------------------------------------------------------------------------- /openapi/vendor/github.com/go-openapi/swag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/github.com/go-openapi/swag/LICENSE -------------------------------------------------------------------------------- /openapi/vendor/github.com/go-openapi/swag/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/github.com/go-openapi/swag/json.go -------------------------------------------------------------------------------- /openapi/vendor/github.com/go-openapi/swag/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/github.com/go-openapi/swag/net.go -------------------------------------------------------------------------------- /openapi/vendor/github.com/go-openapi/swag/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/github.com/go-openapi/swag/path.go -------------------------------------------------------------------------------- /openapi/vendor/github.com/go-openapi/swag/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/github.com/go-openapi/swag/util.go -------------------------------------------------------------------------------- /openapi/vendor/github.com/mailru/easyjson/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/github.com/mailru/easyjson/LICENSE -------------------------------------------------------------------------------- /openapi/vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /openapi/vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /openapi/vendor/golang.org/x/net/idna/idna.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/golang.org/x/net/idna/idna.go -------------------------------------------------------------------------------- /openapi/vendor/golang.org/x/net/idna/punycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/golang.org/x/net/idna/punycode.go -------------------------------------------------------------------------------- /openapi/vendor/golang.org/x/net/idna/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/golang.org/x/net/idna/tables.go -------------------------------------------------------------------------------- /openapi/vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /openapi/vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /openapi/vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /openapi/vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /openapi/vendor/golang.org/x/text/cases/cases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/golang.org/x/text/cases/cases.go -------------------------------------------------------------------------------- /openapi/vendor/golang.org/x/text/cases/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/golang.org/x/text/cases/context.go -------------------------------------------------------------------------------- /openapi/vendor/golang.org/x/text/cases/fold.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/golang.org/x/text/cases/fold.go -------------------------------------------------------------------------------- /openapi/vendor/golang.org/x/text/cases/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/golang.org/x/text/cases/gen.go -------------------------------------------------------------------------------- /openapi/vendor/golang.org/x/text/cases/icu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/golang.org/x/text/cases/icu.go -------------------------------------------------------------------------------- /openapi/vendor/golang.org/x/text/cases/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/golang.org/x/text/cases/info.go -------------------------------------------------------------------------------- /openapi/vendor/golang.org/x/text/cases/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/golang.org/x/text/cases/map.go -------------------------------------------------------------------------------- /openapi/vendor/golang.org/x/text/cases/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/golang.org/x/text/cases/tables.go -------------------------------------------------------------------------------- /openapi/vendor/golang.org/x/text/cases/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/golang.org/x/text/cases/trieval.go -------------------------------------------------------------------------------- /openapi/vendor/golang.org/x/text/internal/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/golang.org/x/text/internal/gen.go -------------------------------------------------------------------------------- /openapi/vendor/golang.org/x/text/internal/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/golang.org/x/text/internal/match.go -------------------------------------------------------------------------------- /openapi/vendor/golang.org/x/text/language/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/golang.org/x/text/language/Makefile -------------------------------------------------------------------------------- /openapi/vendor/golang.org/x/text/language/go1_1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/golang.org/x/text/language/go1_1.go -------------------------------------------------------------------------------- /openapi/vendor/golang.org/x/text/language/go1_2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/golang.org/x/text/language/go1_2.go -------------------------------------------------------------------------------- /openapi/vendor/golang.org/x/text/language/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/golang.org/x/text/language/index.go -------------------------------------------------------------------------------- /openapi/vendor/golang.org/x/text/language/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/golang.org/x/text/language/match.go -------------------------------------------------------------------------------- /openapi/vendor/golang.org/x/text/language/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/golang.org/x/text/language/parse.go -------------------------------------------------------------------------------- /openapi/vendor/golang.org/x/text/language/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/golang.org/x/text/language/tags.go -------------------------------------------------------------------------------- /openapi/vendor/golang.org/x/text/runes/cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/golang.org/x/text/runes/cond.go -------------------------------------------------------------------------------- /openapi/vendor/golang.org/x/text/runes/runes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/golang.org/x/text/runes/runes.go -------------------------------------------------------------------------------- /openapi/vendor/golang.org/x/text/width/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/golang.org/x/text/width/gen.go -------------------------------------------------------------------------------- /openapi/vendor/golang.org/x/text/width/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/golang.org/x/text/width/tables.go -------------------------------------------------------------------------------- /openapi/vendor/golang.org/x/text/width/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/golang.org/x/text/width/trieval.go -------------------------------------------------------------------------------- /openapi/vendor/golang.org/x/text/width/width.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/golang.org/x/text/width/width.go -------------------------------------------------------------------------------- /openapi/vendor/vendor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/openapi/vendor/vendor.json -------------------------------------------------------------------------------- /protobuf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/protobuf/README.md -------------------------------------------------------------------------------- /protobuf/add-people/add_people.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/protobuf/add-people/add_people.go -------------------------------------------------------------------------------- /protobuf/add-people/address-book.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/protobuf/add-people/address-book.txt -------------------------------------------------------------------------------- /protobuf/list-people/address-book.txt: -------------------------------------------------------------------------------- 1 | 2 | 7 3 | robintest@github.com" 4 | 12345678" 5 | 13187654321 -------------------------------------------------------------------------------- /protobuf/list-people/list_people.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/protobuf/list-people/list_people.go -------------------------------------------------------------------------------- /protobuf/tutorial/addressbook.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/protobuf/tutorial/addressbook.pb.go -------------------------------------------------------------------------------- /protobuf/tutorial/addressbook.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/protobuf/tutorial/addressbook.proto -------------------------------------------------------------------------------- /protobuf/vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/protobuf/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /protobuf/vendor/vendor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/protobuf/vendor/vendor.json -------------------------------------------------------------------------------- /rbac/auth-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/rbac/auth-server/README.md -------------------------------------------------------------------------------- /rbac/auth-server/auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/rbac/auth-server/auth/auth.go -------------------------------------------------------------------------------- /rbac/auth-server/auth/order/order.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/rbac/auth-server/auth/order/order.go -------------------------------------------------------------------------------- /rbac/auth-server/auth/product/product.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/rbac/auth-server/auth/product/product.go -------------------------------------------------------------------------------- /rbac/auth-server/auth/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/rbac/auth-server/auth/types.go -------------------------------------------------------------------------------- /rbac/auth-server/cmd/cert/private_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/rbac/auth-server/cmd/cert/private_key.pem -------------------------------------------------------------------------------- /rbac/auth-server/cmd/cert/public_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/rbac/auth-server/cmd/cert/public_key.pem -------------------------------------------------------------------------------- /rbac/auth-server/cmd/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/rbac/auth-server/cmd/config.json -------------------------------------------------------------------------------- /rbac/auth-server/cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/rbac/auth-server/cmd/main.go -------------------------------------------------------------------------------- /rbac/auth-server/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/rbac/auth-server/config/config.go -------------------------------------------------------------------------------- /rbac/auth-server/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/rbac/auth-server/server/server.go -------------------------------------------------------------------------------- /rbac/auth-server/ticket/order/order.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/rbac/auth-server/ticket/order/order.go -------------------------------------------------------------------------------- /rbac/auth-server/ticket/product/product.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/rbac/auth-server/ticket/product/product.go -------------------------------------------------------------------------------- /rbac/auth-server/ticket/ticket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/rbac/auth-server/ticket/ticket.go -------------------------------------------------------------------------------- /rbac/auth-server/token/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/rbac/auth-server/token/token.go -------------------------------------------------------------------------------- /rbac/auth-server/utils/sets/strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/rbac/auth-server/utils/sets/strings.go -------------------------------------------------------------------------------- /sort/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/sort/main.go -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/template/README.md -------------------------------------------------------------------------------- /template/html.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/template/html.go -------------------------------------------------------------------------------- /template/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/template/main.go -------------------------------------------------------------------------------- /template/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/template/metadata.yaml -------------------------------------------------------------------------------- /template/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supereagle/go-example/HEAD/template/text.go --------------------------------------------------------------------------------