├── vendor ├── github.com │ ├── coreos │ │ ├── etcd │ │ │ ├── cmd │ │ │ │ ├── etcd │ │ │ │ ├── tools │ │ │ │ ├── etcdctl │ │ │ │ └── README.md │ │ │ ├── .dockerignore │ │ │ ├── .godir │ │ │ ├── Documentation │ │ │ │ ├── README.md │ │ │ │ └── op-guide │ │ │ │ │ └── etcd-sample-grafana.png │ │ │ ├── tools │ │ │ │ ├── benchmark │ │ │ │ │ └── .gitignore │ │ │ │ └── functional-tester │ │ │ │ │ └── docker │ │ │ │ │ └── Dockerfile │ │ │ ├── e2e │ │ │ │ └── docker │ │ │ │ │ ├── resolv.conf │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── run.sh │ │ │ │ │ ├── rdns.zone │ │ │ │ │ └── etcd.zone │ │ │ ├── hack │ │ │ │ ├── README.md │ │ │ │ ├── scripts-dev │ │ │ │ │ ├── README │ │ │ │ │ ├── docker-dns-srv │ │ │ │ │ │ ├── resolv.conf │ │ │ │ │ │ ├── certs │ │ │ │ │ │ │ ├── gencert.json │ │ │ │ │ │ │ └── ca-csr.json │ │ │ │ │ │ ├── certs-gateway │ │ │ │ │ │ │ ├── gencert.json │ │ │ │ │ │ │ └── ca-csr.json │ │ │ │ │ │ ├── certs-wildcard │ │ │ │ │ │ │ ├── gencert.json │ │ │ │ │ │ │ ├── ca-csr.json │ │ │ │ │ │ │ └── server-ca-csr.json │ │ │ │ │ │ └── rdns.zone │ │ │ │ │ └── docker-dns │ │ │ │ │ │ ├── resolv.conf │ │ │ │ │ │ ├── certs │ │ │ │ │ │ ├── gencert.json │ │ │ │ │ │ ├── ca-csr.json │ │ │ │ │ │ └── server-ca-csr.json │ │ │ │ │ │ ├── certs-common-name │ │ │ │ │ │ ├── gencert.json │ │ │ │ │ │ └── ca-csr.json │ │ │ │ │ │ ├── certs-gateway │ │ │ │ │ │ ├── gencert.json │ │ │ │ │ │ ├── ca-csr.json │ │ │ │ │ │ └── server-ca-csr.json │ │ │ │ │ │ ├── certs-wildcard │ │ │ │ │ │ ├── gencert.json │ │ │ │ │ │ ├── ca-csr.json │ │ │ │ │ │ └── server-ca-csr.json │ │ │ │ │ │ ├── rdns.zone │ │ │ │ │ │ └── etcd.zone │ │ │ │ ├── insta-discovery │ │ │ │ │ ├── README.md │ │ │ │ │ └── discovery │ │ │ │ └── tls-setup │ │ │ │ │ └── config │ │ │ │ │ ├── ca-config.json │ │ │ │ │ ├── req-csr.json │ │ │ │ │ └── ca-csr.json │ │ │ ├── build.bat │ │ │ ├── contrib │ │ │ │ ├── systemd │ │ │ │ │ ├── etcd2-backup-coreos │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ └── etcd2-backup.timer │ │ │ │ │ └── etcd.service │ │ │ │ └── raftexample │ │ │ │ │ └── Procfile │ │ │ ├── integration │ │ │ │ ├── fixtures-expired │ │ │ │ │ └── README │ │ │ │ └── fixtures │ │ │ │ │ ├── revoke.crl │ │ │ │ │ ├── gencert.json │ │ │ │ │ ├── ca-csr.json │ │ │ │ │ └── server-ca-csr.json │ │ │ ├── NOTICE │ │ │ ├── logos │ │ │ │ ├── etcd-offset-bw.png │ │ │ │ ├── etcd-stacked-bw.png │ │ │ │ ├── etcd-glyph-color.png │ │ │ │ ├── etcd-offset-color.png │ │ │ │ ├── etcd-horizontal-bw.png │ │ │ │ ├── etcd-stacked-color.png │ │ │ │ └── etcd-horizontal-color.png │ │ │ ├── Dockerfile │ │ │ ├── pkg │ │ │ │ ├── README.md │ │ │ │ └── monotime │ │ │ │ │ └── issue15006.s │ │ │ ├── .github │ │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ │ └── ISSUE_TEMPLATE.md │ │ │ ├── Dockerfile-release.arm64 │ │ │ ├── Dockerfile-release.ppc64le │ │ │ ├── .gitignore │ │ │ ├── snap │ │ │ │ └── snappb │ │ │ │ │ └── snap.proto │ │ │ └── MAINTAINERS │ │ ├── go-semver │ │ │ ├── .travis.yml │ │ │ ├── example.go │ │ │ └── semver │ │ │ │ └── sort.go │ │ └── go-systemd │ │ │ ├── fixtures │ │ │ ├── mask-unmask.service │ │ │ ├── start-stop.service │ │ │ ├── enable-disable.service │ │ │ ├── subscribe-events.service │ │ │ ├── subscribe-events-set.service │ │ │ ├── start-failed.service │ │ │ └── reload.service │ │ │ └── examples │ │ │ └── activation │ │ │ └── httpserver │ │ │ ├── hello.socket │ │ │ └── hello.service │ ├── modern-go │ │ ├── reflect2 │ │ │ ├── reflect2_amd64.s │ │ │ ├── relfect2_386.s │ │ │ ├── relfect2_arm.s │ │ │ ├── relfect2_arm64.s │ │ │ ├── relfect2_mipsx.s │ │ │ ├── relfect2_s390x.s │ │ │ ├── relfect2_amd64p32.s │ │ │ ├── relfect2_mips64x.s │ │ │ ├── relfect2_ppc64x.s │ │ │ ├── .gitignore │ │ │ ├── go_below_17.go │ │ │ ├── go_above_17.go │ │ │ ├── .travis.yml │ │ │ ├── go_below_19.go │ │ │ ├── go_above_19.go │ │ │ ├── test.sh │ │ │ └── test15 │ │ │ │ └── map_test.go │ │ └── concurrent │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── go_above_19.go │ │ │ ├── test.sh │ │ │ ├── log.go │ │ │ └── map_test.go │ ├── NYTimes │ │ └── gziphandler │ │ │ ├── .gitignore │ │ │ └── .travis.yml │ ├── gogo │ │ └── protobuf │ │ │ ├── test │ │ │ ├── .gitignore │ │ │ ├── oneof │ │ │ │ └── doc.go │ │ │ ├── tags │ │ │ │ └── doc.go │ │ │ ├── embedconflict │ │ │ │ ├── .gitignore │ │ │ │ └── doc.go │ │ │ ├── oneof3 │ │ │ │ └── doc.go │ │ │ ├── packed │ │ │ │ └── doc.go │ │ │ ├── mapsproto2 │ │ │ │ └── doc.go │ │ │ ├── theproto3 │ │ │ │ └── doc.go │ │ │ ├── dashfilename │ │ │ │ └── doc.go │ │ │ ├── defaultconflict │ │ │ │ └── doc.go │ │ │ ├── registration │ │ │ │ └── .gitignore │ │ │ ├── enumdecl │ │ │ │ ├── models.go │ │ │ │ └── Makefile │ │ │ ├── enumdecl_all │ │ │ │ ├── models.go │ │ │ │ └── Makefile │ │ │ ├── typedecl │ │ │ │ ├── Makefile │ │ │ │ └── models.go │ │ │ ├── typedecl_all │ │ │ │ ├── Makefile │ │ │ │ └── models.go │ │ │ ├── proto3extension │ │ │ │ └── proto3ext.proto │ │ │ ├── issue260 │ │ │ │ ├── Makefile │ │ │ │ └── README.md │ │ │ ├── issue262 │ │ │ │ ├── timefail.proto │ │ │ │ └── Makefile │ │ │ └── issue261 │ │ │ │ ├── issue261.proto │ │ │ │ └── Makefile │ │ │ ├── vanity │ │ │ └── test │ │ │ │ ├── doc.go │ │ │ │ └── gofast │ │ │ │ └── .gitignore │ │ │ ├── .gitignore │ │ │ ├── protoc-gen-gogo │ │ │ └── testdata │ │ │ │ └── multi │ │ │ │ └── .gitignore │ │ │ ├── GOLANG_CONTRIBUTORS │ │ │ └── jsonpb │ │ │ └── jsonpb_test_proto │ │ │ └── bytes.go │ ├── prometheus │ │ ├── procfs │ │ │ ├── fixtures │ │ │ │ ├── 584 │ │ │ │ │ └── stat │ │ │ │ ├── 26231 │ │ │ │ │ ├── comm │ │ │ │ │ ├── exe │ │ │ │ │ ├── cmdline │ │ │ │ │ ├── fd │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── 1 │ │ │ │ │ │ ├── 2 │ │ │ │ │ │ ├── 3 │ │ │ │ │ │ └── 10 │ │ │ │ │ ├── io │ │ │ │ │ └── stat │ │ │ │ ├── 26232 │ │ │ │ │ ├── cmdline │ │ │ │ │ ├── comm │ │ │ │ │ ├── fd │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── 1 │ │ │ │ │ │ ├── 2 │ │ │ │ │ │ ├── 3 │ │ │ │ │ │ └── 4 │ │ │ │ │ └── stat │ │ │ │ ├── self │ │ │ │ ├── symlinktargets │ │ │ │ │ ├── abc │ │ │ │ │ ├── def │ │ │ │ │ ├── ghi │ │ │ │ │ ├── uvw │ │ │ │ │ ├── xyz │ │ │ │ │ └── README │ │ │ │ ├── buddyinfo │ │ │ │ │ ├── short │ │ │ │ │ │ └── buddyinfo │ │ │ │ │ ├── valid │ │ │ │ │ │ └── buddyinfo │ │ │ │ │ └── sizemismatch │ │ │ │ │ │ └── buddyinfo │ │ │ │ └── net │ │ │ │ │ └── ip_vs_stats │ │ │ ├── MAINTAINERS.md │ │ │ ├── sysfs │ │ │ │ └── fixtures │ │ │ │ │ └── fs │ │ │ │ │ └── xfs │ │ │ │ │ ├── sda1 │ │ │ │ │ └── stats │ │ │ │ │ │ └── stats │ │ │ │ │ └── sdb1 │ │ │ │ │ └── stats │ │ │ │ │ └── stats │ │ │ ├── .travis.yml │ │ │ ├── Makefile │ │ │ ├── NOTICE │ │ │ └── stat_test.go │ │ ├── client_golang │ │ │ ├── VERSION │ │ │ ├── prometheus │ │ │ │ ├── .gitignore │ │ │ │ └── README.md │ │ │ ├── MAINTAINERS.md │ │ │ ├── .travis.yml │ │ │ └── .gitignore │ │ ├── client_model │ │ │ ├── .gitignore │ │ │ ├── ruby │ │ │ │ ├── Rakefile │ │ │ │ ├── .gitignore │ │ │ │ ├── lib │ │ │ │ │ └── prometheus │ │ │ │ │ │ └── client │ │ │ │ │ │ ├── model.rb │ │ │ │ │ │ └── model │ │ │ │ │ │ └── version.rb │ │ │ │ └── Gemfile │ │ │ ├── NOTICE │ │ │ └── AUTHORS.md │ │ └── common │ │ │ ├── expfmt │ │ │ ├── fuzz │ │ │ │ └── corpus │ │ │ │ │ ├── minimal │ │ │ │ │ ├── from_test_parse_0 │ │ │ │ │ ├── from_test_parse_error_0 │ │ │ │ │ ├── from_test_parse_error_3 │ │ │ │ │ ├── from_test_parse_error_1 │ │ │ │ │ ├── from_test_parse_error_16 │ │ │ │ │ ├── from_test_parse_error_18 │ │ │ │ │ ├── from_test_parse_error_5 │ │ │ │ │ ├── from_test_parse_error_6 │ │ │ │ │ ├── from_test_parse_error_8 │ │ │ │ │ ├── from_test_parse_error_15 │ │ │ │ │ ├── from_test_parse_error_4 │ │ │ │ │ ├── from_test_parse_error_10 │ │ │ │ │ ├── from_test_parse_error_11 │ │ │ │ │ ├── from_test_parse_error_17 │ │ │ │ │ ├── from_test_parse_error_9 │ │ │ │ │ ├── from_test_parse_error_2 │ │ │ │ │ ├── from_test_parse_error_12 │ │ │ │ │ ├── from_test_parse_error_14 │ │ │ │ │ ├── from_test_parse_error_13 │ │ │ │ │ ├── from_test_parse_error_7 │ │ │ │ │ ├── from_test_parse_error_19 │ │ │ │ │ ├── from_test_parse_1 │ │ │ │ │ └── from_test_parse_2 │ │ │ └── testdata │ │ │ │ ├── protobuf │ │ │ │ ├── text.gz │ │ │ │ └── protobuf.gz │ │ │ ├── config │ │ │ └── testdata │ │ │ │ ├── tls_config.empty.good.yml │ │ │ │ ├── tls_config.cert_no_key.bad.yml │ │ │ │ ├── tls_config.key_no_cert.bad.yml │ │ │ │ ├── tls_config.insecure.good.yml │ │ │ │ └── tls_config.invalid_field.bad.yml │ │ │ ├── MAINTAINERS.md │ │ │ ├── .travis.yml │ │ │ └── NOTICE │ ├── spf13 │ │ ├── pflag │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ └── verify │ │ │ │ ├── golint.sh │ │ │ │ └── gofmt.sh │ │ └── cobra │ │ │ ├── command_notwin.go │ │ │ ├── .mailmap │ │ │ └── command_win.go │ ├── beorn7 │ │ └── perks │ │ │ └── .gitignore │ ├── emicklei │ │ ├── go-restful │ │ │ ├── examples │ │ │ │ ├── .goconvey │ │ │ │ ├── google_app_engine │ │ │ │ │ ├── .goconvey │ │ │ │ │ ├── datastore │ │ │ │ │ │ └── .goconvey │ │ │ │ │ └── restful-appstats-integration.go │ │ │ │ └── home.html │ │ │ ├── Srcfile │ │ │ ├── .travis.yml │ │ │ ├── coverage.sh │ │ │ ├── Makefile │ │ │ ├── tracer_test.go │ │ │ └── bench_test.sh │ │ └── go-restful-swagger12 │ │ │ ├── .travis.yml │ │ │ └── test_package │ │ │ └── struct.go │ ├── go-openapi │ │ ├── swag │ │ │ └── .gitignore │ │ ├── jsonpointer │ │ │ ├── .gitignore │ │ │ └── .pullapprove.yml │ │ ├── jsonreference │ │ │ ├── .gitignore │ │ │ └── .pullapprove.yml │ │ └── spec │ │ │ ├── .gitignore │ │ │ ├── fixtures │ │ │ ├── specs │ │ │ │ ├── deeper │ │ │ │ │ ├── stringProp.json │ │ │ │ │ └── arrayProp.json │ │ │ │ ├── resolution2.json │ │ │ │ └── resolution.json │ │ │ └── local_expansion │ │ │ │ └── item.json │ │ │ └── schemas │ │ │ └── v2 │ │ │ └── README.md │ ├── google │ │ ├── btree │ │ │ └── .travis.yml │ │ └── gofuzz │ │ │ └── .travis.yml │ ├── imdario │ │ └── mergo │ │ │ ├── .travis.yml │ │ │ └── testdata │ │ │ ├── license.yml │ │ │ └── thing.yml │ ├── pborman │ │ └── uuid │ │ │ ├── CONTRIBUTORS │ │ │ └── doc.go │ ├── json-iterator │ │ └── go │ │ │ ├── .codecov.yml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── value_tests │ │ │ ├── bool_test.go │ │ │ ├── raw_message_test.go │ │ │ └── number_test.go │ │ │ ├── test.sh │ │ │ ├── skip_tests │ │ │ ├── array_test.go │ │ │ └── string_test.go │ │ │ ├── build.sh │ │ │ └── any_tests │ │ │ └── jsoniter_any_null_test.go │ ├── mailru │ │ └── easyjson │ │ │ ├── .gitignore │ │ │ ├── tests │ │ │ ├── nothing.go │ │ │ ├── snake.go │ │ │ └── omitempty.go │ │ │ ├── .travis.yml │ │ │ ├── benchmark │ │ │ ├── dummy_test.go │ │ │ └── ujson.sh │ │ │ └── jlexer │ │ │ ├── error.go │ │ │ └── bytestostr_nounsafe.go │ ├── matttproud │ │ └── golang_protobuf_extensions │ │ │ ├── .travis.yml │ │ │ └── ext │ │ │ └── moved.go │ ├── ugorji │ │ └── go │ │ │ └── codec │ │ │ ├── prebuild.go │ │ │ ├── codecgen │ │ │ └── z.go │ │ │ ├── gen_17.go │ │ │ ├── gen_16.go │ │ │ ├── gen_15.go │ │ │ ├── decode_go14.go │ │ │ └── decode_go.go │ ├── PuerkitoBio │ │ ├── purell │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ └── benchmarks │ │ │ │ └── v0.1.0 │ │ └── urlesc │ │ │ └── .travis.yml │ ├── openshift │ │ └── generic-admission-server │ │ │ ├── hack │ │ │ └── update-deps.sh │ │ │ ├── .travis.yml │ │ │ ├── Makefile │ │ │ └── .gitignore │ ├── googleapis │ │ └── gnostic │ │ │ ├── examples │ │ │ ├── README.md │ │ │ └── v2.0 │ │ │ │ ├── yaml │ │ │ │ └── petstore-separate │ │ │ │ │ ├── common │ │ │ │ │ └── Error.yaml │ │ │ │ │ └── spec │ │ │ │ │ ├── NewPet.yaml │ │ │ │ │ ├── Pet.yaml │ │ │ │ │ └── parameters.yaml │ │ │ │ └── json │ │ │ │ └── petstore-separate │ │ │ │ ├── common │ │ │ │ └── Error.json │ │ │ │ └── spec │ │ │ │ ├── Pet.json │ │ │ │ └── NewPet.json │ │ │ ├── test │ │ │ ├── README.md │ │ │ └── errors │ │ │ │ ├── petstore-missingversion.errors │ │ │ │ └── petstore-unresolvedrefs.errors │ │ │ ├── printer │ │ │ └── README.md │ │ │ ├── jsonschema │ │ │ └── README.md │ │ │ ├── jsonwriter │ │ │ └── README.md │ │ │ ├── plugins │ │ │ ├── gnostic-go-generator │ │ │ │ └── examples │ │ │ │ │ └── v2.0 │ │ │ │ │ ├── xkcd │ │ │ │ │ └── Makefile │ │ │ │ │ ├── apis_guru │ │ │ │ │ └── Makefile │ │ │ │ │ └── bookstore │ │ │ │ │ └── service │ │ │ │ │ └── app.yaml │ │ │ ├── gnostic-swift-generator │ │ │ │ └── examples │ │ │ │ │ └── bookstore │ │ │ │ │ └── Makefile │ │ │ └── README.md │ │ │ ├── compiler │ │ │ └── README.md │ │ │ ├── generate-gnostic │ │ │ └── test │ │ │ │ ├── errors │ │ │ │ ├── x-extension-name-collision.errors │ │ │ │ └── x-unsupportedprimitives.errors │ │ │ │ ├── x-unsupportedprimitives.json │ │ │ │ └── x-extension-name-collision.json │ │ │ ├── .gitignore │ │ │ ├── extensions │ │ │ ├── COMPILE-EXTENSION.sh │ │ │ └── README.md │ │ │ ├── apps │ │ │ ├── petstore-builder │ │ │ │ └── README.md │ │ │ └── report │ │ │ │ └── README.md │ │ │ └── tools │ │ │ └── README.md │ ├── ghodss │ │ └── yaml │ │ │ ├── .travis.yml │ │ │ └── .gitignore │ ├── golang │ │ └── protobuf │ │ │ ├── conformance │ │ │ └── conformance.sh │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ └── .gitignore │ ├── evanphx │ │ └── json-patch │ │ │ └── .travis.yml │ ├── davecgh │ │ └── go-spew │ │ │ ├── .gitignore │ │ │ └── .travis.yml │ └── hashicorp │ │ └── golang-lru │ │ └── .gitignore ├── google.golang.org │ ├── grpc │ │ ├── .please-update │ │ ├── AUTHORS │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE │ │ └── .travis.yml │ └── genproto │ │ └── .travis.yml ├── golang.org │ └── x │ │ ├── sys │ │ ├── unix │ │ │ ├── .gitignore │ │ │ ├── endian_big.go │ │ │ ├── export_test.go │ │ │ ├── endian_little.go │ │ │ ├── constants.go │ │ │ ├── syscall_no_getwd.go │ │ │ ├── zsysnum_solaris_amd64.go │ │ │ ├── env_unset.go │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ ├── pagesize_unix.go │ │ │ └── flock_linux_32bit.go │ │ ├── codereview.cfg │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── plan9 │ │ │ ├── asm.s │ │ │ └── env_unset.go │ │ ├── windows │ │ │ ├── svc │ │ │ │ └── go12.go │ │ │ ├── registry │ │ │ │ ├── mksyscall.go │ │ │ │ └── export_test.go │ │ │ ├── mksyscall.go │ │ │ ├── env_unset.go │ │ │ ├── asm_windows_386.s │ │ │ └── asm_windows_amd64.s │ │ └── .gitattributes │ │ ├── net │ │ ├── codereview.cfg │ │ ├── http2 │ │ │ ├── .gitignore │ │ │ ├── h2demo │ │ │ │ ├── rootCA.srl │ │ │ │ ├── .gitignore │ │ │ │ └── Makefile │ │ │ ├── Makefile │ │ │ ├── not_go19.go │ │ │ ├── go16.go │ │ │ └── go19.go │ │ ├── .gitignore │ │ ├── README │ │ ├── html │ │ │ ├── charset │ │ │ │ └── testdata │ │ │ │ │ ├── UTF-16BE-BOM.html │ │ │ │ │ └── UTF-16LE-BOM.html │ │ │ └── testdata │ │ │ │ └── webkit │ │ │ │ ├── pending-spec-changes-plain-text-unsafe.dat │ │ │ │ └── scripted │ │ │ │ └── adoption01.dat │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── internal │ │ │ ├── socket │ │ │ │ ├── sys_darwin.go │ │ │ │ ├── sys_dragonfly.go │ │ │ │ ├── sys_linux_amd64.go │ │ │ │ ├── sys_linux_arm.go │ │ │ │ ├── sys_linux_arm64.go │ │ │ │ ├── sys_linux_mips.go │ │ │ │ ├── sys_linux_ppc64.go │ │ │ │ ├── sys_linux_mips64.go │ │ │ │ ├── sys_linux_mips64le.go │ │ │ │ ├── sys_linux_mipsle.go │ │ │ │ ├── sys_linux_ppc64le.go │ │ │ │ ├── msghdr_openbsd.go │ │ │ │ ├── iovec_stub.go │ │ │ │ ├── msghdr_bsdvar.go │ │ │ │ ├── sys_linux_386.s │ │ │ │ ├── sys_bsdvar.go │ │ │ │ ├── sys_linux_s390x.s │ │ │ │ ├── sys_solaris_amd64.s │ │ │ │ ├── cmsghdr_bsd.go │ │ │ │ ├── cmsghdr_solaris_64bit.go │ │ │ │ ├── cmsghdr_linux_32bit.go │ │ │ │ ├── iovec_solaris_64bit.go │ │ │ │ ├── cmsghdr_linux_64bit.go │ │ │ │ ├── cmsghdr.go │ │ │ │ └── iovec_32bit.go │ │ │ └── nettest │ │ │ │ ├── helper_nobsd.go │ │ │ │ └── rlimit.go │ │ ├── lif │ │ │ └── sys_solaris_amd64.s │ │ ├── icmp │ │ │ └── sys_freebsd.go │ │ ├── bpf │ │ │ └── setter.go │ │ ├── webdav │ │ │ ├── file_go1.7.go │ │ │ └── file_go1.6.go │ │ ├── ipv4 │ │ │ ├── sys_stub.go │ │ │ ├── sys_bpf_stub.go │ │ │ ├── control_windows.go │ │ │ └── control_stub.go │ │ ├── ipv6 │ │ │ ├── sys_stub.go │ │ │ ├── sys_bpf_stub.go │ │ │ ├── control_windows.go │ │ │ └── control_stub.go │ │ └── .gitattributes │ │ ├── crypto │ │ ├── codereview.cfg │ │ ├── .gitignore │ │ ├── ed25519 │ │ │ └── testdata │ │ │ │ └── sign.input.gz │ │ ├── sha3 │ │ │ ├── testdata │ │ │ │ └── keccakKats.json.deflate │ │ │ └── keccakf_amd64.go │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── ssh │ │ │ ├── test │ │ │ │ └── doc.go │ │ │ ├── terminal │ │ │ │ ├── util_linux.go │ │ │ │ └── util_bsd.go │ │ │ └── testdata │ │ │ │ └── doc.go │ │ ├── curve25519 │ │ │ └── const_amd64.h │ │ ├── blake2b │ │ │ └── blake2b_ref.go │ │ ├── .gitattributes │ │ ├── argon2 │ │ │ └── blamka_ref.go │ │ └── blake2s │ │ │ └── register.go │ │ ├── text │ │ ├── codereview.cfg │ │ ├── encoding │ │ │ ├── testdata │ │ │ │ ├── candide-gb18030.txt │ │ │ │ ├── rashomon-euc-jp.txt │ │ │ │ ├── candide-utf-16le.txt │ │ │ │ ├── candide-utf-32be.txt │ │ │ │ ├── rashomon-shift-jis.txt │ │ │ │ ├── candide-windows-1252.txt │ │ │ │ ├── unsu-joh-eun-nal-euc-kr.txt │ │ │ │ ├── sunzi-bingfa-simplified-gbk.txt │ │ │ │ └── sunzi-bingfa-traditional-big5.txt │ │ │ ├── japanese │ │ │ │ └── all.go │ │ │ └── simplifiedchinese │ │ │ │ └── all.go │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── .gitignore │ │ ├── internal │ │ │ ├── export │ │ │ │ └── README │ │ │ └── testtext │ │ │ │ ├── gc.go │ │ │ │ └── gccgo.go │ │ ├── collate │ │ │ └── tools │ │ │ │ └── colcmp │ │ │ │ └── Makefile │ │ ├── language │ │ │ ├── go1_2.go │ │ │ └── common.go │ │ ├── secure │ │ │ └── doc.go │ │ ├── .gitattributes │ │ └── unicode │ │ │ ├── doc.go │ │ │ └── norm │ │ │ └── norm_test.go │ │ └── time │ │ ├── README │ │ ├── AUTHORS │ │ └── CONTRIBUTORS ├── k8s.io │ ├── code-generator │ │ ├── cmd │ │ │ ├── set-gen │ │ │ │ └── .gitignore │ │ │ ├── import-boss │ │ │ │ └── .gitignore │ │ │ ├── lister-gen │ │ │ │ └── .import-restrictions │ │ │ ├── go-to-protobuf │ │ │ │ ├── .gitignore │ │ │ │ └── OWNERS │ │ │ └── client-gen │ │ │ │ ├── OWNERS │ │ │ │ └── README.md │ │ ├── Godeps │ │ │ ├── OWNERS │ │ │ └── Readme │ │ ├── OWNERS │ │ ├── code-of-conduct.md │ │ └── .github │ │ │ └── PULL_REQUEST_TEMPLATE.md │ ├── api │ │ ├── Godeps │ │ │ ├── OWNERS │ │ │ └── Readme │ │ ├── storage │ │ │ └── OWNERS │ │ ├── imagepolicy │ │ │ └── OWNERS │ │ ├── networking │ │ │ └── OWNERS │ │ ├── events │ │ │ └── OWNERS │ │ ├── README.md │ │ ├── authentication │ │ │ └── OWNERS │ │ ├── policy │ │ │ └── OWNERS │ │ ├── code-of-conduct.md │ │ ├── .github │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── certificates │ │ │ └── OWNERS │ │ ├── authorization │ │ │ └── OWNERS │ │ ├── rbac │ │ │ └── OWNERS │ │ ├── batch │ │ │ └── OWNERS │ │ ├── apps │ │ │ └── OWNERS │ │ └── autoscaling │ │ │ └── OWNERS │ ├── apiserver │ │ ├── Godeps │ │ │ ├── OWNERS │ │ │ └── Readme │ │ ├── pkg │ │ │ ├── server │ │ │ │ ├── mux │ │ │ │ │ └── OWNERS │ │ │ │ ├── routes │ │ │ │ │ ├── OWNERS │ │ │ │ │ └── data │ │ │ │ │ │ └── README.md │ │ │ │ ├── filters │ │ │ │ │ └── OWNERS │ │ │ │ └── options │ │ │ │ │ └── OWNERS │ │ │ ├── endpoints │ │ │ │ ├── openapi │ │ │ │ │ └── OWNERS │ │ │ │ ├── request │ │ │ │ │ └── OWNERS │ │ │ │ ├── metrics │ │ │ │ │ └── OWNERS │ │ │ │ ├── filters │ │ │ │ │ └── OWNERS │ │ │ │ └── testing │ │ │ │ │ └── OWNERS │ │ │ ├── features │ │ │ │ └── OWNERS │ │ │ ├── authentication │ │ │ │ └── request │ │ │ │ │ └── x509 │ │ │ │ │ └── testdata │ │ │ │ │ ├── client.csr.json │ │ │ │ │ ├── root.csr.json │ │ │ │ │ └── intermediate.csr.json │ │ │ ├── authorization │ │ │ │ └── authorizerfactory │ │ │ │ │ └── OWNERS │ │ │ └── storage │ │ │ │ ├── etcd3 │ │ │ │ └── OWNERS │ │ │ │ ├── storagebackend │ │ │ │ └── OWNERS │ │ │ │ ├── testing │ │ │ │ └── OWNERS │ │ │ │ └── etcd │ │ │ │ └── OWNERS │ │ ├── plugin │ │ │ └── pkg │ │ │ │ └── authenticator │ │ │ │ └── token │ │ │ │ └── oidc │ │ │ │ ├── OWNERS │ │ │ │ └── testdata │ │ │ │ ├── ecdsa_1.pem │ │ │ │ ├── ecdsa_2.pem │ │ │ │ └── ecdsa_3.pem │ │ ├── code-of-conduct.md │ │ ├── .github │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── .import-restrictions │ │ └── OWNERS │ ├── client-go │ │ ├── Godeps │ │ │ ├── OWNERS │ │ │ └── Readme │ │ ├── pkg │ │ │ └── version │ │ │ │ └── .gitattributes │ │ ├── util │ │ │ ├── retry │ │ │ │ └── OWNERS │ │ │ ├── certificate │ │ │ │ └── OWNERS │ │ │ └── cert │ │ │ │ └── testdata │ │ │ │ └── dontUseThisKey.pem │ │ ├── tools │ │ │ ├── bootstrap │ │ │ │ └── token │ │ │ │ │ └── OWNERS │ │ │ ├── metrics │ │ │ │ └── OWNERS │ │ │ ├── leaderelection │ │ │ │ └── OWNERS │ │ │ └── record │ │ │ │ └── OWNERS │ │ ├── plugin │ │ │ └── pkg │ │ │ │ └── client │ │ │ │ └── auth │ │ │ │ ├── oidc │ │ │ │ └── OWNERS │ │ │ │ └── gcp │ │ │ │ └── OWNERS │ │ ├── .travis.yml │ │ ├── transport │ │ │ └── OWNERS │ │ ├── code-of-conduct.md │ │ ├── .github │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── OWNERS │ │ └── rest │ │ │ └── OWNERS │ ├── apimachinery │ │ ├── Godeps │ │ │ ├── OWNERS │ │ │ └── Readme │ │ ├── pkg │ │ │ ├── util │ │ │ │ ├── mergepatch │ │ │ │ │ └── OWNERS │ │ │ │ └── strategicpatch │ │ │ │ │ └── OWNERS │ │ │ ├── OWNERS │ │ │ └── api │ │ │ │ ├── resource │ │ │ │ └── OWNERS │ │ │ │ ├── errors │ │ │ │ └── OWNERS │ │ │ │ └── meta │ │ │ │ └── OWNERS │ │ ├── third_party │ │ │ └── forked │ │ │ │ └── golang │ │ │ │ └── json │ │ │ │ └── OWNERS │ │ ├── code-of-conduct.md │ │ ├── .github │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ └── OWNERS │ └── kube-openapi │ │ ├── .travis.yml │ │ ├── Godeps │ │ └── Readme │ │ ├── OWNERS │ │ ├── test │ │ └── integration │ │ │ └── testdata │ │ │ └── listtype │ │ │ ├── set-list.go │ │ │ ├── atomic-list.go │ │ │ └── map-list.go │ │ ├── code-of-conduct.md │ │ └── .gitignore ├── gopkg.in │ ├── yaml.v2 │ │ ├── .travis.yml │ │ └── suite_test.go │ └── natefinch │ │ └── lumberjack.v2 │ │ ├── chown.go │ │ └── .gitignore └── bitbucket.org │ └── ww │ └── goautoneg │ ├── .hg_archival.txt │ └── Makefile ├── hack └── update-deps.sh ├── artifacts ├── example │ └── reserve-deads.yaml └── simple-image │ └── Dockerfile ├── .travis.yml ├── .gitignore └── glide.yaml /vendor/github.com/coreos/etcd/cmd/etcd: -------------------------------------------------------------------------------- 1 | ../ -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/cmd/tools: -------------------------------------------------------------------------------- 1 | ../tools -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/.please-update: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/cmd/etcdctl: -------------------------------------------------------------------------------- 1 | ../etcdctl -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/reflect2_amd64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_386.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mipsx.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_s390x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/github.com/NYTimes/gziphandler/.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/.gitignore: -------------------------------------------------------------------------------- 1 | *.dat 2 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_amd64p32.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mips64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_ppc64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26232/cmdline: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/self: -------------------------------------------------------------------------------- 1 | 26231 -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | *.prof 3 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/.godir: -------------------------------------------------------------------------------- 1 | github.com/coreos/etcd 2 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/Documentation/README.md: -------------------------------------------------------------------------------- 1 | docs.md -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/examples/.goconvey: -------------------------------------------------------------------------------- 1 | ignore -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/github.com/google/btree/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_golang/VERSION: -------------------------------------------------------------------------------- 1 | 0.8.0 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/comm: -------------------------------------------------------------------------------- 1 | vim 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/symlinktargets/abc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/symlinktargets/def: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/symlinktargets/ghi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/symlinktargets/uvw: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/symlinktargets/xyz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/cmd/set-gen/.gitignore: -------------------------------------------------------------------------------- 1 | set-gen 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/jsonpointer/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/oneof/doc.go: -------------------------------------------------------------------------------- 1 | package one 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/tags/doc.go: -------------------------------------------------------------------------------- 1 | package tags 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/vanity/test/doc.go: -------------------------------------------------------------------------------- 1 | package test 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/vanity/test/gofast/.gitignore: -------------------------------------------------------------------------------- 1 | *.pb.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/.gitignore: -------------------------------------------------------------------------------- 1 | /coverage.txt 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_model/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/exe: -------------------------------------------------------------------------------- 1 | /usr/bin/vim -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26232/comm: -------------------------------------------------------------------------------- 1 | ata_sff 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/rootCA.srl: -------------------------------------------------------------------------------- 1 | E2CE26BF3285059C 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/text/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/Godeps/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - dep-approvers 3 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/tools/benchmark/.gitignore: -------------------------------------------------------------------------------- 1 | benchmark 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/jsonreference/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/.gitignore: -------------------------------------------------------------------------------- 1 | ._* 2 | *.js 3 | *.js.map 4 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/embedconflict/.gitignore: -------------------------------------------------------------------------------- 1 | *.pb.go 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/oneof3/doc.go: -------------------------------------------------------------------------------- 1 | package oneof3 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/packed/doc.go: -------------------------------------------------------------------------------- 1 | package packed 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/minimal: -------------------------------------------------------------------------------- 1 | m{} 0 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/Godeps/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - dep-approvers 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/server/mux/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - sttts 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/Godeps/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - dep-approvers 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/cmd/import-boss/.gitignore: -------------------------------------------------------------------------------- 1 | import-boss 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/cmd/lister-gen/.import-restrictions: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /hack/update-deps.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash -e 2 | 3 | glide update --strip-vendor 4 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/e2e/docker/resolv.conf: -------------------------------------------------------------------------------- 1 | nameserver 127.0.0.1 2 | -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/Srcfile: -------------------------------------------------------------------------------- 1 | {"SkipDirs": ["examples"]} 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/spec/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/mapsproto2/doc.go: -------------------------------------------------------------------------------- 1 | package mapsproto2 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/theproto3/doc.go: -------------------------------------------------------------------------------- 1 | package theproto3 2 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /coverage.txt 3 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/config/testdata/tls_config.empty.good.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/cmdline: -------------------------------------------------------------------------------- 1 | vimtest.go+10 -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - deads2k 3 | - mbohlool 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/Godeps/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - dep-approvers 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/server/routes/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - sttts 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/pkg/version/.gitattributes: -------------------------------------------------------------------------------- 1 | base.go export-subst 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/retry/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - caesarxuchao 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/Godeps/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - dep-approvers 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/cmd/go-to-protobuf/.gitignore: -------------------------------------------------------------------------------- 1 | go-to-protobuf 2 | -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/examples/google_app_engine/.goconvey: -------------------------------------------------------------------------------- 1 | ignore -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/dashfilename/doc.go: -------------------------------------------------------------------------------- 1 | package dashfilename 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/embedconflict/doc.go: -------------------------------------------------------------------------------- 1 | package embedconflict 2 | -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | install: go get -t 3 | -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | Paul Borman 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_0: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/fd/0: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/abc -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/fd/1: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/def -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/fd/10: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/xyz -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/fd/2: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/ghi -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/fd/3: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/uvw -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26232/fd/0: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/abc -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26232/fd/1: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/def -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26232/fd/2: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/ghi -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26232/fd/3: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/uvw -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26232/fd/4: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/xyz -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/endpoints/openapi/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - mbohlool 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/endpoints/request/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - sttts 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/features/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - feature-approvers 3 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/protoc-gen-gogo/testdata/multi/.gitignore: -------------------------------------------------------------------------------- 1 | *.pb.go 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/defaultconflict/doc.go: -------------------------------------------------------------------------------- 1 | package defaultcheck 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/registration/.gitignore: -------------------------------------------------------------------------------- 1 | *.pb.go 2 | *_test.go 3 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_model/ruby/Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_0: -------------------------------------------------------------------------------- 1 | bla 3.14 -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/server/filters/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - sttts 3 | - dims 4 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/hack/README.md: -------------------------------------------------------------------------------- 1 | Various hacks that are used by developers. 2 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/hack/scripts-dev/README: -------------------------------------------------------------------------------- 1 | 2 | scripts for etcd development 3 | -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/examples/google_app_engine/datastore/.goconvey: -------------------------------------------------------------------------------- 1 | ignore -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - "output_tests/.*" 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/mailru/easyjson/.gitignore: -------------------------------------------------------------------------------- 1 | .root 2 | *_easyjson.go 3 | *.iml 4 | .idea 5 | -------------------------------------------------------------------------------- /vendor/github.com/matttproud/golang_protobuf_extensions/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/MAINTAINERS.md: -------------------------------------------------------------------------------- 1 | * Tobias Schmidt 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/time/README: -------------------------------------------------------------------------------- 1 | This repository provides supplementary Go time packages. 2 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/build.bat: -------------------------------------------------------------------------------- 1 | powershell -ExecutionPolicy Bypass -File build.ps1 2 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/hack/scripts-dev/docker-dns-srv/resolv.conf: -------------------------------------------------------------------------------- 1 | nameserver 127.0.0.1 2 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/hack/scripts-dev/docker-dns/resolv.conf: -------------------------------------------------------------------------------- 1 | nameserver 127.0.0.1 2 | -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful-swagger12/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.x -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_golang/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | command-line-arguments.test 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_3: -------------------------------------------------------------------------------- 1 | metric{@="bla"} 3.14 -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/imagepolicy/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - deads2k 3 | - mbohlool 4 | - jianhuiz 5 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/spec/fixtures/specs/deeper/stringProp.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "string" 3 | } -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /bug_test.go 3 | /coverage.txt 4 | /.idea 5 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_golang/MAINTAINERS.md: -------------------------------------------------------------------------------- 1 | * Björn Rabenstein 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/MAINTAINERS.md: -------------------------------------------------------------------------------- 1 | * Fabian Reinartz 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_1: -------------------------------------------------------------------------------- 1 | metric{label="\t"} 3.14 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_16: -------------------------------------------------------------------------------- 1 | 2 | # TYPE met-ric 3 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_18: -------------------------------------------------------------------------------- 1 | {label="bla"} 3.14 2 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_5: -------------------------------------------------------------------------------- 1 | metric{label+="bla"} 3.14 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_6: -------------------------------------------------------------------------------- 1 | metric{label=bla} 3.14 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_8: -------------------------------------------------------------------------------- 1 | metric{label="bla"+} 3.14 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/sysfs/fixtures/fs/xfs/sda1/stats/stats: -------------------------------------------------------------------------------- 1 | extent_alloc 1 0 0 0 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/sysfs/fixtures/fs/xfs/sdb1/stats/stats: -------------------------------------------------------------------------------- 1 | extent_alloc 2 0 0 0 2 | -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/prebuild.go: -------------------------------------------------------------------------------- 1 | package codec 2 | 3 | //go:generate bash prebuild.sh 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/endpoints/metrics/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - wojtek-t 3 | - jimmidyson 4 | -------------------------------------------------------------------------------- /vendor/github.com/PuerkitoBio/purell/.gitignore: -------------------------------------------------------------------------------- 1 | *.sublime-* 2 | .DS_Store 3 | *.swp 4 | *.swo 5 | tags 6 | -------------------------------------------------------------------------------- /vendor/github.com/mailru/easyjson/tests/nothing.go: -------------------------------------------------------------------------------- 1 | package tests 2 | 3 | // No structs in this file 4 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/config/testdata/tls_config.cert_no_key.bad.yml: -------------------------------------------------------------------------------- 1 | cert_file: somefile 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/config/testdata/tls_config.key_no_cert.bad.yml: -------------------------------------------------------------------------------- 1 | key_file: somefile 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_15: -------------------------------------------------------------------------------- 1 | 2 | # TYPE metric bla 3 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_4: -------------------------------------------------------------------------------- 1 | metric{__name__="bla"} 3.14 -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/endpoints/filters/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - deads2k 3 | - sttts 4 | - soltysh 5 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/config/testdata/tls_config.insecure.good.yml: -------------------------------------------------------------------------------- 1 | insecure_skip_verify: true 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/config/testdata/tls_config.invalid_field.bad.yml: -------------------------------------------------------------------------------- 1 | something_invalid: true 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_10: -------------------------------------------------------------------------------- 1 | metric{label="bla"} 3.14 2 3 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_11: -------------------------------------------------------------------------------- 1 | metric{label="bla"} blubb 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_17: -------------------------------------------------------------------------------- 1 | @invalidmetric{label="bla"} 3.14 2 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_9: -------------------------------------------------------------------------------- 1 | metric{label="bla"} 3.14 2.72 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/authentication/request/x509/testdata/client.csr.json: -------------------------------------------------------------------------------- 1 | { 2 | "CN": "My Client" 3 | } -------------------------------------------------------------------------------- /vendor/github.com/NYTimes/gziphandler/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.7 5 | - 1.8 6 | - tip 7 | -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.x 5 | 6 | script: go test -v -------------------------------------------------------------------------------- /vendor/k8s.io/api/networking/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - caseydavenport 3 | - cmluciano 4 | - danwinship 5 | - thockin 6 | -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/coverage.sh: -------------------------------------------------------------------------------- 1 | go test -coverprofile=coverage.out 2 | go tool cover -html=coverage.out -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_model/ruby/.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | .bundle 3 | Gemfile.lock 4 | pkg 5 | vendor/bundle 6 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | 3 | language: go 4 | go: 5 | - 1.7.5 6 | - tip 7 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_2: -------------------------------------------------------------------------------- 1 | 2 | metric{label="new 3 | line"} 3.14 4 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | language: go 3 | go: 4 | - 1.6.4 5 | - 1.7.4 6 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/buddyinfo/short/buddyinfo: -------------------------------------------------------------------------------- 1 | Node 0, zone 2 | Node 0, zone 3 | Node 0, zone 4 | -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/codecgen/z.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | const genCodecPath = "github.com/ugorji/go/codec" 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/authorization/authorizerfactory/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - deads2k 3 | - dims 4 | - ericchiang 5 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/tools/bootstrap/token/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - jbeda 3 | - luxas 4 | reviewers: 5 | - mattmoyer 6 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/contrib/systemd/etcd2-backup-coreos/.gitignore: -------------------------------------------------------------------------------- 1 | rclone.conf 2 | bin 3 | etcd2-backup.tgz 4 | *~ 5 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-semver/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 3 | - 1.1 4 | - tip 5 | script: cd semver && go test 6 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/generic-admission-server/hack/update-deps.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash -e 2 | 3 | glide update --strip-vendor 4 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_12: -------------------------------------------------------------------------------- 1 | 2 | # HELP metric one 3 | # HELP metric two 4 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_14: -------------------------------------------------------------------------------- 1 | 2 | metric 4.12 3 | # TYPE metric counter 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/.gitignore: -------------------------------------------------------------------------------- 1 | # Add no patterns to .hgignore except for files generated by the build. 2 | last-change 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/.gitignore: -------------------------------------------------------------------------------- 1 | # Add no patterns to .hgignore except for files generated by the build. 2 | last-change 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/mergepatch/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - pwittrock 3 | reviewers: 4 | - mengqiy 5 | - apelisse 6 | -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/cmd/go-to-protobuf/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - smarterclayton 3 | reviewers: 4 | - smarterclayton 5 | -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gnostic/examples/README.md: -------------------------------------------------------------------------------- 1 | # examples 2 | 3 | This directory contains example descriptions of APIs. 4 | -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gnostic/test/README.md: -------------------------------------------------------------------------------- 1 | # test 2 | 3 | This directory contains test data used to verify gnostic. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/.gitignore: -------------------------------------------------------------------------------- 1 | # Add no patterns to .hgignore except for files generated by the build. 2 | last-change 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/.gitignore: -------------------------------------------------------------------------------- 1 | h2demo 2 | h2demo.linux 3 | client-id.dat 4 | client-secret.dat 5 | token.dat 6 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/strategicpatch/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - pwittrock 3 | reviewers: 4 | - mengqiy 5 | - apelisse 6 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/storage/etcd3/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - wojtek-t 3 | - timothysc 4 | - madhusudancs 5 | - hongchaodeng 6 | -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go_import_path: k8s.io/kube-openapi 3 | script: go test ./pkg/... 4 | 5 | -------------------------------------------------------------------------------- /vendor/github.com/PuerkitoBio/purell/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.4 5 | - 1.5 6 | - 1.6 7 | - tip 8 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/hack/insta-discovery/README.md: -------------------------------------------------------------------------------- 1 | Starts a cluster via the discovery service locally. Useful for testing. 2 | -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 3 | - 1.3 4 | - 1.4 5 | script: 6 | - go test 7 | - go build 8 | -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/conformance/conformance.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname $0) 4 | exec go run conformance.go $* 5 | -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gnostic/printer/README.md: -------------------------------------------------------------------------------- 1 | # printer 2 | 3 | This directory contains code for generating files of code. 4 | -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/testdata/license.yml: -------------------------------------------------------------------------------- 1 | import: ../../../../fossene/db/schema/thing.yml 2 | fields: 3 | site: string 4 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_13: -------------------------------------------------------------------------------- 1 | 2 | # TYPE metric counter 3 | # TYPE metric untyped 4 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/command_notwin.go: -------------------------------------------------------------------------------- 1 | // +build !windows 2 | 3 | package cobra 4 | 5 | var preExecHookFn func(*Command) 6 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - caesarxuchao 3 | - deads2k 4 | - lavalamp 5 | - smarterclayton 6 | - liggitt 7 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_7: -------------------------------------------------------------------------------- 1 | 2 | # TYPE metric summary 3 | metric{quantile="bla"} 3.14 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - gmarek 3 | - deads2k 4 | - sttts 5 | approvers: 6 | - gmarek 7 | - deads2k 8 | - sttts 9 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/third_party/forked/golang/json/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - pwittrock 3 | reviewers: 4 | - mengqiy 5 | - apelisse 6 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/plugin/pkg/client/auth/oidc/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - ericchiang 3 | reviewers: 4 | - ericchiang 5 | - rithujohn191 6 | -------------------------------------------------------------------------------- /artifacts/example/reserve-deads.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: online.openshift.io/v1alpha1 2 | kind: NamespaceReservation 3 | metadata: 4 | name: deads 5 | -------------------------------------------------------------------------------- /artifacts/simple-image/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM fedora 2 | ADD namespace-reservation-server /usr/bin 3 | ENTRYPOINT ["/usr/bin/namespace-reservation-server"] -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/examples/home.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |

{{.Text}}

6 | 7 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_19: -------------------------------------------------------------------------------- 1 | 2 | # TYPE metric histogram 3 | metric_bucket{le="bla"} 3.14 4 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/spec/fixtures/specs/deeper/arrayProp.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"array", 3 | "items": { 4 | "type": "string" 5 | } 6 | } -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - ericchiang 3 | reviewers: 4 | - ericchiang 5 | - rithujohn191 6 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go_import_path: k8s.io/client-go 4 | 5 | go: 6 | - 1.8.1 7 | 8 | script: go build ./... 9 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/plugin/pkg/client/auth/gcp/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - cjcullen 3 | - jlowdermilk 4 | reviewers: 5 | - cjcullen 6 | - jlowdermilk 7 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/tools/metrics/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - wojtek-t 3 | - eparis 4 | - krousey 5 | - jayunit100 6 | - fgrzadkowski 7 | - tmrts 8 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/transport/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - smarterclayton 3 | - wojtek-t 4 | - deads2k 5 | - liggitt 6 | - krousey 7 | - caesarxuchao 8 | -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - lavalamp 3 | - wojtek-t 4 | - sttts 5 | reviewers: 6 | - lavalamp 7 | - wojtek-t 8 | - sttts 9 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/fixtures/mask-unmask.service: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=mask unmask test 3 | 4 | [Service] 5 | ExecStart=/bin/sleep 400 6 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/fixtures/start-stop.service: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=start stop test 3 | 4 | [Service] 5 | ExecStart=/bin/sleep 400 6 | -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful-swagger12/test_package/struct.go: -------------------------------------------------------------------------------- 1 | package test_package 2 | 3 | type TestStruct struct { 4 | TestField string 5 | } 6 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/storage/storagebackend/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - lavalamp 3 | - smarterclayton 4 | - wojtek-t 5 | - timothysc 6 | - hongchaodeng 7 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/fixtures/enable-disable.service: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=enable disable test 3 | 4 | [Service] 5 | ExecStart=/bin/sleep 400 6 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/fixtures/subscribe-events.service: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=start stop test 3 | 4 | [Service] 5 | ExecStart=/bin/sleep 400 6 | -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/Makefile: -------------------------------------------------------------------------------- 1 | all: test 2 | 3 | test: 4 | go test -v . 5 | 6 | ex: 7 | cd examples && ls *.go | xargs go build -o /tmp/ignore -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gnostic/jsonschema/README.md: -------------------------------------------------------------------------------- 1 | # jsonschema 2 | 3 | This directory contains code for reading, writing, and manipulating JSON schemas. -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/fixtures/subscribe-events-set.service: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=start stop test 3 | 4 | [Service] 5 | ExecStart=/bin/sleep 400 6 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/enumdecl/models.go: -------------------------------------------------------------------------------- 1 | package enumdecl 2 | 3 | type MyEnum int32 4 | 5 | const ( 6 | A MyEnum = iota 7 | B MyEnum = iota 8 | ) 9 | -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gnostic/jsonwriter/README.md: -------------------------------------------------------------------------------- 1 | # jsonwriter 2 | 3 | This directory contains code for writing yaml.MapSlice structures as JSON files. 4 | -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gnostic/plugins/gnostic-go-generator/examples/v2.0/xkcd/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | gnostic swagger.json --go-client-out=xkcd 3 | go install 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/README.md: -------------------------------------------------------------------------------- 1 | This repo is still in the experimental stage. Shortly it will contain the schema of the API that are served by the Kubernetes apiserver. 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/authentication/request/x509/testdata/root.csr.json: -------------------------------------------------------------------------------- 1 | { 2 | "CN": "Root-CA", 3 | "ca": { 4 | "expiry": "876000h" 5 | } 6 | } -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/integration/fixtures-expired/README: -------------------------------------------------------------------------------- 1 | To generate bad certs 2 | 3 | 1. Manually set system time back to past 4 | 2. Run ./gencerts.sh 5 | 6 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/examples/activation/httpserver/hello.socket: -------------------------------------------------------------------------------- 1 | [Socket] 2 | ListenStream=127.0.0.1:8076 3 | 4 | [Install] 5 | WantedBy=sockets.target 6 | -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gnostic/compiler/README.md: -------------------------------------------------------------------------------- 1 | # Compiler support code 2 | 3 | This directory contains compiler support code used by Gnostic and Gnostic extensions. -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_model/ruby/lib/prometheus/client/model.rb: -------------------------------------------------------------------------------- 1 | require 'prometheus/client/model/metrics.pb' 2 | require 'prometheus/client/model/version' 3 | -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.4 5 | - 1.5 6 | - 1.6 7 | - tip 8 | 9 | go_import_path: gopkg.in/yaml.v2 10 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/enumdecl_all/models.go: -------------------------------------------------------------------------------- 1 | package enumdeclall 2 | 3 | type MyEnum int32 4 | 5 | const ( 6 | A MyEnum = iota 7 | B MyEnum = iota 8 | ) 9 | -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gnostic/test/errors/petstore-missingversion.errors: -------------------------------------------------------------------------------- 1 | Errors reading examples/errors/petstore-missingversion.yaml 2 | unable to identify OpenAPI version -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/testdata/thing.yml: -------------------------------------------------------------------------------- 1 | fields: 2 | id: int 3 | name: string 4 | parent: ref "datu:thing" 5 | status: enum(draft, public, private) 6 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_model/ruby/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | # Specify your gem's dependencies in prometheus-client-model.gemspec 4 | gemspec 5 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/authentication/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - liggitt 3 | - lavalamp 4 | - wojtek-t 5 | - deads2k 6 | - sttts 7 | - mbohlool 8 | - jianhuiz 9 | - enj 10 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - sig-apps-api-approvers 3 | reviewers: 4 | - sig-apps-reviewers 5 | - pweil- 6 | - liggitt 7 | - tallclair 8 | - php-coder 9 | -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/cmd/client-gen/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - lavalamp 3 | - wojtek-t 4 | - caesarxuchao 5 | reviewers: 6 | - lavalamp 7 | - wojtek-t 8 | - caesarxuchao 9 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/NOTICE: -------------------------------------------------------------------------------- 1 | CoreOS Project 2 | Copyright 2014 CoreOS, Inc 3 | 4 | This product includes software developed at CoreOS, Inc. 5 | (http://www.coreos.com/). 6 | -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gnostic/plugins/gnostic-go-generator/examples/v2.0/apis_guru/Makefile: -------------------------------------------------------------------------------- 1 | 2 | all: 3 | gnostic swagger.yaml --go-client-out=apis_guru 4 | go install 5 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/Makefile: -------------------------------------------------------------------------------- 1 | ci: 2 | ! gofmt -l *.go | read nothing 3 | go vet 4 | go test -v ./... 5 | go get github.com/golang/lint/golint 6 | golint *.go 7 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/certificate/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - mikedanese 3 | - liggit 4 | - smarterclayton 5 | approvers: 6 | - mikedanese 7 | - liggit 8 | - smarterclayton 9 | -------------------------------------------------------------------------------- /vendor/github.com/PuerkitoBio/urlesc/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.4 5 | - tip 6 | 7 | install: 8 | - go build . 9 | 10 | script: 11 | - go test -v 12 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/logos/etcd-offset-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/kubernetes-namespace-reservation/HEAD/vendor/github.com/coreos/etcd/logos/etcd-offset-bw.png -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/logos/etcd-stacked-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/kubernetes-namespace-reservation/HEAD/vendor/github.com/coreos/etcd/logos/etcd-stacked-bw.png -------------------------------------------------------------------------------- /vendor/github.com/matttproud/golang_protobuf_extensions/ext/moved.go: -------------------------------------------------------------------------------- 1 | // Package ext moved to a new location: github.com/matttproud/golang_protobuf_extensions/pbutil. 2 | package ext 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/README: -------------------------------------------------------------------------------- 1 | This repository holds supplementary Go networking libraries. 2 | 3 | To submit changes to this repository, see http://golang.org/doc/contribute.html. 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/Godeps/Readme: -------------------------------------------------------------------------------- 1 | This directory tree is generated automatically by godep. 2 | 3 | Please do not edit. 4 | 5 | See https://github.com/tools/godep for more information. 6 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/authentication/request/x509/testdata/intermediate.csr.json: -------------------------------------------------------------------------------- 1 | { 2 | "CN": "Intermediate-CA", 3 | "ca": { 4 | "expiry": "876000h" 5 | } 6 | } -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.9 5 | 6 | script: 7 | - make build 8 | 9 | notifications: 10 | irc: "chat.freenode.net#openshift-dev" 11 | 12 | sudo: false 13 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/logos/etcd-glyph-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/kubernetes-namespace-reservation/HEAD/vendor/github.com/coreos/etcd/logos/etcd-glyph-color.png -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/logos/etcd-offset-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/kubernetes-namespace-reservation/HEAD/vendor/github.com/coreos/etcd/logos/etcd-offset-color.png -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/fixtures/start-failed.service: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=starting a failed test 3 | 4 | [Service] 5 | ExecStartPre=/bin/false 6 | ExecStart=/bin/sleep 400 7 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_golang/.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | language: go 3 | 4 | go: 5 | - 1.6.3 6 | - 1.7 7 | - 1.8.1 8 | 9 | script: 10 | - go test -short ./... 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ed25519/testdata/sign.input.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/kubernetes-namespace-reservation/HEAD/vendor/golang.org/x/crypto/ed25519/testdata/sign.input.gz -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/Godeps/Readme: -------------------------------------------------------------------------------- 1 | This directory tree is generated automatically by godep. 2 | 3 | Please do not edit. 4 | 5 | See https://github.com/tools/godep for more information. 6 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/Godeps/Readme: -------------------------------------------------------------------------------- 1 | This directory tree is generated automatically by godep. 2 | 3 | Please do not edit. 4 | 5 | See https://github.com/tools/godep for more information. 6 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/logos/etcd-horizontal-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/kubernetes-namespace-reservation/HEAD/vendor/github.com/coreos/etcd/logos/etcd-horizontal-bw.png -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/logos/etcd-stacked-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/kubernetes-namespace-reservation/HEAD/vendor/github.com/coreos/etcd/logos/etcd-stacked-color.png -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/testdata/protobuf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/kubernetes-namespace-reservation/HEAD/vendor/github.com/prometheus/common/expfmt/testdata/protobuf -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/testdata/text.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/kubernetes-namespace-reservation/HEAD/vendor/github.com/prometheus/common/expfmt/testdata/text.gz -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/io: -------------------------------------------------------------------------------- 1 | rchar: 750339 2 | wchar: 818609 3 | syscr: 7405 4 | syscw: 5245 5 | read_bytes: 1024 6 | write_bytes: 2048 7 | cancelled_write_bytes: -1024 8 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/code-of-conduct.md: -------------------------------------------------------------------------------- 1 | # Kubernetes Community Code of Conduct 2 | 3 | Please refer to our [Kubernetes Community Code of Conduct](https://git.k8s.io/community/code-of-conduct.md) 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/Godeps/Readme: -------------------------------------------------------------------------------- 1 | This directory tree is generated automatically by godep. 2 | 3 | Please do not edit. 4 | 5 | See https://github.com/tools/godep for more information. 6 | -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/Godeps/Readme: -------------------------------------------------------------------------------- 1 | This directory tree is generated automatically by godep. 2 | 3 | Please do not edit. 4 | 5 | See https://github.com/tools/godep for more information. 6 | -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/Godeps/Readme: -------------------------------------------------------------------------------- 1 | This directory tree is generated automatically by godep. 2 | 3 | Please do not edit. 4 | 5 | See https://github.com/tools/godep for more information. 6 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/cmd/README.md: -------------------------------------------------------------------------------- 1 | ## cmd 2 | 3 | This directory is meant to enforce vendoring for etcd binaries without polluting 4 | the etcd client libraries with vendored dependencies. 5 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/integration/fixtures/revoke.crl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/kubernetes-namespace-reservation/HEAD/vendor/github.com/coreos/etcd/integration/fixtures/revoke.crl -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/logos/etcd-horizontal-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/kubernetes-namespace-reservation/HEAD/vendor/github.com/coreos/etcd/logos/etcd-horizontal-color.png -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/testdata/candide-gb18030.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/kubernetes-namespace-reservation/HEAD/vendor/golang.org/x/text/encoding/testdata/candide-gb18030.txt -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/testdata/rashomon-euc-jp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/kubernetes-namespace-reservation/HEAD/vendor/golang.org/x/text/encoding/testdata/rashomon-euc-jp.txt -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/code-of-conduct.md: -------------------------------------------------------------------------------- 1 | # Kubernetes Community Code of Conduct 2 | 3 | Please refer to our [Kubernetes Community Code of Conduct](https://git.k8s.io/community/code-of-conduct.md) 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/code-of-conduct.md: -------------------------------------------------------------------------------- 1 | # Kubernetes Community Code of Conduct 2 | 3 | Please refer to our [Kubernetes Community Code of Conduct](https://git.k8s.io/community/code-of-conduct.md) 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - yujuhong 3 | - gmarek 4 | - mbohlool 5 | - philips 6 | - seans3 7 | - apelisse 8 | approvers: 9 | - mbohlool 10 | - lavalamp 11 | - seans3 12 | -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/test/integration/testdata/listtype/set-list.go: -------------------------------------------------------------------------------- 1 | package listtype 2 | 3 | // +k8s:openapi-gen=true 4 | type SetList struct { 5 | // +listType=set 6 | Field []string 7 | } 8 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_model/ruby/lib/prometheus/client/model/version.rb: -------------------------------------------------------------------------------- 1 | module Prometheus 2 | module Client 3 | module Model 4 | VERSION = '0.1.0' 5 | end 6 | end 7 | end 8 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/testdata/protobuf.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/kubernetes-namespace-reservation/HEAD/vendor/github.com/prometheus/common/expfmt/testdata/protobuf.gz -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/testdata/keccakKats.json.deflate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/kubernetes-namespace-reservation/HEAD/vendor/golang.org/x/crypto/sha3/testdata/keccakKats.json.deflate -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/charset/testdata/UTF-16BE-BOM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/kubernetes-namespace-reservation/HEAD/vendor/golang.org/x/net/html/charset/testdata/UTF-16BE-BOM.html -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/charset/testdata/UTF-16LE-BOM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/kubernetes-namespace-reservation/HEAD/vendor/golang.org/x/net/html/charset/testdata/UTF-16LE-BOM.html -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/testdata/candide-utf-16le.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/kubernetes-namespace-reservation/HEAD/vendor/golang.org/x/text/encoding/testdata/candide-utf-16le.txt -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/testdata/candide-utf-32be.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/kubernetes-namespace-reservation/HEAD/vendor/golang.org/x/text/encoding/testdata/candide-utf-32be.txt -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/testdata/rashomon-shift-jis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/kubernetes-namespace-reservation/HEAD/vendor/golang.org/x/text/encoding/testdata/rashomon-shift-jis.txt -------------------------------------------------------------------------------- /vendor/k8s.io/api/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Sorry, we do not accept changes directly against this repository. Please see 2 | CONTRIBUTING.md for information on where and how to contribute instead. 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/code-of-conduct.md: -------------------------------------------------------------------------------- 1 | # Kubernetes Community Code of Conduct 2 | 3 | Please refer to our [Kubernetes Community Code of Conduct](https://git.k8s.io/community/code-of-conduct.md) 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/storage/testing/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - smarterclayton 3 | - wojtek-t 4 | - liggitt 5 | - erictune 6 | - timothysc 7 | - soltysh 8 | - mml 9 | - feihujiang 10 | - enj 11 | -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/code-of-conduct.md: -------------------------------------------------------------------------------- 1 | # Kubernetes Community Code of Conduct 2 | 3 | Please refer to our [Kubernetes Community Code of Conduct](https://git.k8s.io/community/code-of-conduct.md) 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/code-of-conduct.md: -------------------------------------------------------------------------------- 1 | # Kubernetes Community Code of Conduct 2 | 3 | Please refer to our [Kubernetes Community Code of Conduct](https://git.k8s.io/community/code-of-conduct.md) 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/testdata/candide-windows-1252.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/kubernetes-namespace-reservation/HEAD/vendor/golang.org/x/text/encoding/testdata/candide-windows-1252.txt -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/test/integration/testdata/listtype/atomic-list.go: -------------------------------------------------------------------------------- 1 | package listtype 2 | 3 | // +k8s:openapi-gen=true 4 | type AtomicList struct { 5 | // +listType=atomic 6 | Field []string 7 | } 8 | -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gnostic/generate-gnostic/test/errors/x-extension-name-collision.errors: -------------------------------------------------------------------------------- 1 | Schema SampleCompanyTwoPrimitiveString and SampleCompanyOnePrimitiveString have the same 'id' field value. 2 | 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/testdata/unsu-joh-eun-nal-euc-kr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/kubernetes-namespace-reservation/HEAD/vendor/golang.org/x/text/encoding/testdata/unsu-joh-eun-nal-euc-kr.txt -------------------------------------------------------------------------------- /vendor/golang.org/x/time/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/gopkg.in/natefinch/lumberjack.v2/chown.go: -------------------------------------------------------------------------------- 1 | // +build !linux 2 | 3 | package lumberjack 4 | 5 | import ( 6 | "os" 7 | ) 8 | 9 | func chown(_ string, _ os.FileInfo) error { 10 | return nil 11 | } 12 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Sorry, we do not accept changes directly against this repository. Please see 2 | CONTRIBUTING.md for information on where and how to contribute instead. 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Sorry, we do not accept changes directly against this repository. Please see 2 | CONTRIBUTING.md for information on where and how to contribute instead. 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/endpoints/testing/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - smarterclayton 3 | - wojtek-t 4 | - caesarxuchao 5 | - liggitt 6 | - erictune 7 | - soltysh 8 | - mml 9 | - mbohlool 10 | - jianhuiz 11 | -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gnostic/.gitignore: -------------------------------------------------------------------------------- 1 | # Eclipse 2 | .checkstyle 3 | .project 4 | .settings 5 | # Swift 6 | .build 7 | Packages 8 | # vi 9 | *.swp 10 | # vscode 11 | .vscode 12 | .DS_Store 13 | *~ 14 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/symlinktargets/README: -------------------------------------------------------------------------------- 1 | This directory contains some empty files that are the symlinks the files in the "fd" directory point to. 2 | They are otherwise ignored by the tests 3 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.mailmap: -------------------------------------------------------------------------------- 1 | Steve Francia 2 | Bjørn Erik Pedersen 3 | Fabiano Franz 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at https://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at https://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/text/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/time/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/.import-restrictions: -------------------------------------------------------------------------------- 1 | { 2 | "Rules": [ 3 | { 4 | "SelectorRegexp": "k8s[.]io/kubernetes", 5 | "ForbiddenPrefixes": [ 6 | "" 7 | ] 8 | } 9 | ] 10 | } 11 | -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Sorry, we do not accept changes directly against this repository. Please see 2 | CONTRIBUTING.md for information on where and how to contribute instead. 3 | -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_golang/prometheus/README.md: -------------------------------------------------------------------------------- 1 | See [![go-doc](https://godoc.org/github.com/prometheus/client_golang/prometheus?status.svg)](https://godoc.org/github.com/prometheus/client_golang/prometheus). 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_1: -------------------------------------------------------------------------------- 1 | 2 | minimal_metric 1.234 3 | another_metric -3e3 103948 4 | # Even that: 5 | no_labels{} 3 6 | # HELP line for non-existing metric will be ignored. 7 | -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-simplified-gbk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/kubernetes-namespace-reservation/HEAD/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-simplified-gbk.txt -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/Documentation/op-guide/etcd-sample-grafana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/kubernetes-namespace-reservation/HEAD/vendor/github.com/coreos/etcd/Documentation/op-guide/etcd-sample-grafana.png -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/fixtures/reload.service: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=reload test 3 | 4 | [Service] 5 | ExecStart=/bin/bash -c "trap '' HUP; /bin/sleep 400" 6 | ExecReload=-/bin/systemctl kill -s HUP reload.service 7 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/spec/fixtures/specs/resolution2.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "http://localhost:1234", 3 | "items": { 4 | "id": "deeper/", 5 | "items": { 6 | "$ref": "arrayProp.json#/items" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gnostic/extensions/COMPILE-EXTENSION.sh: -------------------------------------------------------------------------------- 1 | go get github.com/golang/protobuf/protoc-gen-go 2 | 3 | protoc \ 4 | --go_out=Mgoogle/protobuf/any.proto=github.com/golang/protobuf/ptypes/any:. *.proto 5 | 6 | -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gnostic/test/errors/petstore-unresolvedrefs.errors: -------------------------------------------------------------------------------- 1 | Errors reading examples/errors/petstore-unresolvedrefs.yaml 2 | ERROR could not resolve #/definitions/Pet 3 | ERROR could not resolve #/definitions/Error -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/go_below_17.go: -------------------------------------------------------------------------------- 1 | //+build !go1.7 2 | 3 | package reflect2 4 | 5 | import "unsafe" 6 | 7 | func resolveTypeOff(rtype unsafe.Pointer, off int32) unsafe.Pointer { 8 | return nil 9 | } 10 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26232/stat: -------------------------------------------------------------------------------- 1 | 33 (ata_sff) S 2 0 0 0 -1 69238880 0 0 0 0 0 0 0 0 0 -20 1 0 5 0 0 18446744073709551615 0 0 0 0 0 0 0 2147483647 0 18446744073709551615 0 0 17 1 0 0 0 0 0 0 0 0 0 0 0 0 0 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-traditional-big5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/kubernetes-namespace-reservation/HEAD/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-traditional-big5.txt -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gnostic/apps/petstore-builder/README.md: -------------------------------------------------------------------------------- 1 | # OpenAPI Builder Sample 2 | 3 | This directory contains a simple sample application that builds 4 | and exports an OpenAPI 2.0 description of a sample API. 5 | 6 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_model/NOTICE: -------------------------------------------------------------------------------- 1 | Data model artifacts for Prometheus. 2 | Copyright 2012-2015 The Prometheus Authors 3 | 4 | This product includes software developed at 5 | SoundCloud Ltd. (http://soundcloud.com/). 6 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM golang 2 | ADD . /go/src/github.com/coreos/etcd 3 | ADD cmd/vendor /go/src/github.com/coreos/etcd/vendor 4 | RUN go install github.com/coreos/etcd 5 | EXPOSE 2379 2380 6 | ENTRYPOINT ["etcd"] 7 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/NOTICE: -------------------------------------------------------------------------------- 1 | Common libraries shared by Prometheus Go components. 2 | Copyright 2015 The Prometheus Authors 3 | 4 | This product includes software developed at 5 | SoundCloud Ltd. (http://soundcloud.com/). 6 | -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/suite_test.go: -------------------------------------------------------------------------------- 1 | package yaml_test 2 | 3 | import ( 4 | . "gopkg.in/check.v1" 5 | "testing" 6 | ) 7 | 8 | func Test(t *testing.T) { TestingT(t) } 9 | 10 | type S struct{} 11 | 12 | var _ = Suite(&S{}) 13 | -------------------------------------------------------------------------------- /vendor/bitbucket.org/ww/goautoneg/.hg_archival.txt: -------------------------------------------------------------------------------- 1 | repo: 848b351341922ce39becda978778724d5b58dbca 2 | node: 75cd24fc2f2c2a2088577d12123ddee5f54e0675 3 | branch: default 4 | latesttag: null 5 | latesttagdistance: 5 6 | changessincelatesttag: 5 7 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/pkg/README.md: -------------------------------------------------------------------------------- 1 | pkg/ is a collection of utility packages used by etcd without being specific to etcd itself. A package belongs here 2 | only if it could possibly be moved out into its own repository in the future. 3 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/enumdecl/Makefile: -------------------------------------------------------------------------------- 1 | regenerate: 2 | go install github.com/gogo/protobuf/protoc-gen-gogo 3 | protoc-min-version --version="3.0.0" --gogo_out=. --proto_path=../../../../../:../../protobuf/:. enumdecl.proto 4 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/typedecl/Makefile: -------------------------------------------------------------------------------- 1 | regenerate: 2 | go install github.com/gogo/protobuf/protoc-gen-gogo 3 | protoc-min-version --version="3.0.0" --gogo_out=. --proto_path=../../../../../:../../protobuf/:. typedecl.proto 4 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/generic-admission-server/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - "1.10" 5 | 6 | script: 7 | - make build 8 | 9 | notifications: 10 | irc: "chat.freenode.net#openshift-dev" 11 | 12 | sudo: false 13 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/testdata/webkit/pending-spec-changes-plain-text-unsafe.dat: -------------------------------------------------------------------------------- 1 | #data 2 | fillertext 3 | #errors 4 | #document 5 | | 6 | | 7 | | 8 | | "fillertext" 9 | |
10 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/spec/schemas/v2/README.md: -------------------------------------------------------------------------------- 1 | # Swagger 2.0 specification schema 2 | 3 | This folder contains the Swagger 2.0 specification schema files maintained here: 4 | 5 | https://github.com/reverb/swagger-spec/blob/master/schemas/v2.0 -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/enumdecl_all/Makefile: -------------------------------------------------------------------------------- 1 | regenerate: 2 | go install github.com/gogo/protobuf/protoc-gen-gogo 3 | protoc-min-version --version="3.0.0" --gogo_out=. --proto_path=../../../../../:../../protobuf/:. enumdeclall.proto 4 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/typedecl_all/Makefile: -------------------------------------------------------------------------------- 1 | regenerate: 2 | go install github.com/gogo/protobuf/protoc-gen-gogo 3 | protoc-min-version --version="3.0.0" --gogo_out=. --proto_path=../../../../../:../../protobuf/:. typedeclall.proto 4 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/contrib/systemd/etcd2-backup-coreos/etcd2-backup.timer: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=etcd2-backup service timer 3 | 4 | [Timer] 5 | OnBootSec=1min 6 | OnUnitActiveSec=30sec 7 | 8 | [Install] 9 | WantedBy=timers.target 10 | -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gnostic/generate-gnostic/test/errors/x-unsupportedprimitives.errors: -------------------------------------------------------------------------------- 1 | Schema SampleCompanyOnePrimitiveString has type 'unsupportedtype' which is not supported. Supported primitive types are [boolean integer number string]. 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/go_above_17.go: -------------------------------------------------------------------------------- 1 | //+build go1.7 2 | 3 | package reflect2 4 | 5 | import "unsafe" 6 | 7 | //go:linkname resolveTypeOff reflect.resolveTypeOff 8 | func resolveTypeOff(rtype unsafe.Pointer, off int32) unsafe.Pointer 9 | -------------------------------------------------------------------------------- /vendor/github.com/mailru/easyjson/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - tip 5 | install: 6 | - go get github.com/ugorji/go/codec 7 | - go get github.com/pquerna/ffjson/fflib/v1 8 | - go get github.com/golang/lint/golint 9 | -------------------------------------------------------------------------------- /vendor/golang.org/x/text/.gitignore: -------------------------------------------------------------------------------- 1 | # Add no patterns to .gitignore except for files generated by the build. 2 | last-change 3 | /DATA 4 | # This file is rather large and the tests really only need to be run 5 | # after generation. 6 | /unicode/norm/data_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/export/README: -------------------------------------------------------------------------------- 1 | The export directory contains packages that are generated using the x/text 2 | infrastructure, but live elsewhere. 3 | At some point we can expose some of the infrastructure, but for now this 4 | is not done. 5 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/certificates/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - thockin 3 | - lavalamp 4 | - smarterclayton 5 | - deads2k 6 | - caesarxuchao 7 | - liggitt 8 | - sttts 9 | - dims 10 | - errordeveloper 11 | - mbohlool 12 | - david-mcmahon 13 | - jianhuiz 14 | - enj 15 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Sorry, we do not accept changes directly against this repository, unless the 2 | change is to the `README.md` itself. Please see 3 | `CONTRIBUTING.md` for information on where and how to contribute instead. 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/tools/leaderelection/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - mikedanese 3 | - timothysc 4 | reviewers: 5 | - wojtek-t 6 | - deads2k 7 | - mikedanese 8 | - gmarek 9 | - eparis 10 | - timothysc 11 | - ingvagabund 12 | - resouer 13 | - goltermann 14 | -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gnostic/examples/v2.0/yaml/petstore-separate/common/Error.yaml: -------------------------------------------------------------------------------- 1 | type: object 2 | required: 3 | - code 4 | - message 5 | properties: 6 | code: 7 | type: integer 8 | format: int32 9 | message: 10 | type: string 11 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - caesarxuchao 3 | - deads2k 4 | - lavalamp 5 | - liggitt 6 | - smarterclayton 7 | - sttts 8 | reviewers: 9 | - caesarxuchao 10 | - deads2k 11 | - lavalamp 12 | - liggitt 13 | - soltysh 14 | - sttts 15 | - yliaog 16 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/hack/insta-discovery/discovery: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -rf infra*.etcd 4 | disc=$(curl -s https://discovery.etcd.io/new?size=3) 5 | echo ETCD_DISCOVERY=${disc} > .env 6 | echo "setup discovery start your cluster" 7 | cat .env 8 | goreman start 9 | -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gnostic/apps/report/README.md: -------------------------------------------------------------------------------- 1 | # OpenAPI Report Sample 2 | 3 | This directory contains a simple sample application that reads a binary 4 | protocol buffer representation of an OpenAPI 2.0 specification that 5 | was generated by gnostic. 6 | 7 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.8.x 5 | - 1.x 6 | 7 | before_install: 8 | - go get -t -v ./... 9 | 10 | script: 11 | - ./test.sh 12 | 13 | after_success: 14 | - bash <(curl -s https://codecov.io/bash) 15 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.8.x 5 | - 1.x 6 | 7 | before_install: 8 | - go get -t -v ./... 9 | 10 | script: 11 | - ./test.sh 12 | 13 | after_success: 14 | - bash <(curl -s https://codecov.io/bash) 15 | -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gnostic/examples/v2.0/yaml/petstore-separate/spec/NewPet.yaml: -------------------------------------------------------------------------------- 1 | type: object 2 | allOf: 3 | - $ref: 'Pet.yaml' 4 | - required: 5 | - name 6 | properties: 7 | description: 8 | type: integer 9 | format: int64 10 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.8.x 5 | - 1.x 6 | 7 | before_install: 8 | - go get -t -v ./... 9 | 10 | script: 11 | - ./test.sh 12 | 13 | after_success: 14 | - bash <(curl -s https://codecov.io/bash) 15 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm.s: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | #include "textflag.h" 6 | 7 | TEXT ·use(SB),NOSPLIT,$0 8 | RET 9 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/GOLANG_CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | The contributors to the Go protobuf repository: 2 | 3 | # This source code was written by the Go contributors. 4 | # The master list of contributors is in the main Go distribution, 5 | # visible at http://tip.golang.org/CONTRIBUTORS. -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gnostic/extensions/README.md: -------------------------------------------------------------------------------- 1 | # Extensions 2 | 3 | This directory contains support code for building Gnostic extensions and associated examples. 4 | 5 | Extensions are used to compile vendor or specification extensions into protocol buffer structures. 6 | -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gnostic/plugins/gnostic-go-generator/examples/v2.0/bookstore/service/app.yaml: -------------------------------------------------------------------------------- 1 | application: bookstore 2 | version: 1 3 | runtime: go 4 | api_version: go1 5 | handlers: 6 | - url: /.* 7 | script: _go_app 8 | - url: / 9 | static_dir: static 10 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/value_tests/bool_test.go: -------------------------------------------------------------------------------- 1 | package test 2 | 3 | func init() { 4 | unmarshalCases = append(unmarshalCases, unmarshalCase{ 5 | ptr: (*struct { 6 | Field bool `json:"field"` 7 | })(nil), 8 | input: `{"field": null}`, 9 | }) 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | # Contributing guidelines 2 | 3 | Please read our [contribution workflow][contributing] before submitting a pull request. 4 | 5 | [contributing]: https://github.com/coreos/etcd/blob/master/CONTRIBUTING.md#contribution-flow 6 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/tools/functional-tester/docker/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM alpine 2 | RUN apk update 3 | RUN apk add -v iptables sudo 4 | ADD bin/etcd-agent / 5 | ADD bin/etcd / 6 | ADD bin/etcd-tester / 7 | RUN mkdir /failure_archive 8 | CMD ["./etcd-agent", "-etcd-path", "./etcd"] 9 | -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gnostic/examples/v2.0/yaml/petstore-separate/spec/Pet.yaml: -------------------------------------------------------------------------------- 1 | type: object 2 | required: 3 | - id 4 | - name 5 | properties: 6 | id: 7 | type: integer 8 | format: int64 9 | name: 10 | type: string 11 | tag: 12 | type: string 13 | -------------------------------------------------------------------------------- /vendor/bitbucket.org/ww/goautoneg/Makefile: -------------------------------------------------------------------------------- 1 | include $(GOROOT)/src/Make.inc 2 | 3 | TARG=bitbucket.org/ww/goautoneg 4 | GOFILES=autoneg.go 5 | 6 | include $(GOROOT)/src/Make.pkg 7 | 8 | format: 9 | gofmt -w *.go 10 | 11 | docs: 12 | gomake clean 13 | godoc ${TARG} > README.txt 14 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/jsonpb/jsonpb_test_proto/bytes.go: -------------------------------------------------------------------------------- 1 | package jsonpb 2 | 3 | // Byte is used to test that []byte type aliases are serialized to base64. 4 | type Byte byte 5 | 6 | // Bytes is used to test that []byte type aliases are serialized to base64. 7 | type Bytes []Byte 8 | -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.4 5 | - 1.3 6 | - 1.2 7 | - tip 8 | 9 | install: 10 | - if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi 11 | 12 | script: 13 | - go test -cover 14 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/server/options/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - smarterclayton 3 | - wojtek-t 4 | - deads2k 5 | - liggitt 6 | - nikhiljindal 7 | - sttts 8 | - jlowdermilk 9 | - soltysh 10 | - dims 11 | - cjcullen 12 | - ericchiang 13 | - ping035627 14 | - xiangpengzhao 15 | - enj 16 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/proto3extension/proto3ext.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | package proto3extension; 4 | 5 | import "google/protobuf/descriptor.proto"; 6 | 7 | extend google.protobuf.FieldOptions { 8 | bool primary = 51234; 9 | bool index = 51235; 10 | } 11 | 12 | -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gnostic/tools/README.md: -------------------------------------------------------------------------------- 1 | # tools 2 | 3 | This directory contains general utilities used by Gnostic and related programs. 4 | 5 | ## j2y2j 6 | 7 | Converts JSON to YAML and YAML to JSON. 8 | 9 | ## format-schema 10 | 11 | Formats a JSON schema canonically. 12 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socket/sys_darwin.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | func probeProtocolStack() int { return 4 } 8 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socket/sys_dragonfly.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | func probeProtocolStack() int { return 4 } 8 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/authorization/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - thockin 3 | - lavalamp 4 | - smarterclayton 5 | - wojtek-t 6 | - deads2k 7 | - liggitt 8 | - nikhiljindal 9 | - erictune 10 | - sttts 11 | - ncdc 12 | - dims 13 | - mml 14 | - mbohlool 15 | - david-mcmahon 16 | - jianhuiz 17 | - enj 18 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - thockin 3 | - lavalamp 4 | - smarterclayton 5 | - deads2k 6 | - sttts 7 | - ncdc 8 | - dims 9 | - krousey 10 | - mml 11 | - mbohlool 12 | - david-mcmahon 13 | - ericchiang 14 | - lixiaobing10051267 15 | - jianhuiz 16 | - liggitt 17 | - enj 18 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/issue260/Makefile: -------------------------------------------------------------------------------- 1 | regenerate: 2 | go install github.com/gogo/protobuf/protoc-gen-gogo 3 | protoc-min-version --version="3.0.0" --gogo_out=Mgoogle/protobuf/timestamp.proto=github.com/gogo/protobuf/types:. --proto_path=../../../../../:../../protobuf/:. issue260.proto 4 | -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.[568ao] 3 | *.ao 4 | *.so 5 | *.pyc 6 | ._* 7 | .nfs.* 8 | [568a].out 9 | *~ 10 | *.orig 11 | core 12 | _obj 13 | _test 14 | _testmain.go 15 | 16 | # Conformance test output and transient files. 17 | conformance/failing_tests.txt 18 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/NOTICE: -------------------------------------------------------------------------------- 1 | procfs provides functions to retrieve system, kernel and process 2 | metrics from the pseudo-filesystem proc. 3 | 4 | Copyright 2014-2015 The Prometheus Authors 5 | 6 | This product includes software developed at 7 | SoundCloud Ltd. (http://soundcloud.com/). 8 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/e2e/docker/Makefile: -------------------------------------------------------------------------------- 1 | # run makefile from repo root 2 | 3 | docker-dns-build: 4 | docker build -t etcd-dns e2e/docker/ 5 | 6 | docker-dns-test: docker-dns-build 7 | docker run --dns 127.0.0.1 --rm -v `pwd`/bin/:/etcd -v `pwd`/integration/fixtures:/certs -w /etcd -t etcd-dns 8 | -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gnostic/plugins/gnostic-swift-generator/examples/bookstore/Makefile: -------------------------------------------------------------------------------- 1 | 2 | all: 3 | rm -f gnostic-swift-generator 4 | ln -s ../../gnostic-swift-generator 5 | gnostic bookstore.json --swift-generator-out=Sources/Bookstore 6 | swift build 7 | 8 | test: 9 | swift test 10 | -------------------------------------------------------------------------------- /vendor/github.com/mailru/easyjson/benchmark/dummy_test.go: -------------------------------------------------------------------------------- 1 | package benchmark 2 | 3 | import ( 4 | "testing" 5 | ) 6 | 7 | type DummyWriter struct{} 8 | 9 | func (w DummyWriter) Write(data []byte) (int, error) { return len(data), nil } 10 | 11 | func TestToSuppressNoTestsWarning(t *testing.T) {} 12 | -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/gen_17.go: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2012-2015 Ugorji Nwoke. All rights reserved. 2 | // Use of this source code is governed by a MIT license found in the LICENSE file. 3 | 4 | // +build go1.7 5 | 6 | package codec 7 | 8 | func init() { 9 | genCheckVendor = true 10 | } 11 | -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/cmd/client-gen/README.md: -------------------------------------------------------------------------------- 1 | See [generating-clientset.md](https://git.k8s.io/community/contributors/devel/generating-clientset.md) 2 | 3 | 4 | [![Analytics](https://kubernetes-site.appspot.com/UA-36037335-10/GitHub/staging/src/k8s.io/code-generator/client-gen/README.md?pixel)]() 5 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/Dockerfile-release.arm64: -------------------------------------------------------------------------------- 1 | FROM aarch64/ubuntu:16.04 2 | 3 | ADD etcd /usr/local/bin/ 4 | ADD etcdctl /usr/local/bin/ 5 | ADD var/etcd /var/etcd 6 | ADD var/lib/etcd /var/lib/etcd 7 | 8 | EXPOSE 2379 2380 9 | 10 | # Define default command. 11 | CMD ["/usr/local/bin/etcd"] 12 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/examples/activation/httpserver/hello.service: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=Hello World HTTP 3 | Requires=network.target 4 | After=multi-user.target 5 | 6 | [Service] 7 | Type=simple 8 | ExecStart=/usr/local/bin/httpserver 9 | 10 | [Install] 11 | WantedBy=multi-user.target 12 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/Dockerfile-release.ppc64le: -------------------------------------------------------------------------------- 1 | FROM ppc64le/ubuntu:16.04 2 | 3 | ADD etcd /usr/local/bin/ 4 | ADD etcdctl /usr/local/bin/ 5 | ADD var/etcd /var/etcd 6 | ADD var/lib/etcd /var/lib/etcd 7 | 8 | EXPOSE 2379 2380 9 | 10 | # Define default command. 11 | CMD ["/usr/local/bin/etcd"] 12 | -------------------------------------------------------------------------------- /vendor/github.com/mailru/easyjson/tests/snake.go: -------------------------------------------------------------------------------- 1 | package tests 2 | 3 | //easyjson:json 4 | type SnakeStruct struct { 5 | WeirdHTTPStuff bool 6 | CustomNamedField string `json:"cUsToM"` 7 | } 8 | 9 | var snakeStructValue SnakeStruct 10 | var snakeStructString = `{"weird_http_stuff":false,"cUsToM":""}` 11 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - thockin 3 | - lavalamp 4 | - smarterclayton 5 | - wojtek-t 6 | - deads2k 7 | - caesarxuchao 8 | - erictune 9 | - sttts 10 | - saad-ali 11 | - ncdc 12 | - soltysh 13 | - dims 14 | - errordeveloper 15 | - mml 16 | - mbohlool 17 | - david-mcmahon 18 | - jianhuiz 19 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/api/resource/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - thockin 3 | - lavalamp 4 | - smarterclayton 5 | - wojtek-t 6 | - derekwaynecarr 7 | - mikedanese 8 | - saad-ali 9 | - janetkuo 10 | - tallclair 11 | - eparis 12 | - jbeda 13 | - xiang90 14 | - mbohlool 15 | - david-mcmahon 16 | - goltermann 17 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/sys_solaris_amd64.s: -------------------------------------------------------------------------------- 1 | // Copyright 2016 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | #include "textflag.h" 6 | 7 | TEXT ·sysvicall6(SB),NOSPLIT,$0-88 8 | JMP syscall·sysvicall6(SB) 9 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_big.go: -------------------------------------------------------------------------------- 1 | // Copyright 2016 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | // 5 | // +build ppc64 s390x mips mips64 6 | 7 | package unix 8 | 9 | const isBigEndian = true 10 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/integration/fixtures/gencert.json: -------------------------------------------------------------------------------- 1 | { 2 | "signing": { 3 | "default": { 4 | "usages": [ 5 | "signing", 6 | "key encipherment", 7 | "server auth", 8 | "client auth" 9 | ], 10 | "expiry": "87600h" 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/pkg/monotime/issue15006.s: -------------------------------------------------------------------------------- 1 | // Copyright (C) 2016 Arista Networks, Inc. 2 | // Use of this source code is governed by the Apache License 2.0 3 | // that can be found in the COPYING file. 4 | 5 | // This file is intentionally empty. 6 | // It's a workaround for https://github.com/golang/go/issues/15006 -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/spec/fixtures/specs/resolution.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "http://localhost:1234", 3 | "items": { 4 | "id": "deeper/", 5 | "items": { 6 | "$ref": "stringProp.json" 7 | } 8 | }, 9 | "definitions": { 10 | "bool": { 11 | "$ref": "boolProp.json" 12 | } 13 | } 14 | } -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/hack/tls-setup/config/ca-config.json: -------------------------------------------------------------------------------- 1 | { 2 | "signing": { 3 | "default": { 4 | "usages": [ 5 | "signing", 6 | "key encipherment", 7 | "server auth", 8 | "client auth" 9 | ], 10 | "expiry": "8760h" 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/issue262/timefail.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | import "github.com/gogo/protobuf/gogoproto/gogo.proto"; 4 | import "google/protobuf/timestamp.proto"; 5 | 6 | package timefail; 7 | 8 | message TimeFail { 9 | google.protobuf.Timestamp time_test = 1 [(gogoproto.stdtime) = true]; 10 | } -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/go_above_19.go: -------------------------------------------------------------------------------- 1 | //+build go1.9 2 | 3 | package concurrent 4 | 5 | import "sync" 6 | 7 | // Map is a wrapper for sync.Map introduced in go1.9 8 | type Map struct { 9 | sync.Map 10 | } 11 | 12 | // NewMap creates a thread safe Map 13 | func NewMap() *Map { 14 | return &Map{} 15 | } 16 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socket/sys_linux_amd64.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | const ( 8 | sysRECVMMSG = 0x12b 9 | sysSENDMMSG = 0x133 10 | ) 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socket/sys_linux_arm.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | const ( 8 | sysRECVMMSG = 0x16d 9 | sysSENDMMSG = 0x176 10 | ) 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socket/sys_linux_arm64.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | const ( 8 | sysRECVMMSG = 0xf3 9 | sysSENDMMSG = 0x10d 10 | ) 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socket/sys_linux_mips.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | const ( 8 | sysRECVMMSG = 0x10ef 9 | sysSENDMMSG = 0x10f7 10 | ) 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socket/sys_linux_ppc64.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | const ( 8 | sysRECVMMSG = 0x157 9 | sysSENDMMSG = 0x15d 10 | ) 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/tools/colcmp/Makefile: -------------------------------------------------------------------------------- 1 | # Copyright 2012 The Go Authors. All rights reserved. 2 | # Use of this source code is governed by a BSD-style 3 | # license that can be found in the LICENSE file. 4 | 5 | chars: 6 | go run ../../maketables.go -tables=chars -package=main > chars.go 7 | gofmt -w -s chars.go 8 | -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/go1_2.go: -------------------------------------------------------------------------------- 1 | // Copyright 2013 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build go1.2 6 | 7 | package language 8 | 9 | import "sort" 10 | 11 | var sortStable = sort.Stable 12 | -------------------------------------------------------------------------------- /vendor/golang.org/x/text/secure/doc.go: -------------------------------------------------------------------------------- 1 | // Copyright 2016 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // secure is a repository of text security related packages. 6 | package secure // import "golang.org/x/text/secure" 7 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - lavalamp 3 | - smarterclayton 4 | - deads2k 5 | - sttts 6 | - liggitt 7 | reviewers: 8 | - lavalamp 9 | - smarterclayton 10 | - wojtek-t 11 | - deads2k 12 | - caesarxuchao 13 | - liggitt 14 | - sttts 15 | - ncdc 16 | - tallclair 17 | - enj 18 | - hzxuzhonghu 19 | - CaoShuFeng 20 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socket/sys_linux_mips64.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | const ( 8 | sysRECVMMSG = 0x14ae 9 | sysSENDMMSG = 0x14b6 10 | ) 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socket/sys_linux_mips64le.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | const ( 8 | sysRECVMMSG = 0x14ae 9 | sysSENDMMSG = 0x14b6 10 | ) 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socket/sys_linux_mipsle.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | const ( 8 | sysRECVMMSG = 0x10ef 9 | sysSENDMMSG = 0x10f7 10 | ) 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socket/sys_linux_ppc64le.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | const ( 8 | sysRECVMMSG = 0x157 9 | sysSENDMMSG = 0x15d 10 | ) 11 | -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/test/integration/testdata/listtype/map-list.go: -------------------------------------------------------------------------------- 1 | package listtype 2 | 3 | // +k8s:openapi-gen=true 4 | type Item struct { 5 | Port int 6 | Protocol string 7 | } 8 | 9 | // +k8s:openapi-gen=true 10 | type MapList struct { 11 | // +listType=map 12 | // +listMapKey=port 13 | Field []Item 14 | } 15 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/hack/scripts-dev/docker-dns/certs/gencert.json: -------------------------------------------------------------------------------- 1 | { 2 | "signing": { 3 | "default": { 4 | "usages": [ 5 | "signing", 6 | "key encipherment", 7 | "server auth", 8 | "client auth" 9 | ], 10 | "expiry": "87600h" 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gnostic/generate-gnostic/test/x-unsupportedprimitives.json: -------------------------------------------------------------------------------- 1 | { 2 | "definitions": { 3 | "SampleCompanyOnePrimitiveString": { 4 | "type": "unsupportedtype", 5 | "id": "x-samplecompanyone-mystr" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/export_test.go: -------------------------------------------------------------------------------- 1 | // Copyright 2015 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build darwin dragonfly freebsd linux netbsd openbsd solaris 6 | 7 | package unix 8 | 9 | var Itoa = itoa 10 | -------------------------------------------------------------------------------- /vendor/google.golang.org/genproto/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 3 | - 1.6 4 | - 1.7 5 | - 1.8 6 | go_import_path: google.golang.org/genproto 7 | 8 | script: 9 | - go test -v ./... 10 | - if [[ "$TRAVIS_BRANCH" == "master" && "$TRAVIS_PULL_REQUEST" == "false" ]]; then 11 | go get -u -v cloud.google.com/go/...; 12 | fi 13 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - thockin 3 | - lavalamp 4 | - smarterclayton 5 | - deads2k 6 | - caesarxuchao 7 | - pmorie 8 | - sttts 9 | - saad-ali 10 | - ncdc 11 | - tallclair 12 | - dims 13 | - errordeveloper 14 | - mml 15 | - m1093782566 16 | - mbohlool 17 | - david-mcmahon 18 | - kevin-wangzefeng 19 | - jianhuiz 20 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/e2e/docker/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /etc/init.d/bind9 start 4 | # get rid of hosts so go lookup won't resolve 127.0.0.1 to localhost 5 | cat /dev/null >/etc/hosts 6 | goreman -f /Procfile.tls start & 7 | sleep 5s 8 | ETCDCTL_API=3 ./etcdctl --cacert=/certs/ca.crt --endpoints=https://m1.etcd.local:2379 put abc def 9 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/hack/scripts-dev/docker-dns-srv/certs/gencert.json: -------------------------------------------------------------------------------- 1 | { 2 | "signing": { 3 | "default": { 4 | "usages": [ 5 | "signing", 6 | "key encipherment", 7 | "server auth", 8 | "client auth" 9 | ], 10 | "expiry": "87600h" 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/Makefile: -------------------------------------------------------------------------------- 1 | h2demo.linux: h2demo.go 2 | GOOS=linux go build --tags=h2demo -o h2demo.linux . 3 | 4 | FORCE: 5 | 6 | upload: FORCE 7 | go install golang.org/x/build/cmd/upload 8 | upload --verbose --osarch=linux-amd64 --tags=h2demo --file=go:golang.org/x/net/http2/h2demo --public http2-demo-server-tls/h2demo 9 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/autoscaling/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - thockin 3 | - lavalamp 4 | - smarterclayton 5 | - wojtek-t 6 | - deads2k 7 | - caesarxuchao 8 | - erictune 9 | - sttts 10 | - ncdc 11 | - piosz 12 | - dims 13 | - errordeveloper 14 | - madhusudancs 15 | - mml 16 | - mbohlool 17 | - david-mcmahon 18 | - jianhuiz 19 | - directxman12 20 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/hack/scripts-dev/docker-dns-srv/certs-gateway/gencert.json: -------------------------------------------------------------------------------- 1 | { 2 | "signing": { 3 | "default": { 4 | "usages": [ 5 | "signing", 6 | "key encipherment", 7 | "server auth", 8 | "client auth" 9 | ], 10 | "expiry": "87600h" 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/hack/scripts-dev/docker-dns/certs-common-name/gencert.json: -------------------------------------------------------------------------------- 1 | { 2 | "signing": { 3 | "default": { 4 | "usages": [ 5 | "signing", 6 | "key encipherment", 7 | "server auth", 8 | "client auth" 9 | ], 10 | "expiry": "87600h" 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/hack/scripts-dev/docker-dns/certs-gateway/gencert.json: -------------------------------------------------------------------------------- 1 | { 2 | "signing": { 3 | "default": { 4 | "usages": [ 5 | "signing", 6 | "key encipherment", 7 | "server auth", 8 | "client auth" 9 | ], 10 | "expiry": "87600h" 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/hack/scripts-dev/docker-dns/certs-wildcard/gencert.json: -------------------------------------------------------------------------------- 1 | { 2 | "signing": { 3 | "default": { 4 | "usages": [ 5 | "signing", 6 | "key encipherment", 7 | "server auth", 8 | "client auth" 9 | ], 10 | "expiry": "87600h" 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_little.go: -------------------------------------------------------------------------------- 1 | // Copyright 2016 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | // 5 | // +build 386 amd64 amd64p32 arm arm64 ppc64le mipsle mips64le 6 | 7 | package unix 8 | 9 | const isBigEndian = false 10 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/go12.go: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build windows 6 | // +build !go1.3 7 | 8 | package svc 9 | 10 | // from go12.c 11 | func getServiceMain(r *uintptr) 12 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/hack/scripts-dev/docker-dns-srv/certs-wildcard/gencert.json: -------------------------------------------------------------------------------- 1 | { 2 | "signing": { 3 | "default": { 4 | "usages": [ 5 | "signing", 6 | "key encipherment", 7 | "server auth", 8 | "client auth" 9 | ], 10 | "expiry": "87600h" 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/registry/mksyscall.go: -------------------------------------------------------------------------------- 1 | // Copyright 2015 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package registry 6 | 7 | //go:generate go run $GOROOT/src/syscall/mksyscall_windows.go -output zsyscall_windows.go syscall.go 8 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/hack/tls-setup/config/req-csr.json: -------------------------------------------------------------------------------- 1 | { 2 | "CN": "etcd", 3 | "hosts": [ 4 | "localhost" 5 | ], 6 | "key": { 7 | "algo": "ecdsa", 8 | "size": 384 9 | }, 10 | "names": [ 11 | { 12 | "O": "autogenerated", 13 | "OU": "etcd cluster", 14 | "L": "the internet" 15 | } 16 | ] 17 | } 18 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/value_tests/raw_message_test.go: -------------------------------------------------------------------------------- 1 | package test 2 | 3 | import "encoding/json" 4 | 5 | func init() { 6 | marshalCases = append(marshalCases, 7 | json.RawMessage("{}"), 8 | ) 9 | unmarshalCases = append(unmarshalCases, unmarshalCase{ 10 | ptr: (*json.RawMessage)(nil), 11 | input: `[1,2,3]`, 12 | }) 13 | } 14 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/go_below_19.go: -------------------------------------------------------------------------------- 1 | //+build !go1.9 2 | 3 | package reflect2 4 | 5 | import ( 6 | "unsafe" 7 | ) 8 | 9 | //go:linkname makemap reflect.makemap 10 | func makemap(rtype unsafe.Pointer) (m unsafe.Pointer) 11 | 12 | func makeMapWithSize(rtype unsafe.Pointer, cap int) unsafe.Pointer { 13 | return makemap(rtype) 14 | } 15 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/sys_freebsd.go: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package icmp 6 | 7 | import "syscall" 8 | 9 | func init() { 10 | freebsdVersion, _ = syscall.SysctlUint32("kern.osreldate") 11 | } 12 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socket/msghdr_openbsd.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | func (h *msghdr) setIov(vs []iovec) { 8 | h.Iov = &vs[0] 9 | h.Iovlen = uint32(len(vs)) 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/.gitignore: -------------------------------------------------------------------------------- 1 | # OSX leaves these everywhere on SMB shares 2 | ._* 3 | 4 | # Eclipse files 5 | .classpath 6 | .project 7 | .settings/** 8 | 9 | # Emacs save files 10 | *~ 11 | 12 | # Vim-related files 13 | [._]*.s[a-w][a-z] 14 | [._]s[a-w][a-z] 15 | *.un~ 16 | Session.vim 17 | .netrwhist 18 | 19 | # Go test binaries 20 | *.test 21 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/issue261/issue261.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | package issue261; 4 | 5 | import "github.com/gogo/protobuf/gogoproto/gogo.proto"; 6 | 7 | import "google/protobuf/duration.proto"; 8 | 9 | message MapStdTypes { 10 | map nullableDuration = 3 [(gogoproto.stdduration) = true]; 11 | } 12 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/generic-admission-server/Makefile: -------------------------------------------------------------------------------- 1 | all: build 2 | .PHONY: all 3 | 4 | build: 5 | go build -o _output/bin/generic-admission-server github.com/openshift/generic-admission-server/pkg/cmd 6 | .PHONY: build 7 | 8 | clean: 9 | rm -rf _output 10 | .PHONY: clean 11 | 12 | update-deps: 13 | hack/update-deps.sh 14 | .PHONY: generate 15 | -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/gen_16.go: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2012-2015 Ugorji Nwoke. All rights reserved. 2 | // Use of this source code is governed by a MIT license found in the LICENSE file. 3 | 4 | // +build go1.6 5 | 6 | package codec 7 | 8 | import "os" 9 | 10 | func init() { 11 | genCheckVendor = os.Getenv("GO15VENDOREXPERIMENT") != "0" 12 | } 13 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/test/doc.go: -------------------------------------------------------------------------------- 1 | // Copyright 2012 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // Package test contains integration tests for the 6 | // golang.org/x/crypto/ssh package. 7 | package test // import "golang.org/x/crypto/ssh/test" 8 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/cert/testdata/dontUseThisKey.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN EC PRIVATE KEY----- 2 | MIGkAgEBBDAPEbSXwyDfWf0+61Oofd7aHkmdX69mrzD2Xb1CHF5syfsoRIhnG0dJ 3 | ozBulPZCDDWgBwYFK4EEACKhZANiAATjlMJAtKhEPqU/i7MsrgKcK/RmXHC6He7W 4 | 0p69+9qFXg2raJ9zvvbKxkiu2ELOYRDAz0utcFTBOIgoUJEzBVmsjZQ7dvFa1BKP 5 | Ym7MFAKG3O2espBqXn+audgdHGh5B0I= 6 | -----END EC PRIVATE KEY----- 7 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/jsonpointer/.pullapprove.yml: -------------------------------------------------------------------------------- 1 | approve_by_comment: true 2 | approve_regex: '^(:shipit:|:\+1:|\+1|LGTM|lgtm|Approved)' 3 | reject_regex: ^[Rr]ejected 4 | reset_on_push: false 5 | reviewers: 6 | members: 7 | - casualjim 8 | - chancez 9 | - frapposelli 10 | - vburenin 11 | - pytlesk4 12 | name: pullapprove 13 | required: 1 14 | -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gnostic/examples/v2.0/json/petstore-separate/common/Error.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "object", 3 | "required": [ 4 | "code", 5 | "message" 6 | ], 7 | "properties": { 8 | "code": { 9 | "type": "integer", 10 | "format": "int32" 11 | }, 12 | "message": { 13 | "type": "string" 14 | } 15 | } 16 | } -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/doc.go: -------------------------------------------------------------------------------- 1 | // Copyright 2011 Google Inc. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // The uuid package generates and inspects UUIDs. 6 | // 7 | // UUIDs are based on RFC 4122 and DCE 1.1: Authentication and Security Services. 8 | package uuid 9 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/stat_test.go: -------------------------------------------------------------------------------- 1 | package procfs 2 | 3 | import "testing" 4 | 5 | func TestStat(t *testing.T) { 6 | s, err := FS("fixtures").NewStat() 7 | if err != nil { 8 | t.Fatal(err) 9 | } 10 | 11 | if want, have := int64(1418183276), s.BootTime; want != have { 12 | t.Errorf("want boot time %d, have %d", want, have) 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/gen_15.go: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2012-2015 Ugorji Nwoke. All rights reserved. 2 | // Use of this source code is governed by a MIT license found in the LICENSE file. 3 | 4 | // +build go1.5,!go1.6 5 | 6 | package codec 7 | 8 | import "os" 9 | 10 | func init() { 11 | genCheckVendor = os.Getenv("GO15VENDOREXPERIMENT") == "1" 12 | } 13 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Binaries for programs and plugins 2 | *.exe 3 | *.dll 4 | *.so 5 | *.dylib 6 | 7 | # Test binary, build with `go test -c` 8 | *.test 9 | 10 | # Output of the go coverage tool, specifically when used with LiteIDE 11 | *.out 12 | 13 | # Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736 14 | .glide/ 15 | 16 | .idea/ 17 | _output/ -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/jsonreference/.pullapprove.yml: -------------------------------------------------------------------------------- 1 | approve_by_comment: true 2 | approve_regex: '^(:shipit:|:\+1:|\+1|LGTM|lgtm|Approved)' 3 | reject_regex: ^[Rr]ejected 4 | reset_on_push: false 5 | reviewers: 6 | members: 7 | - casualjim 8 | - chancez 9 | - frapposelli 10 | - vburenin 11 | - pytlesk4 12 | name: pullapprove 13 | required: 1 14 | -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gnostic/plugins/README.md: -------------------------------------------------------------------------------- 1 | # Plugins 2 | 3 | This directory contains support code for building Gnostic plugins and associated examples. 4 | 5 | Plugins are used to process API descriptions and can perform tasks like documentation and 6 | code generation. Plugins can be written in any language that is supported by the Protocol 7 | Buffer tools. 8 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/go_above_19.go: -------------------------------------------------------------------------------- 1 | //+build go1.9 2 | 3 | package reflect2 4 | 5 | import ( 6 | "unsafe" 7 | ) 8 | 9 | //go:linkname makemap reflect.makemap 10 | func makemap(rtype unsafe.Pointer, cap int) (m unsafe.Pointer) 11 | 12 | func makeMapWithSize(rtype unsafe.Pointer, cap int) unsafe.Pointer { 13 | return makemap(rtype, cap) 14 | } 15 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/buddyinfo/valid/buddyinfo: -------------------------------------------------------------------------------- 1 | Node 0, zone DMA 1 0 1 0 2 1 1 0 1 1 3 2 | Node 0, zone DMA32 759 572 791 475 194 45 12 0 0 0 0 3 | Node 0, zone Normal 4381 1093 185 1530 567 102 4 0 0 0 0 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - lavalamp 3 | - smarterclayton 4 | - deads2k 5 | - sttts 6 | - liggitt 7 | - caesarxuchao 8 | reviewers: 9 | - thockin 10 | - lavalamp 11 | - smarterclayton 12 | - wojtek-t 13 | - deads2k 14 | - derekwaynecarr 15 | - caesarxuchao 16 | - mikedanese 17 | - liggitt 18 | - gmarek 19 | - sttts 20 | - ncdc 21 | - tallclair 22 | -------------------------------------------------------------------------------- /vendor/github.com/evanphx/json-patch/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.8 5 | - 1.7 6 | 7 | install: 8 | - if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi 9 | - go get github.com/jessevdk/go-flags 10 | 11 | script: 12 | - go get 13 | - go test -cover ./... 14 | 15 | notifications: 16 | email: false 17 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/test.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -e 4 | echo "" > coverage.txt 5 | 6 | for d in $(go list ./... | grep -v vendor); do 7 | go test -coverprofile=profile.out -coverpkg=github.com/json-iterator/go $d 8 | if [ -f profile.out ]; then 9 | cat profile.out >> coverage.txt 10 | rm profile.out 11 | fi 12 | done 13 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/buddyinfo/sizemismatch/buddyinfo: -------------------------------------------------------------------------------- 1 | Node 0, zone DMA 1 0 1 0 2 1 1 0 1 1 3 2 | Node 0, zone DMA32 759 572 791 475 194 45 12 0 0 0 0 0 3 | Node 0, zone Normal 4381 1093 185 1530 567 102 4 0 0 0 4 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | # Bug reporting 2 | 3 | A good bug report has some very specific qualities, so please read over our short document on [reporting bugs][report_bugs] before submitting a bug report. 4 | 5 | To ask a question, go ahead and ignore this. 6 | 7 | [report_bugs]: https://github.com/coreos/etcd/blob/master/Documentation/reporting_bugs.md 8 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/test.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -e 4 | echo "" > coverage.txt 5 | 6 | for d in $(go list ./... | grep -v vendor); do 7 | go test -coverprofile=profile.out -coverpkg=github.com/modern-go/reflect2 $d 8 | if [ -f profile.out ]; then 9 | cat profile.out >> coverage.txt 10 | rm profile.out 11 | fi 12 | done 13 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/stat: -------------------------------------------------------------------------------- 1 | 26231 (vim) R 5392 7446 5392 34835 7446 4218880 32533 309516 26 82 1677 44 158 99 20 0 1 0 82375 56274944 1981 18446744073709551615 4194304 6294284 140736914091744 140736914087944 139965136429984 0 0 12288 1870679807 0 0 0 17 0 0 0 31 0 0 8391624 8481048 16420864 140736914093252 140736914093279 140736914093279 140736914096107 0 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/net/ip_vs_stats: -------------------------------------------------------------------------------- 1 | Total Incoming Outgoing Incoming Outgoing 2 | Conns Packets Packets Bytes Bytes 3 | 16AA370 E33656E5 0 51D8C8883AB3 0 4 | 5 | Conns/s Pkts/s Pkts/s Bytes/s Bytes/s 6 | 4 1FB3C 0 1282A8F 0 7 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/terminal/util_linux.go: -------------------------------------------------------------------------------- 1 | // Copyright 2013 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package terminal 6 | 7 | import "golang.org/x/sys/unix" 8 | 9 | const ioctlReadTermios = unix.TCGETS 10 | const ioctlWriteTermios = unix.TCSETS 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- 1 | // Copyright 2015 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build darwin dragonfly freebsd linux netbsd openbsd solaris 6 | 7 | package unix 8 | 9 | const ( 10 | R_OK = 0x4 11 | W_OK = 0x2 12 | X_OK = 0x1 13 | ) 14 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/test.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -e 4 | echo "" > coverage.txt 5 | 6 | for d in $(go list ./... | grep -v vendor); do 7 | go test -coverprofile=profile.out -coverpkg=github.com/modern-go/concurrent $d 8 | if [ -f profile.out ]; then 9 | cat profile.out >> coverage.txt 10 | rm profile.out 11 | fi 12 | done 13 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/setter.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package bpf 6 | 7 | // A Setter is a type which can attach a compiled BPF filter to itself. 8 | type Setter interface { 9 | SetBPF(filter []RawInstruction) error 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/issue261/Makefile: -------------------------------------------------------------------------------- 1 | regenerate: 2 | go install github.com/gogo/protobuf/protoc-min-version 3 | go install github.com/gogo/protobuf/protoc-gen-gogoslick 4 | protoc-min-version --version="3.0.0" --gogoslick_out=\ 5 | Mgoogle/protobuf/duration.proto=github.com/gogo/protobuf/types,\ 6 | :. \ 7 | --proto_path=../../../../../:../../protobuf/:. issue261.proto 8 | -------------------------------------------------------------------------------- /vendor/github.com/mailru/easyjson/tests/omitempty.go: -------------------------------------------------------------------------------- 1 | package tests 2 | 3 | //easyjson:json 4 | type OmitEmptyDefault struct { 5 | Field string 6 | Str string 7 | Str1 string `json:"s,!omitempty"` 8 | Str2 string `json:",!omitempty"` 9 | } 10 | 11 | var omitEmptyDefaultValue = OmitEmptyDefault{Field: "test"} 12 | var omitEmptyDefaultString = `{"Field":"test","s":"","Str2":""}` 13 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/584/stat: -------------------------------------------------------------------------------- 1 | 1020 ((a b ) ( c d) ) R 28378 1020 28378 34842 1020 4218880 286 0 0 0 0 0 0 0 20 0 1 0 10839175 10395648 155 18446744073709551615 4194304 4238788 140736466511168 140736466511168 140609271124624 0 0 0 0 0 0 0 17 5 0 0 0 0 0 6336016 6337300 25579520 140736466515030 140736466515061 140736466515061 140736466518002 0 2 | #!/bin/cat /proc/self/stat 3 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | 3 | language: go 4 | 5 | go: 6 | - 1.7.3 7 | - 1.8.1 8 | - tip 9 | 10 | matrix: 11 | allow_failures: 12 | - go: tip 13 | 14 | install: 15 | - go get github.com/golang/lint/golint 16 | - export PATH=$GOPATH/bin:$PATH 17 | - go install ./... 18 | 19 | script: 20 | - verify/all.sh -v 21 | - go test ./... 22 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/mksyscall.go: -------------------------------------------------------------------------------- 1 | // Copyright 2009 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package windows 6 | 7 | //go:generate go run $GOROOT/src/syscall/mksyscall_windows.go -output zsyscall_windows.go eventlog.go service.go syscall_windows.go security_windows.go 8 | -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | _obj 8 | _test 9 | 10 | # Architecture specific extensions/prefixes 11 | *.[568vq] 12 | [568vq].out 13 | 14 | *.cgo1.go 15 | *.cgo2.c 16 | _cgo_defun.c 17 | _cgo_gotypes.go 18 | _cgo_export.* 19 | 20 | _testmain.go 21 | 22 | *.exe 23 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/typedecl/models.go: -------------------------------------------------------------------------------- 1 | package typedecl 2 | 3 | type Dropped struct { 4 | Name string 5 | Age int32 6 | } 7 | 8 | func (d *Dropped) Drop() bool { 9 | return true 10 | } 11 | 12 | type DroppedWithoutGetters struct { 13 | Width int64 14 | Height int64 15 | } 16 | 17 | func (d *DroppedWithoutGetters) GetHeight() int64 { 18 | return d.Height 19 | } 20 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/log.go: -------------------------------------------------------------------------------- 1 | package concurrent 2 | 3 | import ( 4 | "os" 5 | "log" 6 | "io/ioutil" 7 | ) 8 | 9 | // ErrorLogger is used to print out error, can be set to writer other than stderr 10 | var ErrorLogger = log.New(os.Stderr, "", 0) 11 | 12 | // InfoLogger is used to print informational message, default to off 13 | var InfoLogger = log.New(ioutil.Discard, "", 0) -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_no_getwd.go: -------------------------------------------------------------------------------- 1 | // Copyright 2013 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build dragonfly freebsd netbsd openbsd 6 | 7 | package unix 8 | 9 | const ImplementsGetwd = false 10 | 11 | func Getwd() (string, error) { return "", ENOTSUP } 12 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_solaris_amd64.go: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build amd64,solaris 6 | 7 | package unix 8 | 9 | // TODO(aram): remove these before Go 1.3. 10 | const ( 11 | SYS_EXECVE = 59 12 | SYS_FCNTL = 62 13 | ) 14 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/typedecl_all/models.go: -------------------------------------------------------------------------------- 1 | package typedeclall 2 | 3 | type Dropped struct { 4 | Name string 5 | Age int32 6 | } 7 | 8 | func (d *Dropped) Drop() bool { 9 | return true 10 | } 11 | 12 | type DroppedWithoutGetters struct { 13 | Width int64 14 | Height int64 15 | } 16 | 17 | func (d *DroppedWithoutGetters) GetHeight() int64 { 18 | return d.Height 19 | } 20 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/map_test.go: -------------------------------------------------------------------------------- 1 | package concurrent_test 2 | 3 | import ( 4 | "github.com/modern-go/concurrent" 5 | "testing" 6 | ) 7 | 8 | func TestMap_Load(t *testing.T) { 9 | m := concurrent.NewMap() 10 | m.Store("hello", "world") 11 | value, found := m.Load("hello") 12 | if !found { 13 | t.Fail() 14 | } 15 | if value != "world" { 16 | t.Fail() 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socket/iovec_stub.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build !darwin,!dragonfly,!freebsd,!linux,!netbsd,!openbsd,!solaris 6 | 7 | package socket 8 | 9 | type iovec struct{} 10 | 11 | func (v *iovec) set(b []byte) {} 12 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/integration/fixtures/ca-csr.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": { 3 | "algo": "rsa", 4 | "size": 4096 5 | }, 6 | "names": [ 7 | { 8 | "O": "etcd", 9 | "OU": "etcd Security", 10 | "L": "San Francisco", 11 | "ST": "California", 12 | "C": "USA" 13 | } 14 | ], 15 | "CN": "ca", 16 | "ca": { 17 | "expiry": "87600h" 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/issue262/Makefile: -------------------------------------------------------------------------------- 1 | regenerate: 2 | go install github.com/gogo/protobuf/protoc-min-version 3 | go install github.com/gogo/protobuf/protoc-gen-gogoslick 4 | protoc-min-version --version="3.0.0" --proto_path=.:$(GOPATH)/src/:$(GOPATH)/src/github.com/gogo/protobuf/protobuf/ \ 5 | --gogoslick_out=Mgoogle/protobuf/timestamp.proto=github.com/gogo/protobuf/types:. timefail.proto 6 | -------------------------------------------------------------------------------- /vendor/github.com/mailru/easyjson/benchmark/ujson.sh: -------------------------------------------------------------------------------- 1 | #/bin/bash 2 | 3 | echo -n "Python ujson module, DECODE: " 4 | python -m timeit -s "import ujson; data = open('`dirname $0`/example.json', 'r').read()" 'ujson.loads(data)' 5 | 6 | echo -n "Python ujson module, ENCODE: " 7 | python -m timeit -s "import ujson; data = open('`dirname $0`/example.json', 'r').read(); obj = ujson.loads(data)" 'ujson.dumps(obj)' 8 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unset.go: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build go1.4 6 | 7 | package unix 8 | 9 | import "syscall" 10 | 11 | func Unsetenv(key string) error { 12 | // This was added in Go 1.4. 13 | return syscall.Unsetenv(key) 14 | } 15 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_amd64_gc.go: -------------------------------------------------------------------------------- 1 | // Copyright 2016 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build amd64,linux 6 | // +build !gccgo 7 | 8 | package unix 9 | 10 | import "syscall" 11 | 12 | //go:noescape 13 | func gettimeofday(tv *Timeval) (err syscall.Errno) 14 | -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/examples/google_app_engine/restful-appstats-integration.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import ( 4 | "github.com/mjibson/appstats" 5 | ) 6 | 7 | func stats(req *restful.Request, resp *restful.Response, chain *restful.FilterChain) { 8 | c := appstats.NewContext(req.Request) 9 | chain.ProcessFilter(req, resp) 10 | c.Stats.Status = resp.StatusCode() 11 | c.Save() 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/spec/fixtures/local_expansion/item.json: -------------------------------------------------------------------------------- 1 | { 2 | "properties": { 3 | "id": { 4 | "format": "int64", 5 | "readOnly": true, 6 | "type": "integer" 7 | }, 8 | "title": { 9 | "maxLength": 80, 10 | "minLength": 2, 11 | "type": "string" 12 | } 13 | }, 14 | "required": [ 15 | "title" 16 | ], 17 | "type": "object" 18 | } 19 | -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gnostic/examples/v2.0/json/petstore-separate/spec/Pet.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "object", 3 | "required": [ 4 | "id", 5 | "name" 6 | ], 7 | "properties": { 8 | "id": { 9 | "type": "integer", 10 | "format": "int64" 11 | }, 12 | "name": { 13 | "type": "string" 14 | }, 15 | "tag": { 16 | "type": "string" 17 | } 18 | } 19 | } -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/keccakf_amd64.go: -------------------------------------------------------------------------------- 1 | // Copyright 2015 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build amd64,!appengine,!gccgo 6 | 7 | package sha3 8 | 9 | // This function is implemented in keccakf_amd64.s. 10 | 11 | //go:noescape 12 | 13 | func keccakF1600(a *[25]uint64) 14 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socket/msghdr_bsdvar.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build darwin dragonfly freebsd netbsd 6 | 7 | package socket 8 | 9 | func (h *msghdr) setIov(vs []iovec) { 10 | h.Iov = &vs[0] 11 | h.Iovlen = int32(len(vs)) 12 | } 13 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/env_unset.go: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build go1.4 6 | 7 | package plan9 8 | 9 | import "syscall" 10 | 11 | func Unsetenv(key string) error { 12 | // This was added in Go 1.4. 13 | return syscall.Unsetenv(key) 14 | } 15 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/registry/export_test.go: -------------------------------------------------------------------------------- 1 | // Copyright 2015 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build windows 6 | 7 | package registry 8 | 9 | func (k Key) SetValue(name string, valtype uint32, data []byte) error { 10 | return k.setValue(name, valtype, data) 11 | } 12 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/hack/scripts-dev/docker-dns/certs/ca-csr.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": { 3 | "algo": "rsa", 4 | "size": 2048 5 | }, 6 | "names": [ 7 | { 8 | "O": "etcd", 9 | "OU": "etcd Security", 10 | "L": "San Francisco", 11 | "ST": "California", 12 | "C": "USA" 13 | } 14 | ], 15 | "CN": "ca", 16 | "ca": { 17 | "expiry": "87600h" 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/hack/tls-setup/config/ca-csr.json: -------------------------------------------------------------------------------- 1 | { 2 | "CN": "Autogenerated CA", 3 | "key": { 4 | "algo": "ecdsa", 5 | "size": 384 6 | }, 7 | "names": [ 8 | { 9 | "O": "Honest Achmed's Used Certificates", 10 | "OU": "Hastily-Generated Values Divison", 11 | "L": "San Francisco", 12 | "ST": "California", 13 | "C": "US" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/tracer_test.go: -------------------------------------------------------------------------------- 1 | package restful 2 | 3 | import "testing" 4 | 5 | // Use like this: 6 | // 7 | // TraceLogger(testLogger{t}) 8 | type testLogger struct { 9 | t *testing.T 10 | } 11 | 12 | func (l testLogger) Print(v ...interface{}) { 13 | l.t.Log(v...) 14 | } 15 | 16 | func (l testLogger) Printf(format string, v ...interface{}) { 17 | l.t.Logf(format, v...) 18 | } 19 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/golang-lru/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | _obj 8 | _test 9 | 10 | # Architecture specific extensions/prefixes 11 | *.[568vq] 12 | [568vq].out 13 | 14 | *.cgo1.go 15 | *.cgo2.c 16 | _cgo_defun.c 17 | _cgo_gotypes.go 18 | _cgo_export.* 19 | 20 | _testmain.go 21 | 22 | *.exe 23 | *.test 24 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/curve25519/const_amd64.h: -------------------------------------------------------------------------------- 1 | // Copyright 2012 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // This code was translated into a form compatible with 6a from the public 6 | // domain sources in SUPERCOP: https://bench.cr.yp.to/supercop.html 7 | 8 | #define REDMASK51 0x0007FFFFFFFFFFFF 9 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socket/sys_linux_386.s: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | #include "textflag.h" 6 | 7 | TEXT ·socketcall(SB),NOSPLIT,$0-36 8 | JMP syscall·socketcall(SB) 9 | 10 | TEXT ·rawsocketcall(SB),NOSPLIT,$0-36 11 | JMP syscall·rawsocketcall(SB) 12 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/file_go1.7.go: -------------------------------------------------------------------------------- 1 | // Copyright 2016 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build go1.7 6 | 7 | package webdav 8 | 9 | import ( 10 | "context" 11 | "net/http" 12 | ) 13 | 14 | func getContext(r *http.Request) context.Context { 15 | return r.Context() 16 | } 17 | -------------------------------------------------------------------------------- /vendor/gopkg.in/natefinch/lumberjack.v2/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | _obj 8 | _test 9 | 10 | # Architecture specific extensions/prefixes 11 | *.[568vq] 12 | [568vq].out 13 | 14 | *.cgo1.go 15 | *.cgo2.c 16 | _cgo_defun.c 17 | _cgo_gotypes.go 18 | _cgo_export.* 19 | 20 | _testmain.go 21 | 22 | *.exe 23 | *.test 24 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/hack/scripts-dev/docker-dns-srv/certs/ca-csr.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": { 3 | "algo": "rsa", 4 | "size": 2048 5 | }, 6 | "names": [ 7 | { 8 | "O": "etcd", 9 | "OU": "etcd Security", 10 | "L": "San Francisco", 11 | "ST": "California", 12 | "C": "USA" 13 | } 14 | ], 15 | "CN": "ca", 16 | "ca": { 17 | "expiry": "87600h" 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2b/blake2b_ref.go: -------------------------------------------------------------------------------- 1 | // Copyright 2016 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build !amd64 appengine gccgo 6 | 7 | package blake2b 8 | 9 | func hashBlocks(h *[8]uint64, c *[2]uint64, flag uint64, blocks []byte) { 10 | hashBlocksGeneric(h, c, flag, blocks) 11 | } 12 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/testdata/webkit/scripted/adoption01.dat: -------------------------------------------------------------------------------- 1 | #data 2 |

TEXT 3 | #errors 4 | #document 5 | | 6 | | 7 | | 8 | |

9 | | 10 | | id="B" 11 | |