├── .gitignore ├── .travis.yml ├── Dockerfile ├── LICENSE ├── Makefile ├── OWNERS ├── README.md ├── bindata └── v3.10.0 │ ├── apiservice-cabundle-controller │ ├── clusterrole.yaml │ ├── clusterrolebinding.yaml │ ├── cm.yaml │ ├── defaultconfig.yaml │ ├── deployment.yaml │ ├── ns.yaml │ ├── sa.yaml │ ├── signing-cabundle.yaml │ └── svc.yaml │ ├── configmap-cabundle-controller │ ├── clusterrole.yaml │ ├── clusterrolebinding.yaml │ ├── cm.yaml │ ├── defaultconfig.yaml │ ├── deployment.yaml │ ├── ns.yaml │ ├── sa.yaml │ ├── signing-cabundle.yaml │ └── svc.yaml │ └── service-serving-cert-signer-controller │ ├── clusterrole.yaml │ ├── clusterrolebinding.yaml │ ├── cm.yaml │ ├── defaultconfig.yaml │ ├── deployment.yaml │ ├── ns.yaml │ ├── sa.yaml │ ├── signing-secret.yaml │ └── svc.yaml ├── cmd └── service-serving-cert-signer │ └── main.go ├── glide.lock ├── glide.yaml ├── hack ├── boilerplate.txt ├── build-cross.sh ├── build-go.sh ├── build-images.sh ├── build-rpms.sh ├── cherry-pick.sh ├── deps ├── env ├── import-restrictions.json ├── lib │ ├── build │ │ ├── archive.sh │ │ ├── binaries.sh │ │ ├── environment.sh │ │ ├── images.sh │ │ ├── release.sh │ │ ├── rpm.sh │ │ └── version.sh │ ├── cleanup.sh │ ├── cmd.sh │ ├── compress.awk │ ├── constants.sh │ ├── init.sh │ ├── log │ │ ├── output.sh │ │ ├── stacktrace.sh │ │ └── system.sh │ ├── test │ │ └── junit.sh │ └── util │ │ ├── ensure.sh │ │ ├── environment.sh │ │ ├── find.sh │ │ ├── golang.sh │ │ ├── misc.sh │ │ ├── text.sh │ │ └── trap.sh ├── move-upstream.sh ├── push-release.sh ├── test-go.sh ├── update-deps.sh ├── update-generated-bindata.sh ├── verify-generated-bindata.sh ├── verify-gofmt.sh ├── verify-golint.sh ├── verify-govet.sh ├── verify-imports.sh └── verify-upstream-commits.sh ├── install └── serving-cert-signer │ ├── install-rbac.yaml │ └── install.yaml ├── manifests ├── 0000_09_service-serving-cert-signer_00_roles.yaml ├── 0000_09_service-serving-cert-signer_01_namespace.yaml ├── 0000_09_service-serving-cert-signer_02_crd.yaml ├── 0000_09_service-serving-cert-signer_03_cm.yaml ├── 0000_09_service-serving-cert-signer_04_sa.yaml ├── 0000_09_service-serving-cert-signer_05_deploy.yaml └── 0000_09_service-serving-cert-signer_06_config.yaml ├── pkg ├── boilerplate │ ├── controller │ │ ├── controller.go │ │ ├── filter.go │ │ ├── option.go │ │ └── sync.go │ ├── controllercmd │ │ └── cmd.go │ └── operator │ │ ├── filter.go │ │ ├── operator.go │ │ ├── option.go │ │ └── sync.go ├── cmd │ ├── apiservicecabundle │ │ └── cmd.go │ ├── configmapcabundle │ │ └── cmd.go │ ├── operator │ │ └── cmd.go │ ├── scheme │ │ └── scheme.go │ └── servingcertsigner │ │ └── cmd.go ├── controller │ ├── api │ │ ├── api.go │ │ └── resourcenames.go │ ├── apiservicecabundle │ │ ├── controller │ │ │ ├── apiservice_cabundle_controller.go │ │ │ └── apiservice_cabundle_controller_test.go │ │ └── starter │ │ │ └── starter.go │ ├── configmapcainjector │ │ ├── controller │ │ │ ├── configmap_injecting_controller.go │ │ │ └── configmap_injecting_controller_test.go │ │ └── starter │ │ │ └── starter.go │ └── servingcert │ │ ├── controller │ │ ├── secret_creating_controller.go │ │ ├── secret_creating_controller_test.go │ │ ├── secret_updating_controller.go │ │ └── secret_updating_controller_test.go │ │ ├── cryptoextensions │ │ ├── doc.go │ │ ├── extensions.go │ │ └── serversigning.go │ │ └── starter │ │ └── starter.go ├── operator │ ├── operator.go │ ├── starter.go │ ├── sync_all_v311_00.go │ ├── sync_apiservice_v311_00.go │ ├── sync_configmapcabundle_v311_00.go │ ├── sync_signer_v311_00.go │ └── v310_00_assets │ │ └── bindata.go └── version │ └── version.go ├── service-serving-cert-signer.spec ├── test ├── e2e.sh └── e2e │ └── e2e_test.go ├── tools ├── changelog │ └── changelog.go ├── gotest2junit │ ├── gotest2junit.go │ ├── pkg │ │ └── api │ │ │ ├── junit.xsd │ │ │ ├── string.go │ │ │ ├── test_case.go │ │ │ ├── test_suite.go │ │ │ └── types.go │ └── test │ │ └── test_test.go ├── import-verifier │ └── import-verifier.go └── junitreport │ ├── .gitignore │ ├── OWNERS │ ├── README.md │ ├── junitreport.go │ ├── pkg │ ├── api │ │ ├── junit.xsd │ │ ├── string.go │ │ ├── test_case.go │ │ ├── test_suite.go │ │ └── types.go │ ├── builder │ │ ├── flat │ │ │ ├── test_suites_builder.go │ │ │ └── test_suites_builder_test.go │ │ ├── interfaces.go │ │ └── nested │ │ │ ├── test_suites_builder.go │ │ │ └── test_suites_builder_test.go │ ├── cmd │ │ ├── junitreport.go │ │ └── summarize.go │ ├── errors │ │ └── errors.go │ └── parser │ │ ├── gotest │ │ ├── data_parser.go │ │ ├── data_parser_test.go │ │ ├── example │ │ │ └── example_test.go │ │ ├── parser.go │ │ ├── parser_flat_test.go │ │ └── parser_nested_test.go │ │ ├── interfaces.go │ │ ├── oscmd │ │ ├── data_parser.go │ │ ├── data_parser_test.go │ │ ├── parser.go │ │ ├── parser_flat_test.go │ │ └── parser_nested_test.go │ │ └── stack │ │ ├── interfaces.go │ │ ├── parser.go │ │ ├── stack.go │ │ └── stack_test.go │ └── test │ ├── gotest │ ├── reports │ │ ├── 10_flat.xml │ │ ├── 10_nested.xml │ │ ├── 11_flat.xml │ │ ├── 11_nested.xml │ │ ├── 12_flat.xml │ │ ├── 12_nested.xml │ │ ├── 13_flat.xml │ │ ├── 13_nested.xml │ │ ├── 14_flat.xml │ │ ├── 15_flat.xml │ │ ├── 16_flat.xml │ │ ├── 17_flat.xml │ │ ├── 1_flat.xml │ │ ├── 1_nested.xml │ │ ├── 1_nested_restricted.xml │ │ ├── 2_flat.xml │ │ ├── 2_nested.xml │ │ ├── 3_flat.xml │ │ ├── 3_nested.xml │ │ ├── 4_flat.xml │ │ ├── 4_nested.xml │ │ ├── 5_flat.xml │ │ ├── 5_nested.xml │ │ ├── 6_flat.xml │ │ ├── 6_nested.xml │ │ ├── 7_flat.xml │ │ ├── 7_nested.xml │ │ ├── 8_flat.xml │ │ ├── 8_nested.xml │ │ ├── 9_flat.xml │ │ ├── 9_nested.xml │ │ └── 9_nested_restricted.xml │ ├── summaries │ │ ├── 10_summary.txt │ │ ├── 11_summary.txt │ │ ├── 12_summary.txt │ │ ├── 13_summary.txt │ │ ├── 14_summary.txt │ │ ├── 15_summary.txt │ │ ├── 16_summary.txt │ │ ├── 17_summary.txt │ │ ├── 1_summary.txt │ │ ├── 2_summary.txt │ │ ├── 3_summary.txt │ │ ├── 4_summary.txt │ │ ├── 5_summary.txt │ │ ├── 6_summary.txt │ │ ├── 7_summary.txt │ │ ├── 8_summary.txt │ │ └── 9_summary.txt │ └── testdata │ │ ├── 1.txt │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ ├── 14.txt │ │ ├── 15.txt │ │ ├── 16.txt │ │ ├── 17.txt │ │ ├── 2.txt │ │ ├── 3.txt │ │ ├── 4.txt │ │ ├── 5.txt │ │ ├── 6.txt │ │ ├── 7.txt │ │ ├── 8.txt │ │ └── 9.txt │ ├── integration.sh │ └── oscmd │ ├── reports │ ├── 1_flat.xml │ ├── 1_nested.xml │ ├── 1_nested_restricted.xml │ ├── 2_flat.xml │ ├── 2_nested.xml │ ├── 3_flat.xml │ ├── 3_nested.xml │ ├── 4_flat.xml │ ├── 4_nested.xml │ └── 4_nested_restricted.xml │ ├── summaries │ ├── 1_summary.txt │ ├── 2_summary.txt │ ├── 3_summary.txt │ └── 4_summary.txt │ └── testdata │ ├── 1.txt │ ├── 2.txt │ ├── 3.txt │ └── 4.txt └── vendor ├── github.com ├── beorn7 │ └── perks │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── histogram │ │ ├── bench_test.go │ │ ├── histogram.go │ │ └── histogram_test.go │ │ ├── quantile │ │ ├── bench_test.go │ │ ├── example_test.go │ │ ├── exampledata.txt │ │ ├── stream.go │ │ └── stream_test.go │ │ └── topk │ │ ├── topk.go │ │ └── topk_test.go ├── blang │ └── semver │ │ ├── .gx │ │ └── lastpubver │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── examples │ │ └── main.go │ │ ├── json.go │ │ ├── json_test.go │ │ ├── package.json │ │ ├── range.go │ │ ├── range_test.go │ │ ├── semver.go │ │ ├── semver_test.go │ │ ├── sort.go │ │ ├── sort_test.go │ │ ├── sql.go │ │ └── sql_test.go ├── certifi │ └── gocertifi │ │ ├── LICENSE │ │ ├── README.md │ │ ├── certifi.go │ │ ├── certifi_test.go │ │ └── gen.go ├── davecgh │ └── go-spew │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cov_report.sh │ │ ├── spew │ │ ├── bypass.go │ │ ├── bypasssafe.go │ │ ├── common.go │ │ ├── common_test.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── dump.go │ │ ├── dump_test.go │ │ ├── dumpcgo_test.go │ │ ├── dumpnocgo_test.go │ │ ├── example_test.go │ │ ├── format.go │ │ ├── format_test.go │ │ ├── internal_test.go │ │ ├── internalunsafe_test.go │ │ ├── spew.go │ │ ├── spew_test.go │ │ └── testdata │ │ │ └── dumpcgo.go │ │ └── test_coverage.txt ├── getsentry │ └── raven-go │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── .gitmodules │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── client.go │ │ ├── client_test.go │ │ ├── errors.go │ │ ├── errors_test.go │ │ ├── example │ │ └── example.go │ │ ├── examples_test.go │ │ ├── exception.go │ │ ├── exception_test.go │ │ ├── http.go │ │ ├── http_test.go │ │ ├── interfaces.go │ │ ├── runtests.sh │ │ ├── stacktrace.go │ │ ├── stacktrace_test.go │ │ └── writer.go ├── ghodss │ └── yaml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── fields.go │ │ ├── yaml.go │ │ ├── yaml_go110.go │ │ ├── yaml_go110_test.go │ │ └── yaml_test.go ├── gogo │ └── protobuf │ │ ├── .gitignore │ │ ├── .mailmap │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── GOLANG_CONTRIBUTORS │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README │ │ ├── Readme.md │ │ ├── bench.md │ │ ├── codec │ │ ├── codec.go │ │ └── codec_test.go │ │ ├── conformance │ │ ├── Makefile │ │ ├── conformance.go │ │ ├── conformance.sh │ │ ├── internal │ │ │ └── conformance_proto │ │ │ │ ├── conformance.pb.go │ │ │ │ └── conformance.proto │ │ └── test.sh │ │ ├── custom_types.md │ │ ├── extensions.md │ │ ├── gogoproto │ │ ├── Makefile │ │ ├── doc.go │ │ ├── gogo.pb.go │ │ ├── gogo.pb.golden │ │ ├── gogo.proto │ │ └── helper.go │ │ ├── gogoreplace │ │ └── main.go │ │ ├── install-protobuf.sh │ │ ├── io │ │ ├── full.go │ │ ├── io.go │ │ ├── io_test.go │ │ ├── uint32.go │ │ ├── uint32_test.go │ │ └── varint.go │ │ ├── jsonpb │ │ ├── jsonpb.go │ │ ├── jsonpb_test.go │ │ └── jsonpb_test_proto │ │ │ ├── Makefile │ │ │ ├── bytes.go │ │ │ ├── more_test_objects.pb.go │ │ │ ├── more_test_objects.proto │ │ │ ├── test_objects.pb.go │ │ │ └── test_objects.proto │ │ ├── plugin │ │ ├── compare │ │ │ ├── compare.go │ │ │ └── comparetest.go │ │ ├── defaultcheck │ │ │ └── defaultcheck.go │ │ ├── description │ │ │ ├── description.go │ │ │ └── descriptiontest.go │ │ ├── embedcheck │ │ │ └── embedcheck.go │ │ ├── enumstringer │ │ │ └── enumstringer.go │ │ ├── equal │ │ │ ├── equal.go │ │ │ └── equaltest.go │ │ ├── face │ │ │ ├── face.go │ │ │ └── facetest.go │ │ ├── gostring │ │ │ ├── gostring.go │ │ │ └── gostringtest.go │ │ ├── marshalto │ │ │ └── marshalto.go │ │ ├── oneofcheck │ │ │ └── oneofcheck.go │ │ ├── populate │ │ │ └── populate.go │ │ ├── size │ │ │ ├── size.go │ │ │ └── sizetest.go │ │ ├── stringer │ │ │ ├── stringer.go │ │ │ └── stringertest.go │ │ ├── testgen │ │ │ └── testgen.go │ │ ├── union │ │ │ ├── union.go │ │ │ └── uniontest.go │ │ └── unmarshal │ │ │ └── unmarshal.go │ │ ├── proto │ │ ├── Makefile │ │ ├── all_test.go │ │ ├── any_test.go │ │ ├── clone.go │ │ ├── clone_test.go │ │ ├── custom_gogo.go │ │ ├── decode.go │ │ ├── decode_test.go │ │ ├── discard.go │ │ ├── discard_test.go │ │ ├── duration.go │ │ ├── duration_gogo.go │ │ ├── encode.go │ │ ├── encode_gogo.go │ │ ├── encode_test.go │ │ ├── equal.go │ │ ├── equal_test.go │ │ ├── extensions.go │ │ ├── extensions_gogo.go │ │ ├── extensions_test.go │ │ ├── lib.go │ │ ├── lib_gogo.go │ │ ├── map_test.go │ │ ├── message_set.go │ │ ├── message_set_test.go │ │ ├── pointer_reflect.go │ │ ├── pointer_reflect_gogo.go │ │ ├── pointer_unsafe.go │ │ ├── pointer_unsafe_gogo.go │ │ ├── properties.go │ │ ├── properties_gogo.go │ │ ├── proto3_proto │ │ │ ├── Makefile │ │ │ ├── proto3.pb.go │ │ │ └── proto3.proto │ │ ├── proto3_test.go │ │ ├── size2_test.go │ │ ├── size_test.go │ │ ├── skip_gogo.go │ │ ├── table_marshal.go │ │ ├── table_marshal_gogo.go │ │ ├── table_merge.go │ │ ├── table_unmarshal.go │ │ ├── table_unmarshal_gogo.go │ │ ├── test_proto │ │ │ ├── Makefile │ │ │ ├── deterministic.go │ │ │ ├── test.pb.go │ │ │ └── test.proto │ │ ├── text.go │ │ ├── text_gogo.go │ │ ├── text_parser.go │ │ ├── text_parser_test.go │ │ ├── text_test.go │ │ ├── timestamp.go │ │ ├── timestamp_gogo.go │ │ ├── wrappers.go │ │ └── wrappers_gogo.go │ │ ├── protobuf │ │ ├── Makefile │ │ └── google │ │ │ └── protobuf │ │ │ ├── any.proto │ │ │ ├── api.proto │ │ │ ├── compiler │ │ │ └── plugin.proto │ │ │ ├── descriptor.proto │ │ │ ├── duration.proto │ │ │ ├── empty.proto │ │ │ ├── field_mask.proto │ │ │ ├── source_context.proto │ │ │ ├── struct.proto │ │ │ ├── timestamp.proto │ │ │ ├── type.proto │ │ │ └── wrappers.proto │ │ ├── protoc-gen-combo │ │ └── combo.go │ │ ├── protoc-gen-gofast │ │ └── main.go │ │ ├── protoc-gen-gogo │ │ ├── Makefile │ │ ├── descriptor │ │ │ ├── Makefile │ │ │ ├── descriptor.go │ │ │ ├── descriptor.pb.go │ │ │ ├── descriptor_gostring.gen.go │ │ │ ├── descriptor_test.go │ │ │ └── helper.go │ │ ├── doc.go │ │ ├── generator │ │ │ ├── generator.go │ │ │ ├── helper.go │ │ │ ├── internal │ │ │ │ └── remap │ │ │ │ │ ├── remap.go │ │ │ │ │ └── remap_test.go │ │ │ └── name_test.go │ │ ├── golden_test.go │ │ ├── grpc │ │ │ └── grpc.go │ │ ├── main.go │ │ ├── plugin │ │ │ ├── Makefile │ │ │ └── plugin.pb.go │ │ └── testdata │ │ │ ├── Makefile │ │ │ ├── deprecated │ │ │ ├── deprecated.pb.go │ │ │ └── deprecated.proto │ │ │ ├── extension_base │ │ │ ├── extension_base.pb.go │ │ │ └── extension_base.proto │ │ │ ├── extension_extra │ │ │ ├── extension_extra.pb.go │ │ │ └── extension_extra.proto │ │ │ ├── extension_test.go │ │ │ ├── extension_user │ │ │ ├── extension_user.pb.go │ │ │ └── extension_user.proto │ │ │ ├── grpc │ │ │ ├── grpc.pb.go │ │ │ └── grpc.proto │ │ │ ├── import_public │ │ │ ├── a.pb.go │ │ │ ├── a.proto │ │ │ ├── b.pb.go │ │ │ ├── b.proto │ │ │ └── sub │ │ │ │ ├── a.pb.go │ │ │ │ ├── a.proto │ │ │ │ ├── b.pb.go │ │ │ │ └── b.proto │ │ │ ├── imports │ │ │ ├── fmt │ │ │ │ ├── m.pb.go │ │ │ │ └── m.proto │ │ │ ├── test_a_1 │ │ │ │ ├── m1.pb.go │ │ │ │ ├── m1.proto │ │ │ │ ├── m2.pb.go │ │ │ │ └── m2.proto │ │ │ ├── test_a_2 │ │ │ │ ├── m3.pb.go │ │ │ │ ├── m3.proto │ │ │ │ ├── m4.pb.go │ │ │ │ └── m4.proto │ │ │ ├── test_b_1 │ │ │ │ ├── m1.pb.go │ │ │ │ ├── m1.proto │ │ │ │ ├── m2.pb.go │ │ │ │ └── m2.proto │ │ │ ├── test_import_a1m1.pb.go │ │ │ ├── test_import_a1m1.proto │ │ │ ├── test_import_a1m2.pb.go │ │ │ ├── test_import_a1m2.proto │ │ │ ├── test_import_all.pb.go │ │ │ └── test_import_all.proto │ │ │ ├── main_test.go │ │ │ ├── multi │ │ │ ├── .gitignore │ │ │ ├── multi1.proto │ │ │ ├── multi2.proto │ │ │ └── multi3.proto │ │ │ ├── my_test │ │ │ ├── test.pb.go │ │ │ └── test.proto │ │ │ └── proto3 │ │ │ ├── proto3.pb.go │ │ │ └── proto3.proto │ │ ├── protoc-gen-gogofast │ │ └── main.go │ │ ├── protoc-gen-gogofaster │ │ └── main.go │ │ ├── protoc-gen-gogoslick │ │ └── main.go │ │ ├── protoc-gen-gogotypes │ │ └── main.go │ │ ├── protoc-gen-gostring │ │ └── main.go │ │ ├── protoc-min-version │ │ └── minversion.go │ │ ├── sortkeys │ │ └── sortkeys.go │ │ ├── test │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── asymetric-issue125 │ │ │ ├── Makefile │ │ │ ├── asym.pb.go │ │ │ ├── asym.proto │ │ │ ├── asym_test.go │ │ │ └── pop.go │ │ ├── bug_test.go │ │ ├── cachedsize │ │ │ ├── Makefile │ │ │ ├── cachedsize.pb.go │ │ │ ├── cachedsize.proto │ │ │ └── cachedsize_test.go │ │ ├── casttype │ │ │ ├── Makefile │ │ │ ├── casttype.proto │ │ │ ├── combos │ │ │ │ ├── both │ │ │ │ │ ├── casttype.pb.go │ │ │ │ │ ├── casttype.proto │ │ │ │ │ └── casttypepb_test.go │ │ │ │ ├── marshaler │ │ │ │ │ ├── casttype.pb.go │ │ │ │ │ ├── casttype.proto │ │ │ │ │ └── casttypepb_test.go │ │ │ │ ├── neither │ │ │ │ │ ├── casttype.pb.go │ │ │ │ │ ├── casttype.proto │ │ │ │ │ └── casttypepb_test.go │ │ │ │ └── unmarshaler │ │ │ │ │ ├── casttype.pb.go │ │ │ │ │ ├── casttype.proto │ │ │ │ │ └── casttypepb_test.go │ │ │ └── mytypes.go │ │ ├── castvalue │ │ │ ├── Makefile │ │ │ ├── castvalue.pb.go │ │ │ ├── castvalue.proto │ │ │ ├── castvaluepb_test.go │ │ │ ├── combos │ │ │ │ ├── both │ │ │ │ │ ├── castvalue.pb.go │ │ │ │ │ ├── castvalue.proto │ │ │ │ │ ├── castvaluepb_test.go │ │ │ │ │ └── mytypes.go │ │ │ │ ├── marshaler │ │ │ │ │ ├── castvalue.pb.go │ │ │ │ │ ├── castvalue.proto │ │ │ │ │ ├── castvaluepb_test.go │ │ │ │ │ └── mytypes.go │ │ │ │ └── unmarshaler │ │ │ │ │ ├── castvalue.pb.go │ │ │ │ │ ├── castvalue.proto │ │ │ │ │ ├── castvaluepb_test.go │ │ │ │ │ └── mytypes.go │ │ │ └── mytypes.go │ │ ├── combos │ │ │ ├── both │ │ │ │ ├── bug_test.go │ │ │ │ ├── t.go │ │ │ │ ├── thetest.pb.go │ │ │ │ ├── thetest.proto │ │ │ │ ├── thetestpb_test.go │ │ │ │ └── uuid.go │ │ │ ├── marshaler │ │ │ │ ├── bug_test.go │ │ │ │ ├── t.go │ │ │ │ ├── thetest.pb.go │ │ │ │ ├── thetest.proto │ │ │ │ ├── thetestpb_test.go │ │ │ │ └── uuid.go │ │ │ └── unmarshaler │ │ │ │ ├── bug_test.go │ │ │ │ ├── t.go │ │ │ │ ├── thetest.pb.go │ │ │ │ ├── thetest.proto │ │ │ │ ├── thetestpb_test.go │ │ │ │ └── uuid.go │ │ ├── custom-dash-type │ │ │ └── customdash.go │ │ ├── custom │ │ │ ├── custom.go │ │ │ └── custom_test.go │ │ ├── custombytesnonstruct │ │ │ ├── Makefile │ │ │ ├── custombytesnonstruct_test.go │ │ │ ├── customtype.go │ │ │ ├── proto.pb.go │ │ │ └── proto.proto │ │ ├── dashfilename │ │ │ ├── dash-filename.proto │ │ │ ├── df_test.go │ │ │ └── doc.go │ │ ├── data │ │ │ ├── Makefile │ │ │ ├── data.pb.go │ │ │ ├── data.proto │ │ │ └── datapb_test.go │ │ ├── defaultconflict │ │ │ ├── df.proto │ │ │ ├── dg.proto │ │ │ ├── doc.go │ │ │ ├── nc.proto │ │ │ ├── nc_test.go │ │ │ ├── ne.proto │ │ │ └── nx.proto │ │ ├── deterministic │ │ │ ├── Makefile │ │ │ ├── deterministic.pb.go │ │ │ ├── deterministic.proto │ │ │ └── deterministic_test.go │ │ ├── embedconflict │ │ │ ├── .gitignore │ │ │ ├── doc.go │ │ │ ├── eb.proto │ │ │ ├── ec.proto │ │ │ ├── ec_test.go │ │ │ ├── ee.proto │ │ │ ├── em.proto │ │ │ ├── en.proto │ │ │ └── er.proto │ │ ├── empty-issue70 │ │ │ ├── Makefile │ │ │ ├── empty.pb.go │ │ │ ├── empty.proto │ │ │ └── empty_test.go │ │ ├── enumcustomname │ │ │ ├── Makefile │ │ │ ├── enumcustomname.pb.go │ │ │ └── enumcustomname.proto │ │ ├── enumdecl │ │ │ ├── Makefile │ │ │ ├── enumdecl.pb.go │ │ │ ├── enumdecl.proto │ │ │ ├── enumdeclpb_test.go │ │ │ └── models.go │ │ ├── enumdecl_all │ │ │ ├── Makefile │ │ │ ├── enumdeclall.pb.go │ │ │ ├── enumdeclall.proto │ │ │ ├── enumdeclallpb_test.go │ │ │ └── models.go │ │ ├── enumprefix │ │ │ ├── Makefile │ │ │ ├── enumprefix.pb.go │ │ │ └── enumprefix.proto │ │ ├── enumstringer │ │ │ ├── Makefile │ │ │ ├── enumstringer.pb.go │ │ │ ├── enumstringer.proto │ │ │ ├── enumstringerpb_test.go │ │ │ └── string.go │ │ ├── example │ │ │ ├── Makefile │ │ │ ├── example.pb.go │ │ │ ├── example.proto │ │ │ ├── example_test.go │ │ │ └── examplepb_test.go │ │ ├── extension_test.go │ │ ├── filedotname │ │ │ ├── Makefile │ │ │ ├── file.dot.pb.go │ │ │ ├── file.dot.proto │ │ │ └── file.dotpb_test.go │ │ ├── fuzztests │ │ │ ├── Makefile │ │ │ ├── fuzz.pb.go │ │ │ ├── fuzz.proto │ │ │ └── fuzz_test.go │ │ ├── group │ │ │ ├── Makefile │ │ │ ├── group.pb.go │ │ │ ├── group.proto │ │ │ └── grouppb_test.go │ │ ├── importcustom-issue389 │ │ │ ├── Makefile │ │ │ ├── imported │ │ │ │ ├── Makefile │ │ │ │ ├── a.pb.go │ │ │ │ ├── a.proto │ │ │ │ ├── apb_test.go │ │ │ │ └── b.go │ │ │ └── importing │ │ │ │ ├── Makefile │ │ │ │ ├── c.pb.go │ │ │ │ ├── c.proto │ │ │ │ └── cpb_test.go │ │ ├── importdedup │ │ │ ├── Makefile │ │ │ ├── importdedup_test.go │ │ │ ├── proto.pb.go │ │ │ ├── proto.proto │ │ │ └── subpkg │ │ │ │ ├── customtype.go │ │ │ │ ├── subproto.pb.go │ │ │ │ └── subproto.proto │ │ ├── importduplicate │ │ │ ├── Makefile │ │ │ ├── importduplicate.pb.go │ │ │ ├── importduplicate.proto │ │ │ ├── importduplicate_test.go │ │ │ ├── importduplicatepb_test.go │ │ │ ├── proto │ │ │ │ ├── proto.pb.go │ │ │ │ ├── proto.proto │ │ │ │ └── protopb_test.go │ │ │ └── sortkeys │ │ │ │ ├── sortable.pb.go │ │ │ │ ├── sortable.proto │ │ │ │ └── sortablepb_test.go │ │ ├── indeximport-issue72 │ │ │ ├── Makefile │ │ │ ├── index │ │ │ │ ├── index.pb.go │ │ │ │ ├── index.proto │ │ │ │ └── indexpb_test.go │ │ │ ├── indeximport.pb.go │ │ │ ├── indeximport.proto │ │ │ └── indeximportpb_test.go │ │ ├── int64support │ │ │ ├── Makefile │ │ │ ├── object.pb.go │ │ │ ├── object.proto │ │ │ ├── object_js.go │ │ │ ├── object_js_test.go │ │ │ └── objectpb_test.go │ │ ├── issue260 │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── issue260.pb.go │ │ │ ├── issue260.proto │ │ │ ├── issue260pb_test.go │ │ │ └── models.go │ │ ├── issue261 │ │ │ ├── Makefile │ │ │ ├── issue261.pb.go │ │ │ └── issue261.proto │ │ ├── issue262 │ │ │ ├── Makefile │ │ │ ├── timefail.pb.go │ │ │ └── timefail.proto │ │ ├── issue270 │ │ │ ├── a │ │ │ │ ├── a1.proto │ │ │ │ └── a2.proto │ │ │ ├── b │ │ │ │ └── b.proto │ │ │ ├── doc.go │ │ │ └── issue270_test.go │ │ ├── issue312 │ │ │ ├── Makefile │ │ │ ├── events │ │ │ │ ├── Makefile │ │ │ │ ├── events.pb.go │ │ │ │ ├── events.proto │ │ │ │ └── eventspb_test.go │ │ │ ├── issue312.pb.go │ │ │ └── issue312.proto │ │ ├── issue322 │ │ │ ├── Makefile │ │ │ ├── issue322.pb.go │ │ │ ├── issue322.proto │ │ │ └── issue322pb_test.go │ │ ├── issue330 │ │ │ ├── Makefile │ │ │ ├── issue330.pb.go │ │ │ ├── issue330.proto │ │ │ ├── issue330pb_test.go │ │ │ └── type.go │ │ ├── issue34 │ │ │ ├── Makefile │ │ │ ├── issue34_test.go │ │ │ ├── proto.pb.go │ │ │ └── proto.proto │ │ ├── issue411 │ │ │ ├── Makefile │ │ │ ├── ids.go │ │ │ ├── ids_test.go │ │ │ ├── issue411.pb.go │ │ │ └── issue411.proto │ │ ├── issue427 │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ └── issue427.proto │ │ ├── issue42order │ │ │ ├── Makefile │ │ │ ├── issue42.pb.go │ │ │ ├── issue42.proto │ │ │ └── order_test.go │ │ ├── issue435 │ │ │ ├── Makefile │ │ │ ├── issue435.pb.go │ │ │ ├── issue435.proto │ │ │ └── issue435pb_test.go │ │ ├── issue438 │ │ │ ├── Makefile │ │ │ ├── issue438.pb.go │ │ │ └── issue438.proto │ │ ├── issue444 │ │ │ ├── Makefile │ │ │ ├── issue444.pb.go │ │ │ ├── issue444.proto │ │ │ └── issue444_test.go │ │ ├── issue449 │ │ │ ├── Makefile │ │ │ ├── issue449.pb.go │ │ │ ├── issue449.proto │ │ │ └── issue449_test.go │ │ ├── issue498 │ │ │ ├── Makefile │ │ │ ├── issue498.pb.go │ │ │ ├── issue498.proto │ │ │ └── issue498pb_test.go │ │ ├── issue8 │ │ │ ├── Makefile │ │ │ ├── proto.pb.go │ │ │ ├── proto.proto │ │ │ └── protopb_test.go │ │ ├── jsonpb-gogo │ │ │ ├── jsonpb_gogo.go │ │ │ └── jsonpb_gogo_test.go │ │ ├── mapdefaults │ │ │ ├── Makefile │ │ │ ├── combos │ │ │ │ ├── both │ │ │ │ │ ├── map.pb.go │ │ │ │ │ ├── map.proto │ │ │ │ │ ├── map_test.go │ │ │ │ │ ├── mappb_test.go │ │ │ │ │ └── unknown_test.go │ │ │ │ ├── marshaler │ │ │ │ │ ├── map.pb.go │ │ │ │ │ ├── map.proto │ │ │ │ │ ├── map_test.go │ │ │ │ │ └── mappb_test.go │ │ │ │ ├── neither │ │ │ │ │ ├── map.pb.go │ │ │ │ │ ├── map.proto │ │ │ │ │ ├── map_test.go │ │ │ │ │ └── mappb_test.go │ │ │ │ └── unmarshaler │ │ │ │ │ ├── map.pb.go │ │ │ │ │ ├── map.proto │ │ │ │ │ ├── map_test.go │ │ │ │ │ ├── mappb_test.go │ │ │ │ │ └── unknown_test.go │ │ │ ├── map.pb.go │ │ │ ├── map.proto │ │ │ ├── map_test.go.in │ │ │ └── unknown_test.go.in │ │ ├── mapsproto2 │ │ │ ├── Makefile │ │ │ ├── combos │ │ │ │ ├── both │ │ │ │ │ ├── mapsproto2.pb.go │ │ │ │ │ ├── mapsproto2.proto │ │ │ │ │ ├── mapsproto2_test.go │ │ │ │ │ └── mapsproto2pb_test.go │ │ │ │ ├── marshaler │ │ │ │ │ ├── mapsproto2.pb.go │ │ │ │ │ ├── mapsproto2.proto │ │ │ │ │ ├── mapsproto2_test.go │ │ │ │ │ └── mapsproto2pb_test.go │ │ │ │ ├── neither │ │ │ │ │ ├── mapsproto2.pb.go │ │ │ │ │ ├── mapsproto2.proto │ │ │ │ │ ├── mapsproto2_test.go │ │ │ │ │ └── mapsproto2pb_test.go │ │ │ │ └── unmarshaler │ │ │ │ │ ├── mapsproto2.pb.go │ │ │ │ │ ├── mapsproto2.proto │ │ │ │ │ ├── mapsproto2_test.go │ │ │ │ │ └── mapsproto2pb_test.go │ │ │ ├── doc.go │ │ │ ├── header.proto │ │ │ ├── mapsproto2.proto │ │ │ └── mapsproto2_test.go.in │ │ ├── merge │ │ │ ├── Makefile │ │ │ ├── merge.pb.go │ │ │ ├── merge.proto │ │ │ └── merge_test.go │ │ ├── mixbench │ │ │ ├── .gitignore │ │ │ ├── marshal.txt │ │ │ ├── marshaler.txt │ │ │ ├── mixbench.go │ │ │ ├── oldmarshaler.txt │ │ │ ├── oldunmarshaler.txt │ │ │ ├── unmarshal.txt │ │ │ ├── unmarshaler.txt │ │ │ ├── unsafe_marshaler.txt │ │ │ └── unsafe_unmarshaler.txt │ │ ├── moredefaults │ │ │ ├── Makefile │ │ │ ├── md.pb.go │ │ │ ├── md.proto │ │ │ ├── md_test.go │ │ │ └── mdpb_test.go │ │ ├── nopackage │ │ │ ├── Makefile │ │ │ ├── nopackage.pb.go │ │ │ ├── nopackage.proto │ │ │ └── nopackage_test.go │ │ ├── oneof │ │ │ ├── Makefile │ │ │ ├── combos │ │ │ │ ├── both │ │ │ │ │ ├── one.pb.go │ │ │ │ │ ├── one.proto │ │ │ │ │ └── onepb_test.go │ │ │ │ ├── marshaler │ │ │ │ │ ├── one.pb.go │ │ │ │ │ ├── one.proto │ │ │ │ │ └── onepb_test.go │ │ │ │ ├── neither │ │ │ │ │ ├── one.pb.go │ │ │ │ │ ├── one.proto │ │ │ │ │ └── onepb_test.go │ │ │ │ └── unmarshaler │ │ │ │ │ ├── one.pb.go │ │ │ │ │ ├── one.proto │ │ │ │ │ └── onepb_test.go │ │ │ ├── doc.go │ │ │ └── one.proto │ │ ├── oneof3 │ │ │ ├── Makefile │ │ │ ├── combos │ │ │ │ ├── both │ │ │ │ │ ├── one.pb.go │ │ │ │ │ ├── one.proto │ │ │ │ │ └── onepb_test.go │ │ │ │ ├── marshaler │ │ │ │ │ ├── one.pb.go │ │ │ │ │ ├── one.proto │ │ │ │ │ └── onepb_test.go │ │ │ │ ├── neither │ │ │ │ │ ├── one.pb.go │ │ │ │ │ ├── one.proto │ │ │ │ │ └── onepb_test.go │ │ │ │ └── unmarshaler │ │ │ │ │ ├── one.pb.go │ │ │ │ │ ├── one.proto │ │ │ │ │ └── onepb_test.go │ │ │ ├── doc.go │ │ │ └── one.proto │ │ ├── oneofembed │ │ │ ├── Makefile │ │ │ ├── oneofembed.pb.go │ │ │ ├── oneofembed.proto │ │ │ └── oneofembedpb_test.go │ │ ├── packed │ │ │ ├── Makefile │ │ │ ├── doc.go │ │ │ ├── packed.pb.go │ │ │ ├── packed.proto │ │ │ └── packed_test.go │ │ ├── proto3extension │ │ │ ├── Makefile │ │ │ ├── proto3ext.pb.go │ │ │ └── proto3ext.proto │ │ ├── protosize │ │ │ ├── Makefile │ │ │ ├── protosize.pb.go │ │ │ ├── protosize.proto │ │ │ ├── protosize_test.go │ │ │ └── protosizepb_test.go │ │ ├── registration │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── registration.proto │ │ │ └── registration_test.go.in │ │ ├── required │ │ │ ├── Makefile │ │ │ ├── requiredexample.pb.go │ │ │ ├── requiredexample.proto │ │ │ └── requiredexamplepb_test.go │ │ ├── sizerconflict │ │ │ ├── doc.go │ │ │ ├── sizerconflict.proto │ │ │ └── sizerconflict_test.go │ │ ├── sizeunderscore │ │ │ ├── Makefile │ │ │ ├── sizeunderscore.pb.go │ │ │ ├── sizeunderscore.proto │ │ │ └── sizeunderscorepb_test.go │ │ ├── stdtypes │ │ │ ├── Makefile │ │ │ ├── concurrency_test.go │ │ │ ├── stdtypes.pb.go │ │ │ ├── stdtypes.proto │ │ │ └── stdtypespb_test.go │ │ ├── t.go │ │ ├── theproto3 │ │ │ ├── Makefile │ │ │ ├── combos │ │ │ │ ├── both │ │ │ │ │ ├── proto3_test.go │ │ │ │ │ ├── theproto3.pb.go │ │ │ │ │ ├── theproto3.proto │ │ │ │ │ └── theproto3pb_test.go │ │ │ │ ├── marshaler │ │ │ │ │ ├── proto3_test.go │ │ │ │ │ ├── theproto3.pb.go │ │ │ │ │ ├── theproto3.proto │ │ │ │ │ └── theproto3pb_test.go │ │ │ │ ├── neither │ │ │ │ │ ├── proto3_test.go │ │ │ │ │ ├── theproto3.pb.go │ │ │ │ │ ├── theproto3.proto │ │ │ │ │ └── theproto3pb_test.go │ │ │ │ └── unmarshaler │ │ │ │ │ ├── proto3_test.go │ │ │ │ │ ├── theproto3.pb.go │ │ │ │ │ ├── theproto3.proto │ │ │ │ │ └── theproto3pb_test.go │ │ │ ├── doc.go │ │ │ ├── footer.proto │ │ │ ├── header.proto │ │ │ ├── maps.proto │ │ │ ├── proto3_test.go.in │ │ │ └── theproto3.proto │ │ ├── thetest.pb.go │ │ ├── thetest.proto │ │ ├── thetestpb_test.go │ │ ├── typedecl │ │ │ ├── Makefile │ │ │ ├── models.go │ │ │ ├── typedecl.pb.go │ │ │ ├── typedecl.proto │ │ │ └── typedeclpb_test.go │ │ ├── typedecl_all │ │ │ ├── Makefile │ │ │ ├── models.go │ │ │ ├── typedeclall.pb.go │ │ │ ├── typedeclall.proto │ │ │ └── typedeclallpb_test.go │ │ ├── typedeclimport │ │ │ ├── Makefile │ │ │ ├── models.go │ │ │ ├── subpkg │ │ │ │ ├── subpkg.pb.go │ │ │ │ └── subpkg.proto │ │ │ ├── typedeclimport.pb.go │ │ │ ├── typedeclimport.proto │ │ │ └── typedeclimport_test.go │ │ ├── types │ │ │ ├── Makefile │ │ │ ├── combos │ │ │ │ ├── both │ │ │ │ │ ├── types.pb.go │ │ │ │ │ ├── types.proto │ │ │ │ │ ├── types_test.go │ │ │ │ │ └── typespb_test.go │ │ │ │ ├── marshaler │ │ │ │ │ ├── types.pb.go │ │ │ │ │ ├── types.proto │ │ │ │ │ ├── types_test.go │ │ │ │ │ └── typespb_test.go │ │ │ │ ├── neither │ │ │ │ │ ├── types.pb.go │ │ │ │ │ ├── types.proto │ │ │ │ │ ├── types_test.go │ │ │ │ │ └── typespb_test.go │ │ │ │ └── unmarshaler │ │ │ │ │ ├── types.pb.go │ │ │ │ │ ├── types.proto │ │ │ │ │ ├── types_test.go │ │ │ │ │ └── typespb_test.go │ │ │ ├── types.proto │ │ │ └── types_test.go.in │ │ ├── unmarshalmerge │ │ │ ├── Makefile │ │ │ ├── unmarshalmerge.pb.go │ │ │ ├── unmarshalmerge.proto │ │ │ ├── unmarshalmerge_test.go │ │ │ └── unmarshalmergepb_test.go │ │ ├── unrecognized │ │ │ ├── Makefile │ │ │ ├── oldnew_test.go │ │ │ ├── unrecognized.pb.go │ │ │ ├── unrecognized.proto │ │ │ └── unrecognizedpb_test.go │ │ ├── unrecognizedgroup │ │ │ ├── Makefile │ │ │ ├── oldnew_test.go │ │ │ ├── unrecognizedgroup.pb.go │ │ │ ├── unrecognizedgroup.proto │ │ │ └── unrecognizedgrouppb_test.go │ │ ├── uuid.go │ │ ├── uuid_test.go │ │ └── xxxfields │ │ │ ├── Makefile │ │ │ ├── xxxfields.pb.go │ │ │ ├── xxxfields.proto │ │ │ └── xxxfieldspb_test.go │ │ ├── types │ │ ├── any.go │ │ ├── any.pb.go │ │ ├── any_test.go │ │ ├── api.pb.go │ │ ├── doc.go │ │ ├── duration.go │ │ ├── duration.pb.go │ │ ├── duration_gogo.go │ │ ├── duration_test.go │ │ ├── empty.pb.go │ │ ├── field_mask.pb.go │ │ ├── protosize.go │ │ ├── source_context.pb.go │ │ ├── struct.pb.go │ │ ├── timestamp.go │ │ ├── timestamp.pb.go │ │ ├── timestamp_gogo.go │ │ ├── timestamp_test.go │ │ ├── type.pb.go │ │ ├── wrappers.pb.go │ │ └── wrappers_gogo.go │ │ ├── vanity │ │ ├── command │ │ │ └── command.go │ │ ├── enum.go │ │ ├── field.go │ │ ├── file.go │ │ ├── foreach.go │ │ ├── msg.go │ │ └── test │ │ │ ├── Makefile │ │ │ ├── doc.go │ │ │ ├── fast │ │ │ ├── gogovanity.pb.go │ │ │ ├── proto3.pb.go │ │ │ └── vanity.pb.go │ │ │ ├── faster │ │ │ ├── gogovanity.pb.go │ │ │ ├── proto3.pb.go │ │ │ └── vanity.pb.go │ │ │ ├── gofast │ │ │ └── .gitignore │ │ │ ├── gogovanity.proto │ │ │ ├── proto3.proto │ │ │ ├── slick │ │ │ ├── gogovanity.pb.go │ │ │ ├── proto3.pb.go │ │ │ └── vanity.pb.go │ │ │ ├── vanity.proto │ │ │ └── vanity_test.go │ │ └── version │ │ └── version.go ├── golang │ ├── glog │ │ ├── LICENSE │ │ ├── README │ │ ├── glog.go │ │ ├── glog_file.go │ │ └── glog_test.go │ ├── groupcache │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── byteview.go │ │ ├── byteview_test.go │ │ ├── consistenthash │ │ │ ├── consistenthash.go │ │ │ └── consistenthash_test.go │ │ ├── groupcache.go │ │ ├── groupcache_test.go │ │ ├── groupcachepb │ │ │ ├── groupcache.pb.go │ │ │ └── groupcache.proto │ │ ├── http.go │ │ ├── http_test.go │ │ ├── lru │ │ │ ├── lru.go │ │ │ └── lru_test.go │ │ ├── peers.go │ │ ├── singleflight │ │ │ ├── singleflight.go │ │ │ └── singleflight_test.go │ │ ├── sinks.go │ │ └── testpb │ │ │ ├── test.pb.go │ │ │ └── test.proto │ └── protobuf │ │ ├── .github │ │ └── ISSUE_TEMPLATE │ │ │ ├── bug_report.md │ │ │ ├── feature_request.md │ │ │ └── question.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── conformance │ │ ├── Makefile │ │ ├── conformance.go │ │ ├── conformance.sh │ │ ├── failure_list_go.txt │ │ ├── internal │ │ │ └── conformance_proto │ │ │ │ ├── conformance.pb.go │ │ │ │ └── conformance.proto │ │ └── test.sh │ │ ├── descriptor │ │ ├── descriptor.go │ │ └── descriptor_test.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── jsonpb │ │ ├── jsonpb.go │ │ ├── jsonpb_test.go │ │ └── jsonpb_test_proto │ │ │ ├── more_test_objects.pb.go │ │ │ ├── more_test_objects.proto │ │ │ ├── test_objects.pb.go │ │ │ └── test_objects.proto │ │ ├── proto │ │ ├── all_test.go │ │ ├── any_test.go │ │ ├── clone.go │ │ ├── clone_test.go │ │ ├── decode.go │ │ ├── decode_test.go │ │ ├── deprecated.go │ │ ├── discard.go │ │ ├── discard_test.go │ │ ├── encode.go │ │ ├── encode_test.go │ │ ├── equal.go │ │ ├── equal_test.go │ │ ├── extensions.go │ │ ├── extensions_test.go │ │ ├── lib.go │ │ ├── map_test.go │ │ ├── message_set.go │ │ ├── message_set_test.go │ │ ├── pointer_reflect.go │ │ ├── pointer_unsafe.go │ │ ├── properties.go │ │ ├── proto3_proto │ │ │ ├── proto3.pb.go │ │ │ └── proto3.proto │ │ ├── proto3_test.go │ │ ├── size2_test.go │ │ ├── size_test.go │ │ ├── table_marshal.go │ │ ├── table_merge.go │ │ ├── table_unmarshal.go │ │ ├── test_proto │ │ │ ├── test.pb.go │ │ │ └── test.proto │ │ ├── text.go │ │ ├── text_parser.go │ │ ├── text_parser_test.go │ │ └── text_test.go │ │ ├── protoc-gen-go │ │ ├── descriptor │ │ │ ├── descriptor.pb.go │ │ │ └── descriptor.proto │ │ ├── doc.go │ │ ├── generator │ │ │ ├── generator.go │ │ │ ├── internal │ │ │ │ └── remap │ │ │ │ │ ├── remap.go │ │ │ │ │ └── remap_test.go │ │ │ └── name_test.go │ │ ├── golden_test.go │ │ ├── grpc │ │ │ └── grpc.go │ │ ├── link_grpc.go │ │ ├── main.go │ │ ├── plugin │ │ │ ├── plugin.pb.go │ │ │ ├── plugin.pb.golden │ │ │ └── plugin.proto │ │ └── testdata │ │ │ ├── deprecated │ │ │ ├── deprecated.pb.go │ │ │ └── deprecated.proto │ │ │ ├── extension_base │ │ │ ├── extension_base.pb.go │ │ │ └── extension_base.proto │ │ │ ├── extension_extra │ │ │ ├── extension_extra.pb.go │ │ │ └── extension_extra.proto │ │ │ ├── extension_test.go │ │ │ ├── extension_user │ │ │ ├── extension_user.pb.go │ │ │ └── extension_user.proto │ │ │ ├── grpc │ │ │ ├── grpc.pb.go │ │ │ └── grpc.proto │ │ │ ├── import_public │ │ │ ├── a.pb.go │ │ │ ├── a.proto │ │ │ ├── b.pb.go │ │ │ ├── b.proto │ │ │ ├── importing │ │ │ │ ├── importing.pb.go │ │ │ │ └── importing.proto │ │ │ └── sub │ │ │ │ ├── a.pb.go │ │ │ │ ├── a.proto │ │ │ │ ├── b.pb.go │ │ │ │ └── b.proto │ │ │ ├── import_public_test.go │ │ │ ├── imports │ │ │ ├── fmt │ │ │ │ ├── m.pb.go │ │ │ │ └── m.proto │ │ │ ├── test_a_1 │ │ │ │ ├── m1.pb.go │ │ │ │ ├── m1.proto │ │ │ │ ├── m2.pb.go │ │ │ │ └── m2.proto │ │ │ ├── test_a_2 │ │ │ │ ├── m3.pb.go │ │ │ │ ├── m3.proto │ │ │ │ ├── m4.pb.go │ │ │ │ └── m4.proto │ │ │ ├── test_b_1 │ │ │ │ ├── m1.pb.go │ │ │ │ ├── m1.proto │ │ │ │ ├── m2.pb.go │ │ │ │ └── m2.proto │ │ │ ├── test_import_a1m1.pb.go │ │ │ ├── test_import_a1m1.proto │ │ │ ├── test_import_a1m2.pb.go │ │ │ ├── test_import_a1m2.proto │ │ │ ├── test_import_all.pb.go │ │ │ └── test_import_all.proto │ │ │ ├── main_test.go │ │ │ ├── multi │ │ │ ├── multi1.pb.go │ │ │ ├── multi1.proto │ │ │ ├── multi2.pb.go │ │ │ ├── multi2.proto │ │ │ ├── multi3.pb.go │ │ │ └── multi3.proto │ │ │ ├── my_test │ │ │ ├── test.pb.go │ │ │ └── test.proto │ │ │ └── proto3 │ │ │ ├── proto3.pb.go │ │ │ └── proto3.proto │ │ ├── ptypes │ │ ├── any.go │ │ ├── any │ │ │ ├── any.pb.go │ │ │ └── any.proto │ │ ├── any_test.go │ │ ├── doc.go │ │ ├── duration.go │ │ ├── duration │ │ │ ├── duration.pb.go │ │ │ └── duration.proto │ │ ├── duration_test.go │ │ ├── empty │ │ │ ├── empty.pb.go │ │ │ └── empty.proto │ │ ├── struct │ │ │ ├── struct.pb.go │ │ │ └── struct.proto │ │ ├── timestamp.go │ │ ├── timestamp │ │ │ ├── timestamp.pb.go │ │ │ └── timestamp.proto │ │ ├── timestamp_test.go │ │ └── wrappers │ │ │ ├── wrappers.pb.go │ │ │ └── wrappers.proto │ │ └── regenerate.sh ├── google │ ├── btree │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── btree.go │ │ ├── btree_mem.go │ │ └── btree_test.go │ ├── gofuzz │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── example_test.go │ │ ├── fuzz.go │ │ └── fuzz_test.go │ └── uuid │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dce.go │ │ ├── doc.go │ │ ├── go.mod │ │ ├── hash.go │ │ ├── json_test.go │ │ ├── marshal.go │ │ ├── node.go │ │ ├── node_js.go │ │ ├── node_net.go │ │ ├── seq_test.go │ │ ├── sql.go │ │ ├── sql_test.go │ │ ├── time.go │ │ ├── util.go │ │ ├── uuid.go │ │ ├── uuid_test.go │ │ ├── version1.go │ │ └── version4.go ├── googleapis │ └── gnostic │ │ ├── .gitignore │ │ ├── .travis-install.sh │ │ ├── .travis.yml │ │ ├── COMPILE-PROTOS.sh │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── OpenAPIv2 │ │ ├── OpenAPIv2.go │ │ ├── OpenAPIv2.pb.go │ │ ├── OpenAPIv2.proto │ │ ├── README.md │ │ └── openapi-2.0.json │ │ ├── OpenAPIv3 │ │ ├── OpenAPIv3.go │ │ ├── OpenAPIv3.pb.go │ │ ├── OpenAPIv3.proto │ │ ├── README.md │ │ ├── openapi-3.0.json │ │ └── schema-generator │ │ │ ├── 3.0.0.md │ │ │ ├── 3.0.1.md │ │ │ ├── README.md │ │ │ └── main.go │ │ ├── README.md │ │ ├── apps │ │ ├── disco │ │ │ ├── README.md │ │ │ ├── list.go │ │ │ ├── main.go │ │ │ ├── openapiv2.go │ │ │ └── openapiv3.go │ │ ├── petstore-builder │ │ │ ├── README.md │ │ │ ├── main.go │ │ │ ├── petstore-v2.go │ │ │ └── petstore-v3.go │ │ ├── report-messages │ │ │ ├── README.md │ │ │ └── main.go │ │ └── report │ │ │ ├── README.md │ │ │ └── main.go │ │ ├── compiler │ │ ├── README.md │ │ ├── context.go │ │ ├── error.go │ │ ├── extension-handler.go │ │ ├── helpers.go │ │ ├── main.go │ │ └── reader.go │ │ ├── discovery │ │ ├── README.md │ │ ├── discovery.go │ │ ├── discovery.json │ │ ├── discovery.pb.go │ │ ├── discovery.proto │ │ └── discovery.yaml │ │ ├── examples │ │ ├── README.md │ │ ├── errors │ │ │ ├── petstore-badproperties.yaml │ │ │ ├── petstore-missingversion.yaml │ │ │ └── petstore-unresolvedrefs.yaml │ │ ├── v2.0 │ │ │ ├── json │ │ │ │ ├── api-with-examples.json │ │ │ │ ├── petstore-expanded.json │ │ │ │ ├── petstore-minimal.json │ │ │ │ ├── petstore-separate │ │ │ │ │ ├── common │ │ │ │ │ │ └── Error.json │ │ │ │ │ └── spec │ │ │ │ │ │ ├── NewPet.json │ │ │ │ │ │ ├── Pet.json │ │ │ │ │ │ ├── parameters.json │ │ │ │ │ │ └── swagger.json │ │ │ │ ├── petstore-simple.json │ │ │ │ ├── petstore-with-external-docs.json │ │ │ │ ├── petstore.json │ │ │ │ └── uber.json │ │ │ └── yaml │ │ │ │ ├── api-with-examples.yaml │ │ │ │ ├── empty-v2.yaml │ │ │ │ ├── petstore-expanded.yaml │ │ │ │ ├── petstore-minimal.yaml │ │ │ │ ├── petstore-separate │ │ │ │ ├── common │ │ │ │ │ └── Error.yaml │ │ │ │ └── spec │ │ │ │ │ ├── NewPet.yaml │ │ │ │ │ ├── Pet.yaml │ │ │ │ │ ├── parameters.yaml │ │ │ │ │ ├── swagger.text │ │ │ │ │ └── swagger.yaml │ │ │ │ ├── petstore-simple.yaml │ │ │ │ ├── petstore-with-external-docs.yaml │ │ │ │ ├── petstore.yaml │ │ │ │ └── uber.yaml │ │ └── v3.0 │ │ │ ├── json │ │ │ └── petstore.json │ │ │ └── yaml │ │ │ ├── empty-v3.yaml │ │ │ └── petstore.yaml │ │ ├── extensions │ │ ├── COMPILE-EXTENSION.sh │ │ ├── README.md │ │ ├── extension.pb.go │ │ ├── extension.proto │ │ ├── extensions.go │ │ └── sample │ │ │ ├── Makefile │ │ │ ├── x-sampleone.json │ │ │ └── x-sampletwo.json │ │ ├── generate-gnostic │ │ ├── README.md │ │ ├── domain.go │ │ ├── generate-compiler.go │ │ ├── generate-extension.go │ │ ├── generate-extension_test.go │ │ ├── generate-proto.go │ │ ├── helpers.go │ │ ├── main.go │ │ ├── test │ │ │ ├── errors │ │ │ │ ├── x-extension-name-collision.errors │ │ │ │ └── x-unsupportedprimitives.errors │ │ │ ├── x-extension-name-collision.json │ │ │ └── x-unsupportedprimitives.json │ │ └── types.go │ │ ├── gnostic.go │ │ ├── gnostic_test.go │ │ ├── jsonschema │ │ ├── README.md │ │ ├── display.go │ │ ├── models.go │ │ ├── operations.go │ │ ├── reader.go │ │ ├── schema.json │ │ └── writer.go │ │ ├── jsonwriter │ │ ├── README.md │ │ └── writer.go │ │ ├── linters │ │ ├── README.md │ │ ├── go │ │ │ ├── gnostic-lint-descriptions │ │ │ │ ├── README.md │ │ │ │ ├── linter_v2.go │ │ │ │ ├── linter_v3.go │ │ │ │ └── main.go │ │ │ └── gnostic-lint-paths │ │ │ │ ├── README.md │ │ │ │ └── main.go │ │ ├── node │ │ │ ├── gnostic-lint-operations │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ └── gnostic-lint-operations.js │ │ │ └── gnostic-lint-responses │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── gnostic-lint-responses.js │ │ │ │ └── package.json │ │ └── swift │ │ │ └── gnostic-lint-responses-swift │ │ │ ├── Makefile │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ ├── Sources │ │ │ └── gnostic-lint-responses-swift │ │ │ │ ├── io.swift │ │ │ │ └── main.swift │ │ │ └── compile-protos │ │ ├── plugins │ │ ├── README.md │ │ ├── environment.go │ │ ├── gnostic-analyze │ │ │ ├── README.md │ │ │ ├── main.go │ │ │ ├── statistics │ │ │ │ ├── statsv2.go │ │ │ │ └── statsv3.go │ │ │ └── summarize │ │ │ │ └── main.go │ │ ├── gnostic-go-generator │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── examples │ │ │ │ ├── googleauth │ │ │ │ │ ├── README.md │ │ │ │ │ └── googleauth.go │ │ │ │ ├── v2.0 │ │ │ │ │ ├── apis_guru │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── main.go │ │ │ │ │ │ └── swagger.yaml │ │ │ │ │ ├── bookstore │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── bookstore.json │ │ │ │ │ │ ├── bookstore │ │ │ │ │ │ │ └── bookstore.go │ │ │ │ │ │ ├── bookstore_test.go │ │ │ │ │ │ └── service │ │ │ │ │ │ │ ├── app.yaml │ │ │ │ │ │ │ ├── init.go │ │ │ │ │ │ │ ├── main.go │ │ │ │ │ │ │ └── service.go │ │ │ │ │ ├── sample │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── sample.yaml │ │ │ │ │ │ ├── sample │ │ │ │ │ │ │ └── sample.go │ │ │ │ │ │ ├── sample_test.go │ │ │ │ │ │ └── service │ │ │ │ │ │ │ ├── app.yaml │ │ │ │ │ │ │ ├── init.go │ │ │ │ │ │ │ ├── main.go │ │ │ │ │ │ │ └── service.go │ │ │ │ │ └── xkcd │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── main.go │ │ │ │ │ │ ├── swagger.json │ │ │ │ │ │ └── xkcd │ │ │ │ │ │ └── xkcd.go │ │ │ │ └── v3.0 │ │ │ │ │ ├── bookstore │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bookstore.json │ │ │ │ │ ├── bookstore │ │ │ │ │ │ └── bookstore.go │ │ │ │ │ ├── bookstore_test.go │ │ │ │ │ └── service │ │ │ │ │ │ ├── app.yaml │ │ │ │ │ │ ├── init.go │ │ │ │ │ │ ├── main.go │ │ │ │ │ │ └── service.go │ │ │ │ │ └── urlshortener │ │ │ │ │ ├── README.md │ │ │ │ │ ├── main.go │ │ │ │ │ └── urlshortener │ │ │ │ │ └── urlshortener.go │ │ │ ├── goimports.go │ │ │ ├── language.go │ │ │ ├── linewriter.go │ │ │ ├── main.go │ │ │ ├── render_client.go │ │ │ ├── render_constants.go │ │ │ ├── render_provider.go │ │ │ ├── render_server.go │ │ │ ├── render_types.go │ │ │ └── renderer.go │ │ ├── gnostic-summary │ │ │ ├── README.md │ │ │ └── main.go │ │ ├── gnostic-swift-generator │ │ │ ├── Makefile │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ ├── Sources │ │ │ │ ├── Gnostic │ │ │ │ │ ├── OpenAPIv2.pb.swift │ │ │ │ │ ├── OpenAPIv3.pb.swift │ │ │ │ │ ├── discovery.pb.swift │ │ │ │ │ ├── plugin.pb.swift │ │ │ │ │ └── surface.pb.swift │ │ │ │ └── gnostic-swift-generator │ │ │ │ │ ├── RenderClient.swift │ │ │ │ │ ├── RenderFetch.swift │ │ │ │ │ ├── RenderServer.swift │ │ │ │ │ ├── RenderTypes.swift │ │ │ │ │ ├── Renderer.swift │ │ │ │ │ ├── helpers.swift │ │ │ │ │ ├── io.swift │ │ │ │ │ └── main.swift │ │ │ ├── compile-protos │ │ │ └── examples │ │ │ │ └── bookstore │ │ │ │ ├── Makefile │ │ │ │ ├── Package.swift │ │ │ │ ├── README.md │ │ │ │ ├── Sources │ │ │ │ └── Server │ │ │ │ │ └── main.swift │ │ │ │ ├── Tests │ │ │ │ ├── BookstoreTests │ │ │ │ │ └── BookstoreTests.swift │ │ │ │ └── LinuxMain.swift │ │ │ │ └── bookstore.json │ │ ├── gnostic-swift-sample │ │ │ ├── Makefile │ │ │ ├── Package.swift │ │ │ ├── Sources │ │ │ │ ├── Gnostic │ │ │ │ │ ├── OpenAPIv2.pb.swift │ │ │ │ │ ├── OpenAPIv3.pb.swift │ │ │ │ │ ├── discovery.pb.swift │ │ │ │ │ ├── plugin.pb.swift │ │ │ │ │ └── surface.pb.swift │ │ │ │ └── gnostic-swift-sample │ │ │ │ │ ├── io.swift │ │ │ │ │ └── main.swift │ │ │ └── compile-protos │ │ ├── plugin.pb.go │ │ └── plugin.proto │ │ ├── printer │ │ ├── README.md │ │ └── code.go │ │ ├── surface │ │ ├── README.md │ │ ├── field.go │ │ ├── model.go │ │ ├── model_openapiv2.go │ │ ├── model_openapiv3.go │ │ ├── surface.pb.go │ │ ├── surface.proto │ │ └── type.go │ │ ├── test │ │ ├── README.md │ │ ├── errors │ │ │ ├── invalid-plugin-invocation.errors │ │ │ ├── petstore-badproperties.errors │ │ │ ├── petstore-missingversion.errors │ │ │ └── petstore-unresolvedrefs.errors │ │ ├── library-example-with-ext.json │ │ ├── library-example-with-ext.text.out │ │ ├── v2.0 │ │ │ ├── json │ │ │ │ └── empty-v2.json │ │ │ ├── petstore.text │ │ │ └── yaml │ │ │ │ ├── petstore-separate │ │ │ │ └── spec │ │ │ │ │ └── swagger.text │ │ │ │ └── sample-petstore.out │ │ └── v3.0 │ │ │ ├── json │ │ │ └── empty-v3.json │ │ │ └── petstore.text │ │ └── tools │ │ ├── README.md │ │ ├── format-schema │ │ └── main.go │ │ └── j2y2j │ │ └── main.go ├── gregjones │ └── httpcache │ │ ├── .travis.yml │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── diskcache │ │ ├── diskcache.go │ │ └── diskcache_test.go │ │ ├── httpcache.go │ │ ├── httpcache_test.go │ │ ├── leveldbcache │ │ ├── leveldbcache.go │ │ └── leveldbcache_test.go │ │ ├── memcache │ │ ├── appengine.go │ │ ├── appengine_test.go │ │ ├── memcache.go │ │ └── memcache_test.go │ │ └── redis │ │ ├── redis.go │ │ └── redis_test.go ├── hashicorp │ └── golang-lru │ │ ├── .gitignore │ │ ├── 2q.go │ │ ├── 2q_test.go │ │ ├── LICENSE │ │ ├── README.md │ │ ├── arc.go │ │ ├── arc_test.go │ │ ├── doc.go │ │ ├── go.mod │ │ ├── lru.go │ │ ├── lru_test.go │ │ └── simplelru │ │ ├── lru.go │ │ ├── lru_interface.go │ │ └── lru_test.go ├── imdario │ └── mergo │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── issue17_test.go │ │ ├── issue23_test.go │ │ ├── issue33_test.go │ │ ├── issue38_test.go │ │ ├── issue50_test.go │ │ ├── issue52_test.go │ │ ├── issue61_test.go │ │ ├── issue64_test.go │ │ ├── issue66_test.go │ │ ├── map.go │ │ ├── merge.go │ │ ├── merge_appendslice_test.go │ │ ├── merge_test.go │ │ ├── mergo.go │ │ ├── mergo_test.go │ │ ├── pr80_test.go │ │ ├── pr81_test.go │ │ └── testdata │ │ ├── license.yml │ │ └── thing.yml ├── inconshreveable │ └── mousetrap │ │ ├── LICENSE │ │ ├── README.md │ │ ├── trap_others.go │ │ ├── trap_windows.go │ │ └── trap_windows_1.4.go ├── json-iterator │ └── go │ │ ├── .codecov.yml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── adapter.go │ │ ├── any.go │ │ ├── any_array.go │ │ ├── any_bool.go │ │ ├── any_float.go │ │ ├── any_int32.go │ │ ├── any_int64.go │ │ ├── any_invalid.go │ │ ├── any_nil.go │ │ ├── any_number.go │ │ ├── any_object.go │ │ ├── any_str.go │ │ ├── any_tests │ │ ├── jsoniter_any_array_test.go │ │ ├── jsoniter_any_bool_test.go │ │ ├── jsoniter_any_float_test.go │ │ ├── jsoniter_any_int_test.go │ │ ├── jsoniter_any_map_test.go │ │ ├── jsoniter_any_null_test.go │ │ ├── jsoniter_any_object_test.go │ │ ├── jsoniter_any_string_test.go │ │ ├── jsoniter_must_be_valid_test.go │ │ └── jsoniter_wrap_test.go │ │ ├── any_uint32.go │ │ ├── any_uint64.go │ │ ├── api_tests │ │ ├── config_test.go │ │ ├── decoder_test.go │ │ ├── encoder_18_test.go │ │ ├── encoder_test.go │ │ └── marshal_indent_test.go │ │ ├── benchmarks │ │ ├── encode_string_test.go │ │ └── jsoniter_large_file_test.go │ │ ├── build.sh │ │ ├── config.go │ │ ├── example_test.go │ │ ├── extension_tests │ │ ├── decoder_test.go │ │ └── extension_test.go │ │ ├── extra │ │ ├── binary_as_string_codec.go │ │ ├── binary_as_string_codec_test.go │ │ ├── fuzzy_decoder.go │ │ ├── fuzzy_decoder_test.go │ │ ├── naming_strategy.go │ │ ├── naming_strategy_test.go │ │ ├── privat_fields.go │ │ ├── private_fields_test.go │ │ ├── time_as_int64_codec.go │ │ └── time_as_int64_codec_test.go │ │ ├── fuzzy_mode_convert_table.md │ │ ├── iter.go │ │ ├── iter_array.go │ │ ├── iter_float.go │ │ ├── iter_int.go │ │ ├── iter_object.go │ │ ├── iter_skip.go │ │ ├── iter_skip_sloppy.go │ │ ├── iter_skip_sloppy_test.go │ │ ├── iter_skip_strict.go │ │ ├── iter_str.go │ │ ├── jsoniter.go │ │ ├── misc_tests │ │ ├── jsoniter_array_test.go │ │ ├── jsoniter_bool_test.go │ │ ├── jsoniter_float_test.go │ │ ├── jsoniter_int_test.go │ │ ├── jsoniter_interface_test.go │ │ ├── jsoniter_iterator_test.go │ │ ├── jsoniter_map_test.go │ │ ├── jsoniter_nested_test.go │ │ ├── jsoniter_null_test.go │ │ ├── jsoniter_object_test.go │ │ └── jsoniter_raw_message_test.go │ │ ├── pool.go │ │ ├── reflect.go │ │ ├── reflect_array.go │ │ ├── reflect_dynamic.go │ │ ├── reflect_extension.go │ │ ├── reflect_json_number.go │ │ ├── reflect_json_raw_message.go │ │ ├── reflect_map.go │ │ ├── reflect_marshaler.go │ │ ├── reflect_native.go │ │ ├── reflect_optional.go │ │ ├── reflect_slice.go │ │ ├── reflect_struct_decoder.go │ │ ├── reflect_struct_encoder.go │ │ ├── skip_tests │ │ ├── array_test.go │ │ ├── float64_test.go │ │ ├── jsoniter_skip_test.go │ │ ├── skip_test.go │ │ ├── string_test.go │ │ └── struct_test.go │ │ ├── stream.go │ │ ├── stream_float.go │ │ ├── stream_int.go │ │ ├── stream_str.go │ │ ├── stream_test.go │ │ ├── test.sh │ │ ├── type_tests │ │ ├── array_test.go │ │ ├── builtin_test.go │ │ ├── map_key_test.go │ │ ├── map_test.go │ │ ├── marshaler_string_test.go │ │ ├── marshaler_struct_test.go │ │ ├── slice_test.go │ │ ├── struct_embedded_test.go │ │ ├── struct_field_case_test.go │ │ ├── struct_tags_test.go │ │ ├── struct_test.go │ │ ├── text_marshaler_string_test.go │ │ ├── text_marshaler_struct_test.go │ │ └── type_test.go │ │ └── value_tests │ │ ├── array_test.go │ │ ├── bool_test.go │ │ ├── eface_test.go │ │ ├── error_test.go │ │ ├── float_test.go │ │ ├── iface_test.go │ │ ├── int_test.go │ │ ├── invalid_test.go │ │ ├── map_test.go │ │ ├── marshaler_test.go │ │ ├── number_test.go │ │ ├── ptr_test.go │ │ ├── raw_message_test.go │ │ ├── slice_test.go │ │ ├── string_test.go │ │ ├── struct_test.go │ │ └── value_test.go ├── jteeuwen │ └── go-bindata │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── asset.go │ │ ├── bytewriter.go │ │ ├── config.go │ │ ├── convert.go │ │ ├── convert_test.go │ │ ├── debug.go │ │ ├── doc.go │ │ ├── go-bindata │ │ ├── AppendSliceValue.go │ │ ├── main.go │ │ └── version.go │ │ ├── release.go │ │ ├── restore.go │ │ ├── stringwriter.go │ │ ├── testdata │ │ ├── Makefile │ │ ├── dupname │ │ │ ├── foo │ │ │ │ └── bar │ │ │ └── foo_bar │ │ ├── in │ │ │ ├── a │ │ │ │ └── test.asset │ │ │ ├── b │ │ │ │ └── test.asset │ │ │ ├── c │ │ │ │ └── test.asset │ │ │ └── test.asset │ │ ├── out │ │ │ ├── compress-memcopy.go │ │ │ ├── compress-nomemcopy.go │ │ │ ├── debug.go │ │ │ ├── debug.go-bindata │ │ │ ├── nocompress-memcopy.go │ │ │ └── nocompress-nomemcopy.go │ │ ├── symlinkFile │ │ │ └── file1 │ │ ├── symlinkParent │ │ │ └── symlinkTarget │ │ ├── symlinkRecursiveParent │ │ │ ├── file1 │ │ │ └── symlinkTarget │ │ └── symlinkSrc │ │ │ ├── file1 │ │ │ ├── file2 │ │ │ ├── file3 │ │ │ └── file4 │ │ └── toc.go ├── konsorten │ └── go-windows-terminal-sequences │ │ ├── LICENSE │ │ ├── README.md │ │ ├── go.mod │ │ ├── sequences.go │ │ └── sequences_test.go ├── matttproud │ └── golang_protobuf_extensions │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile.TRAVIS │ │ ├── NOTICE │ │ ├── README.md │ │ ├── ext │ │ └── moved.go │ │ ├── pbtest │ │ └── deleted.go │ │ ├── pbutil │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── all_test.go │ │ ├── decode.go │ │ ├── decode_test.go │ │ ├── doc.go │ │ ├── encode.go │ │ └── encode_test.go │ │ └── testdata │ │ ├── README.THIRD_PARTY │ │ ├── test.pb.go │ │ └── test.proto ├── modern-go │ ├── concurrent │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── executor.go │ │ ├── go_above_19.go │ │ ├── go_below_19.go │ │ ├── log.go │ │ ├── map_test.go │ │ ├── test.sh │ │ ├── unbounded_executor.go │ │ └── unbounded_executor_test.go │ └── reflect2 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── go_above_17.go │ │ ├── go_above_19.go │ │ ├── go_below_17.go │ │ ├── go_below_19.go │ │ ├── reflect2.go │ │ ├── reflect2_amd64.s │ │ ├── reflect2_kind.go │ │ ├── relfect2_386.s │ │ ├── relfect2_amd64p32.s │ │ ├── relfect2_arm.s │ │ ├── relfect2_arm64.s │ │ ├── relfect2_mips64x.s │ │ ├── relfect2_mipsx.s │ │ ├── relfect2_ppc64x.s │ │ ├── relfect2_s390x.s │ │ ├── safe_field.go │ │ ├── safe_map.go │ │ ├── safe_slice.go │ │ ├── safe_struct.go │ │ ├── safe_type.go │ │ ├── test.sh │ │ ├── type_map.go │ │ ├── unsafe_array.go │ │ ├── unsafe_eface.go │ │ ├── unsafe_field.go │ │ ├── unsafe_iface.go │ │ ├── unsafe_link.go │ │ ├── unsafe_map.go │ │ ├── unsafe_ptr.go │ │ ├── unsafe_slice.go │ │ ├── unsafe_struct.go │ │ └── unsafe_type.go ├── openshift │ ├── api │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── OWNERS │ │ ├── README.md │ │ ├── apps │ │ │ ├── OWNERS │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── consts.go │ │ │ │ ├── deprecated_consts.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── authorization │ │ │ ├── OWNERS │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── codec.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── build │ │ │ ├── OWNERS │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── consts.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── config │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── stringsource.go │ │ │ │ ├── stringsource_test.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── glide.lock │ │ ├── glide.yaml │ │ ├── hack │ │ │ ├── empty.txt │ │ │ ├── lib │ │ │ │ └── init.sh │ │ │ ├── update-deepcopy.sh │ │ │ ├── update-deps.sh │ │ │ ├── update-protobuf.sh │ │ │ ├── update-swagger-docs.sh │ │ │ ├── verify-deepcopy.sh │ │ │ ├── verify-protobuf.sh │ │ │ └── verify-swagger-docs.sh │ │ ├── image │ │ │ ├── OWNERS │ │ │ ├── docker10 │ │ │ │ ├── doc.go │ │ │ │ ├── dockertypes.go │ │ │ │ ├── register.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── dockerpre012 │ │ │ │ ├── deepcopy.go │ │ │ │ ├── doc.go │ │ │ │ ├── dockertypes.go │ │ │ │ ├── register.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── install.go │ │ ├── kubecontrolplane │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── legacyconfig │ │ │ └── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── serialization.go │ │ │ │ ├── stringsource.go │ │ │ │ ├── stringsource_test.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── network │ │ │ ├── OWNERS │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── constants.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── oauth │ │ │ ├── OWNERS │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── openshiftcontrolplane │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── operator │ │ │ ├── install.go │ │ │ └── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── osin │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── pkg │ │ │ ├── serialization │ │ │ │ └── serialization.go │ │ │ └── testing │ │ │ │ ├── deepcopy_test.go │ │ │ │ └── doc.go │ │ ├── project │ │ │ ├── OWNERS │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── quota │ │ │ ├── OWNERS │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── route │ │ │ ├── OWNERS │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── security │ │ │ ├── OWNERS │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── servicecertsigner │ │ │ ├── install.go │ │ │ └── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── template │ │ │ ├── OWNERS │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── codec.go │ │ │ │ ├── consts.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── tools │ │ │ └── genswaggertypedocs │ │ │ │ └── swagger_type_docs.go │ │ ├── user │ │ │ ├── OWNERS │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ └── webconsole │ │ │ ├── install.go │ │ │ └── v1 │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── client-go │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── INSTALL.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── OWNERS │ │ ├── README.md │ │ ├── apps │ │ │ ├── clientset │ │ │ │ └── versioned │ │ │ │ │ ├── clientset.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── clientset_generated.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ │ ├── scheme │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ │ └── typed │ │ │ │ │ └── apps │ │ │ │ │ └── v1 │ │ │ │ │ ├── apps_client.go │ │ │ │ │ ├── deploymentconfig.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_apps_client.go │ │ │ │ │ └── fake_deploymentconfig.go │ │ │ │ │ └── generated_expansion.go │ │ │ ├── informers │ │ │ │ └── externalversions │ │ │ │ │ ├── apps │ │ │ │ │ ├── interface.go │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── deploymentconfig.go │ │ │ │ │ │ └── interface.go │ │ │ │ │ ├── factory.go │ │ │ │ │ ├── generic.go │ │ │ │ │ └── internalinterfaces │ │ │ │ │ └── factory_interfaces.go │ │ │ └── listers │ │ │ │ └── apps │ │ │ │ └── v1 │ │ │ │ ├── deploymentconfig.go │ │ │ │ └── expansion_generated.go │ │ ├── authorization │ │ │ ├── clientset │ │ │ │ └── versioned │ │ │ │ │ ├── clientset.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── clientset_generated.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ │ ├── scheme │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ │ └── typed │ │ │ │ │ └── authorization │ │ │ │ │ └── v1 │ │ │ │ │ ├── authorization_client.go │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_authorization_client.go │ │ │ │ │ ├── fake_clusterrole.go │ │ │ │ │ ├── fake_clusterrolebinding.go │ │ │ │ │ ├── fake_localresourceaccessreview.go │ │ │ │ │ ├── fake_localsubjectaccessreview.go │ │ │ │ │ ├── fake_resourceaccessreview.go │ │ │ │ │ ├── fake_role.go │ │ │ │ │ ├── fake_rolebinding.go │ │ │ │ │ ├── fake_rolebindingrestriction.go │ │ │ │ │ ├── fake_selfsubjectrulesreview.go │ │ │ │ │ ├── fake_subjectaccessreview.go │ │ │ │ │ └── fake_subjectrulesreview.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── localresourceaccessreview.go │ │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ │ ├── resourceaccessreview.go │ │ │ │ │ ├── role.go │ │ │ │ │ ├── rolebinding.go │ │ │ │ │ ├── rolebindingrestriction.go │ │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ │ ├── subjectaccessreview.go │ │ │ │ │ └── subjectrulesreview.go │ │ │ ├── informers │ │ │ │ └── externalversions │ │ │ │ │ ├── authorization │ │ │ │ │ ├── interface.go │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ ├── role.go │ │ │ │ │ │ ├── rolebinding.go │ │ │ │ │ │ └── rolebindingrestriction.go │ │ │ │ │ ├── factory.go │ │ │ │ │ ├── generic.go │ │ │ │ │ └── internalinterfaces │ │ │ │ │ └── factory_interfaces.go │ │ │ └── listers │ │ │ │ └── authorization │ │ │ │ └── v1 │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── role.go │ │ │ │ ├── rolebinding.go │ │ │ │ └── rolebindingrestriction.go │ │ ├── build │ │ │ ├── clientset │ │ │ │ └── versioned │ │ │ │ │ ├── clientset.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── clientset_generated.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ │ ├── scheme │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ │ └── typed │ │ │ │ │ └── build │ │ │ │ │ └── v1 │ │ │ │ │ ├── build.go │ │ │ │ │ ├── build_client.go │ │ │ │ │ ├── buildconfig.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_build.go │ │ │ │ │ ├── fake_build_client.go │ │ │ │ │ └── fake_buildconfig.go │ │ │ │ │ └── generated_expansion.go │ │ │ ├── informers │ │ │ │ └── externalversions │ │ │ │ │ ├── build │ │ │ │ │ ├── interface.go │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── build.go │ │ │ │ │ │ ├── buildconfig.go │ │ │ │ │ │ └── interface.go │ │ │ │ │ ├── factory.go │ │ │ │ │ ├── generic.go │ │ │ │ │ └── internalinterfaces │ │ │ │ │ └── factory_interfaces.go │ │ │ └── listers │ │ │ │ └── build │ │ │ │ └── v1 │ │ │ │ ├── build.go │ │ │ │ ├── buildconfig.go │ │ │ │ └── expansion_generated.go │ │ ├── config │ │ │ ├── clientset │ │ │ │ └── versioned │ │ │ │ │ ├── clientset.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── clientset_generated.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ │ ├── scheme │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ │ └── typed │ │ │ │ │ └── config │ │ │ │ │ └── v1 │ │ │ │ │ ├── config_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_config_client.go │ │ │ │ │ └── fake_image.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── image.go │ │ │ ├── informers │ │ │ │ └── externalversions │ │ │ │ │ ├── config │ │ │ │ │ ├── interface.go │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── image.go │ │ │ │ │ │ └── interface.go │ │ │ │ │ ├── factory.go │ │ │ │ │ ├── generic.go │ │ │ │ │ └── internalinterfaces │ │ │ │ │ └── factory_interfaces.go │ │ │ └── listers │ │ │ │ └── config │ │ │ │ └── v1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── image.go │ │ ├── examples │ │ │ └── build │ │ │ │ ├── README.md │ │ │ │ └── main.go │ │ ├── glide.lock │ │ ├── glide.yaml │ │ ├── hack │ │ │ ├── boilerplate.txt │ │ │ ├── update-codegen.sh │ │ │ ├── update-deps.sh │ │ │ └── verify-codegen.sh │ │ ├── image │ │ │ ├── clientset │ │ │ │ └── versioned │ │ │ │ │ ├── clientset.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── clientset_generated.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ │ ├── scheme │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ │ └── typed │ │ │ │ │ └── image │ │ │ │ │ └── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_image.go │ │ │ │ │ ├── fake_image_client.go │ │ │ │ │ ├── fake_imagesignature.go │ │ │ │ │ ├── fake_imagestream.go │ │ │ │ │ ├── fake_imagestreamimage.go │ │ │ │ │ ├── fake_imagestreamimport.go │ │ │ │ │ ├── fake_imagestreammapping.go │ │ │ │ │ └── fake_imagestreamtag.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── image.go │ │ │ │ │ ├── image_client.go │ │ │ │ │ ├── imagesignature.go │ │ │ │ │ ├── imagestream.go │ │ │ │ │ ├── imagestreamimage.go │ │ │ │ │ ├── imagestreamimport.go │ │ │ │ │ ├── imagestreammapping.go │ │ │ │ │ └── imagestreamtag.go │ │ │ ├── informers │ │ │ │ └── externalversions │ │ │ │ │ ├── factory.go │ │ │ │ │ ├── generic.go │ │ │ │ │ ├── image │ │ │ │ │ ├── interface.go │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── image.go │ │ │ │ │ │ ├── imagestream.go │ │ │ │ │ │ └── interface.go │ │ │ │ │ └── internalinterfaces │ │ │ │ │ └── factory_interfaces.go │ │ │ └── listers │ │ │ │ └── image │ │ │ │ └── v1 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── image.go │ │ │ │ ├── imagestream.go │ │ │ │ └── imagestreamtag.go │ │ ├── network │ │ │ ├── clientset │ │ │ │ └── versioned │ │ │ │ │ ├── clientset.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── clientset_generated.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ │ ├── scheme │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ │ └── typed │ │ │ │ │ └── network │ │ │ │ │ └── v1 │ │ │ │ │ ├── clusternetwork.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── egressnetworkpolicy.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_clusternetwork.go │ │ │ │ │ ├── fake_egressnetworkpolicy.go │ │ │ │ │ ├── fake_hostsubnet.go │ │ │ │ │ ├── fake_netnamespace.go │ │ │ │ │ └── fake_network_client.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── hostsubnet.go │ │ │ │ │ ├── netnamespace.go │ │ │ │ │ └── network_client.go │ │ │ ├── informers │ │ │ │ └── externalversions │ │ │ │ │ ├── factory.go │ │ │ │ │ ├── generic.go │ │ │ │ │ ├── internalinterfaces │ │ │ │ │ └── factory_interfaces.go │ │ │ │ │ └── network │ │ │ │ │ ├── interface.go │ │ │ │ │ └── v1 │ │ │ │ │ ├── clusternetwork.go │ │ │ │ │ ├── egressnetworkpolicy.go │ │ │ │ │ ├── hostsubnet.go │ │ │ │ │ ├── interface.go │ │ │ │ │ └── netnamespace.go │ │ │ └── listers │ │ │ │ └── network │ │ │ │ └── v1 │ │ │ │ ├── clusternetwork.go │ │ │ │ ├── egressnetworkpolicy.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── hostsubnet.go │ │ │ │ └── netnamespace.go │ │ ├── oauth │ │ │ ├── clientset │ │ │ │ └── versioned │ │ │ │ │ ├── clientset.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── clientset_generated.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ │ ├── scheme │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ │ └── typed │ │ │ │ │ └── oauth │ │ │ │ │ └── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_oauth_client.go │ │ │ │ │ ├── fake_oauthaccesstoken.go │ │ │ │ │ ├── fake_oauthauthorizetoken.go │ │ │ │ │ ├── fake_oauthclient.go │ │ │ │ │ └── fake_oauthclientauthorization.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── oauth_client.go │ │ │ │ │ ├── oauthaccesstoken.go │ │ │ │ │ ├── oauthauthorizetoken.go │ │ │ │ │ ├── oauthclient.go │ │ │ │ │ └── oauthclientauthorization.go │ │ │ ├── informers │ │ │ │ └── externalversions │ │ │ │ │ ├── factory.go │ │ │ │ │ ├── generic.go │ │ │ │ │ ├── internalinterfaces │ │ │ │ │ └── factory_interfaces.go │ │ │ │ │ └── oauth │ │ │ │ │ ├── interface.go │ │ │ │ │ └── v1 │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── oauthaccesstoken.go │ │ │ │ │ ├── oauthauthorizetoken.go │ │ │ │ │ ├── oauthclient.go │ │ │ │ │ └── oauthclientauthorization.go │ │ │ └── listers │ │ │ │ └── oauth │ │ │ │ └── v1 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── oauthaccesstoken.go │ │ │ │ ├── oauthauthorizetoken.go │ │ │ │ ├── oauthclient.go │ │ │ │ └── oauthclientauthorization.go │ │ ├── project │ │ │ ├── clientset │ │ │ │ └── versioned │ │ │ │ │ ├── clientset.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── clientset_generated.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ │ ├── scheme │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ │ └── typed │ │ │ │ │ └── project │ │ │ │ │ └── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_project.go │ │ │ │ │ ├── fake_project_client.go │ │ │ │ │ └── fake_projectrequest.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── project.go │ │ │ │ │ ├── project_client.go │ │ │ │ │ └── projectrequest.go │ │ │ ├── informers │ │ │ │ └── externalversions │ │ │ │ │ ├── factory.go │ │ │ │ │ ├── generic.go │ │ │ │ │ ├── internalinterfaces │ │ │ │ │ └── factory_interfaces.go │ │ │ │ │ └── project │ │ │ │ │ ├── interface.go │ │ │ │ │ └── v1 │ │ │ │ │ ├── interface.go │ │ │ │ │ └── project.go │ │ │ └── listers │ │ │ │ └── project │ │ │ │ └── v1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── project.go │ │ ├── quota │ │ │ ├── clientset │ │ │ │ └── versioned │ │ │ │ │ ├── clientset.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── clientset_generated.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ │ ├── scheme │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ │ └── typed │ │ │ │ │ └── quota │ │ │ │ │ └── v1 │ │ │ │ │ ├── appliedclusterresourcequota.go │ │ │ │ │ ├── clusterresourcequota.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_appliedclusterresourcequota.go │ │ │ │ │ ├── fake_clusterresourcequota.go │ │ │ │ │ └── fake_quota_client.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── quota_client.go │ │ │ ├── informers │ │ │ │ └── externalversions │ │ │ │ │ ├── factory.go │ │ │ │ │ ├── generic.go │ │ │ │ │ ├── internalinterfaces │ │ │ │ │ └── factory_interfaces.go │ │ │ │ │ └── quota │ │ │ │ │ ├── interface.go │ │ │ │ │ └── v1 │ │ │ │ │ ├── clusterresourcequota.go │ │ │ │ │ └── interface.go │ │ │ └── listers │ │ │ │ └── quota │ │ │ │ └── v1 │ │ │ │ ├── appliedclusterresourcequota.go │ │ │ │ ├── clusterresourcequota.go │ │ │ │ └── expansion_generated.go │ │ ├── route │ │ │ ├── clientset │ │ │ │ └── versioned │ │ │ │ │ ├── clientset.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── clientset_generated.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ │ ├── scheme │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ │ └── typed │ │ │ │ │ └── route │ │ │ │ │ └── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_route.go │ │ │ │ │ └── fake_route_client.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── route.go │ │ │ │ │ └── route_client.go │ │ │ ├── informers │ │ │ │ └── externalversions │ │ │ │ │ ├── factory.go │ │ │ │ │ ├── generic.go │ │ │ │ │ ├── internalinterfaces │ │ │ │ │ └── factory_interfaces.go │ │ │ │ │ └── route │ │ │ │ │ ├── interface.go │ │ │ │ │ └── v1 │ │ │ │ │ ├── interface.go │ │ │ │ │ └── route.go │ │ │ └── listers │ │ │ │ └── route │ │ │ │ └── v1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── route.go │ │ ├── security │ │ │ ├── clientset │ │ │ │ └── versioned │ │ │ │ │ ├── clientset.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── clientset_generated.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ │ ├── scheme │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ │ └── typed │ │ │ │ │ └── security │ │ │ │ │ └── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_podsecuritypolicyreview.go │ │ │ │ │ ├── fake_podsecuritypolicyselfsubjectreview.go │ │ │ │ │ ├── fake_podsecuritypolicysubjectreview.go │ │ │ │ │ ├── fake_rangeallocation.go │ │ │ │ │ ├── fake_security_client.go │ │ │ │ │ └── fake_securitycontextconstraints.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── podsecuritypolicyreview.go │ │ │ │ │ ├── podsecuritypolicyselfsubjectreview.go │ │ │ │ │ ├── podsecuritypolicysubjectreview.go │ │ │ │ │ ├── rangeallocation.go │ │ │ │ │ ├── security_client.go │ │ │ │ │ └── securitycontextconstraints.go │ │ │ ├── informers │ │ │ │ └── externalversions │ │ │ │ │ ├── factory.go │ │ │ │ │ ├── generic.go │ │ │ │ │ ├── internalinterfaces │ │ │ │ │ └── factory_interfaces.go │ │ │ │ │ └── security │ │ │ │ │ ├── interface.go │ │ │ │ │ └── v1 │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── rangeallocation.go │ │ │ │ │ └── securitycontextconstraints.go │ │ │ └── listers │ │ │ │ └── security │ │ │ │ └── v1 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── rangeallocation.go │ │ │ │ └── securitycontextconstraints.go │ │ ├── servicecertsigner │ │ │ ├── clientset │ │ │ │ └── versioned │ │ │ │ │ ├── clientset.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── clientset_generated.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ │ ├── scheme │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ │ └── typed │ │ │ │ │ └── servicecertsigner │ │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_servicecertsigner_client.go │ │ │ │ │ └── fake_servicecertsigneroperatorconfig.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── servicecertsigner_client.go │ │ │ │ │ └── servicecertsigneroperatorconfig.go │ │ │ ├── informers │ │ │ │ └── externalversions │ │ │ │ │ ├── factory.go │ │ │ │ │ ├── generic.go │ │ │ │ │ ├── internalinterfaces │ │ │ │ │ └── factory_interfaces.go │ │ │ │ │ └── servicecertsigner │ │ │ │ │ ├── interface.go │ │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── interface.go │ │ │ │ │ └── servicecertsigneroperatorconfig.go │ │ │ └── listers │ │ │ │ └── servicecertsigner │ │ │ │ └── v1alpha1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── servicecertsigneroperatorconfig.go │ │ ├── template │ │ │ ├── clientset │ │ │ │ └── versioned │ │ │ │ │ ├── clientset.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── clientset_generated.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ │ ├── scheme │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ │ └── typed │ │ │ │ │ └── template │ │ │ │ │ └── v1 │ │ │ │ │ ├── brokertemplateinstance.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_brokertemplateinstance.go │ │ │ │ │ ├── fake_template.go │ │ │ │ │ ├── fake_template_client.go │ │ │ │ │ └── fake_templateinstance.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── template.go │ │ │ │ │ ├── template_client.go │ │ │ │ │ └── templateinstance.go │ │ │ ├── informers │ │ │ │ └── externalversions │ │ │ │ │ ├── factory.go │ │ │ │ │ ├── generic.go │ │ │ │ │ ├── internalinterfaces │ │ │ │ │ └── factory_interfaces.go │ │ │ │ │ └── template │ │ │ │ │ ├── interface.go │ │ │ │ │ └── v1 │ │ │ │ │ ├── brokertemplateinstance.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── template.go │ │ │ │ │ └── templateinstance.go │ │ │ └── listers │ │ │ │ └── template │ │ │ │ └── v1 │ │ │ │ ├── brokertemplateinstance.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── template.go │ │ │ │ ├── template_expansion.go │ │ │ │ └── templateinstance.go │ │ └── user │ │ │ ├── clientset │ │ │ └── versioned │ │ │ │ ├── clientset.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── clientset_generated.go │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ │ ├── scheme │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ │ └── typed │ │ │ │ └── user │ │ │ │ └── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_group.go │ │ │ │ ├── fake_identity.go │ │ │ │ ├── fake_user.go │ │ │ │ ├── fake_user_client.go │ │ │ │ └── fake_useridentitymapping.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── group.go │ │ │ │ ├── identity.go │ │ │ │ ├── user.go │ │ │ │ ├── user_client.go │ │ │ │ └── useridentitymapping.go │ │ │ ├── informers │ │ │ └── externalversions │ │ │ │ ├── factory.go │ │ │ │ ├── generic.go │ │ │ │ ├── internalinterfaces │ │ │ │ └── factory_interfaces.go │ │ │ │ └── user │ │ │ │ ├── interface.go │ │ │ │ └── v1 │ │ │ │ ├── group.go │ │ │ │ ├── identity.go │ │ │ │ ├── interface.go │ │ │ │ └── user.go │ │ │ └── listers │ │ │ └── user │ │ │ └── v1 │ │ │ ├── expansion_generated.go │ │ │ ├── group.go │ │ │ ├── identity.go │ │ │ └── user.go │ └── library-go │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── OWNERS │ │ ├── README.md │ │ ├── glide.lock │ │ ├── glide.yaml │ │ ├── hack │ │ ├── update-deps.sh │ │ └── verify-golint.sh │ │ └── pkg │ │ ├── assets │ │ ├── assets.go │ │ ├── assets_test.go │ │ └── template.go │ │ ├── config │ │ ├── client │ │ │ └── client_config.go │ │ ├── configdefaults │ │ │ └── config_default.go │ │ ├── helpers │ │ │ ├── client.go │ │ │ ├── config_refs.go │ │ │ └── general.go │ │ ├── leaderelection │ │ │ └── leaderelection.go │ │ └── validation │ │ │ ├── general.go │ │ │ └── serving_info.go │ │ ├── controller │ │ ├── controllercmd │ │ │ ├── builder.go │ │ │ ├── cmd.go │ │ │ └── flags.go │ │ ├── ownerref.go │ │ └── ownerref_test.go │ │ ├── crypto │ │ ├── crypto.go │ │ └── crypto_test.go │ │ ├── git │ │ ├── OWNERS │ │ ├── doc.go │ │ ├── git.go │ │ ├── repository.go │ │ └── repository_test.go │ │ ├── image │ │ ├── internal │ │ │ ├── digest │ │ │ │ ├── digest.go │ │ │ │ ├── digester.go │ │ │ │ └── doc.go │ │ │ └── reference │ │ │ │ ├── doc.go │ │ │ │ ├── reference.go │ │ │ │ └── regexp.go │ │ └── reference │ │ │ ├── reference.go │ │ │ └── reference_test.go │ │ ├── network │ │ └── networkapihelpers │ │ │ └── annotations.go │ │ ├── operator │ │ ├── render │ │ │ ├── options │ │ │ │ ├── config.go │ │ │ │ ├── generic.go │ │ │ │ └── manifest.go │ │ │ └── render.go │ │ ├── resource │ │ │ ├── resourceapply │ │ │ │ ├── apiregistration.go │ │ │ │ ├── apps.go │ │ │ │ ├── core.go │ │ │ │ ├── core_test.go │ │ │ │ ├── generic.go │ │ │ │ ├── generic_test.go │ │ │ │ ├── rbac.go │ │ │ │ └── storage.go │ │ │ ├── resourcemerge │ │ │ │ ├── apps.go │ │ │ │ ├── generic_config_merger.go │ │ │ │ ├── generic_config_merger_test.go │ │ │ │ └── object_merger.go │ │ │ └── resourceread │ │ │ │ ├── apiextensions.go │ │ │ │ ├── apps.go │ │ │ │ ├── core.go │ │ │ │ ├── rbac.go │ │ │ │ └── storage.go │ │ ├── staticpod │ │ │ ├── installerpod │ │ │ │ ├── cmd.go │ │ │ │ └── cmd_test.go │ │ │ └── staticpodcontroller │ │ │ │ ├── deployment_controller.go │ │ │ │ ├── installer_controller.go │ │ │ │ ├── installer_controller_test.go │ │ │ │ ├── interfaces.go │ │ │ │ └── node_controller.go │ │ ├── status │ │ │ └── controller.go │ │ ├── v1alpha1helpers │ │ │ ├── helper_test.go │ │ │ └── helpers.go │ │ └── versioning │ │ │ ├── compare.go │ │ │ └── compare_test.go │ │ └── serviceability │ │ ├── logrus.go │ │ ├── panic.go │ │ ├── panic_test.go │ │ ├── profiler.go │ │ ├── sentry.go │ │ └── serviceability.go ├── pborman │ └── uuid │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dce.go │ │ ├── doc.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── hash.go │ │ ├── marshal.go │ │ ├── marshal_test.go │ │ ├── node.go │ │ ├── seq_test.go │ │ ├── sql.go │ │ ├── sql_test.go │ │ ├── time.go │ │ ├── util.go │ │ ├── uuid.go │ │ ├── uuid_test.go │ │ ├── version1.go │ │ └── version4.go ├── peterbourgon │ └── diskv │ │ ├── LICENSE │ │ ├── README.md │ │ ├── basic_test.go │ │ ├── compression.go │ │ ├── compression_test.go │ │ ├── diskv.go │ │ ├── examples │ │ ├── advanced-transform │ │ │ └── advanced-transform.go │ │ ├── content-addressable-store │ │ │ └── cas.go │ │ ├── git-like-store │ │ │ └── git-like-store.go │ │ └── super-simple-store │ │ │ └── super-simple-store.go │ │ ├── import_test.go │ │ ├── index.go │ │ ├── index_test.go │ │ ├── issues_test.go │ │ ├── keys_test.go │ │ ├── speed_test.go │ │ └── stream_test.go ├── pkg │ ├── errors │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── bench_test.go │ │ ├── errors.go │ │ ├── errors_test.go │ │ ├── example_test.go │ │ ├── format_test.go │ │ ├── stack.go │ │ └── stack_test.go │ └── profile │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── example_test.go │ │ ├── mutex.go │ │ ├── mutex17.go │ │ ├── profile.go │ │ ├── profile_test.go │ │ ├── trace.go │ │ ├── trace16.go │ │ └── trace_test.go ├── prometheus │ ├── client_golang │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── MAINTAINERS.md │ │ ├── Makefile │ │ ├── Makefile.common │ │ ├── NOTICE │ │ ├── README.md │ │ ├── VERSION │ │ ├── api │ │ │ ├── client.go │ │ │ ├── client_test.go │ │ │ └── prometheus │ │ │ │ └── v1 │ │ │ │ ├── api.go │ │ │ │ └── api_test.go │ │ ├── examples │ │ │ ├── random │ │ │ │ └── main.go │ │ │ └── simple │ │ │ │ └── main.go │ │ └── prometheus │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── benchmark_test.go │ │ │ ├── collector.go │ │ │ ├── collector_test.go │ │ │ ├── counter.go │ │ │ ├── counter_test.go │ │ │ ├── desc.go │ │ │ ├── desc_test.go │ │ │ ├── doc.go │ │ │ ├── example_clustermanager_test.go │ │ │ ├── example_timer_complex_test.go │ │ │ ├── example_timer_gauge_test.go │ │ │ ├── example_timer_test.go │ │ │ ├── examples_test.go │ │ │ ├── expvar_collector.go │ │ │ ├── expvar_collector_test.go │ │ │ ├── fnv.go │ │ │ ├── gauge.go │ │ │ ├── gauge_test.go │ │ │ ├── go_collector.go │ │ │ ├── go_collector_test.go │ │ │ ├── graphite │ │ │ ├── bridge.go │ │ │ └── bridge_test.go │ │ │ ├── histogram.go │ │ │ ├── histogram_test.go │ │ │ ├── http.go │ │ │ ├── http_test.go │ │ │ ├── internal │ │ │ └── metric.go │ │ │ ├── labels.go │ │ │ ├── metric.go │ │ │ ├── metric_test.go │ │ │ ├── observer.go │ │ │ ├── process_collector.go │ │ │ ├── process_collector_test.go │ │ │ ├── promauto │ │ │ └── auto.go │ │ │ ├── promhttp │ │ │ ├── delegator.go │ │ │ ├── delegator_1_8.go │ │ │ ├── delegator_pre_1_8.go │ │ │ ├── http.go │ │ │ ├── http_test.go │ │ │ ├── instrument_client.go │ │ │ ├── instrument_client_1_8.go │ │ │ ├── instrument_client_1_8_test.go │ │ │ ├── instrument_server.go │ │ │ └── instrument_server_test.go │ │ │ ├── push │ │ │ ├── deprecated.go │ │ │ ├── example_add_from_gatherer_test.go │ │ │ ├── examples_test.go │ │ │ ├── push.go │ │ │ └── push_test.go │ │ │ ├── registry.go │ │ │ ├── registry_test.go │ │ │ ├── summary.go │ │ │ ├── summary_test.go │ │ │ ├── testutil │ │ │ ├── testutil.go │ │ │ └── testutil_test.go │ │ │ ├── timer.go │ │ │ ├── timer_test.go │ │ │ ├── untyped.go │ │ │ ├── value.go │ │ │ ├── value_test.go │ │ │ ├── vec.go │ │ │ ├── vec_test.go │ │ │ ├── wrap.go │ │ │ └── wrap_test.go │ ├── client_model │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS.md │ │ ├── Makefile │ │ ├── NOTICE │ │ ├── README.md │ │ ├── cpp │ │ │ ├── metrics.pb.cc │ │ │ └── metrics.pb.h │ │ ├── go │ │ │ └── metrics.pb.go │ │ ├── metrics.proto │ │ ├── pom.xml │ │ ├── python │ │ │ └── prometheus │ │ │ │ ├── __init__.py │ │ │ │ └── client │ │ │ │ ├── __init__.py │ │ │ │ └── model │ │ │ │ ├── __init__.py │ │ │ │ └── metrics_pb2.py │ │ ├── ruby │ │ │ ├── .gitignore │ │ │ ├── Gemfile │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── lib │ │ │ │ └── prometheus │ │ │ │ │ └── client │ │ │ │ │ ├── model.rb │ │ │ │ │ └── model │ │ │ │ │ ├── metrics.pb.rb │ │ │ │ │ └── version.rb │ │ │ └── prometheus-client-model.gemspec │ │ ├── setup.py │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── io │ │ │ └── prometheus │ │ │ └── client │ │ │ └── Metrics.java │ ├── common │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS.md │ │ ├── NOTICE │ │ ├── README.md │ │ ├── config │ │ │ ├── config.go │ │ │ ├── http_config.go │ │ │ ├── http_config_test.go │ │ │ ├── testdata │ │ │ │ ├── barney-no-pass.key │ │ │ │ ├── barney.crt │ │ │ │ ├── basic-auth-password │ │ │ │ ├── bearer.token │ │ │ │ ├── http.conf.basic-auth.good.yaml │ │ │ │ ├── http.conf.basic-auth.no-password.yaml │ │ │ │ ├── http.conf.basic-auth.no-username.yaml │ │ │ │ ├── http.conf.basic-auth.too-much.bad.yaml │ │ │ │ ├── http.conf.bearer-token-and-file-set.bad.yml │ │ │ │ ├── http.conf.empty.bad.yml │ │ │ │ ├── http.conf.good.yml │ │ │ │ ├── http.conf.invalid-bearer-token-file.bad.yml │ │ │ │ ├── server.crt │ │ │ │ ├── server.key │ │ │ │ ├── tls-ca-chain.pem │ │ │ │ ├── tls_config.cert_no_key.bad.yml │ │ │ │ ├── tls_config.empty.good.yml │ │ │ │ ├── tls_config.insecure.good.yml │ │ │ │ ├── tls_config.invalid_field.bad.yml │ │ │ │ └── tls_config.key_no_cert.bad.yml │ │ │ └── tls_config_test.go │ │ ├── expfmt │ │ │ ├── bench_test.go │ │ │ ├── decode.go │ │ │ ├── decode_test.go │ │ │ ├── encode.go │ │ │ ├── expfmt.go │ │ │ ├── fuzz.go │ │ │ ├── fuzz │ │ │ │ └── corpus │ │ │ │ │ ├── from_test_parse_0 │ │ │ │ │ ├── from_test_parse_1 │ │ │ │ │ ├── from_test_parse_2 │ │ │ │ │ ├── from_test_parse_3 │ │ │ │ │ ├── from_test_parse_4 │ │ │ │ │ ├── from_test_parse_error_0 │ │ │ │ │ ├── from_test_parse_error_1 │ │ │ │ │ ├── from_test_parse_error_10 │ │ │ │ │ ├── from_test_parse_error_11 │ │ │ │ │ ├── from_test_parse_error_12 │ │ │ │ │ ├── from_test_parse_error_13 │ │ │ │ │ ├── from_test_parse_error_14 │ │ │ │ │ ├── from_test_parse_error_15 │ │ │ │ │ ├── from_test_parse_error_16 │ │ │ │ │ ├── from_test_parse_error_17 │ │ │ │ │ ├── from_test_parse_error_18 │ │ │ │ │ ├── from_test_parse_error_19 │ │ │ │ │ ├── from_test_parse_error_2 │ │ │ │ │ ├── from_test_parse_error_3 │ │ │ │ │ ├── from_test_parse_error_4 │ │ │ │ │ ├── from_test_parse_error_5 │ │ │ │ │ ├── from_test_parse_error_6 │ │ │ │ │ ├── from_test_parse_error_7 │ │ │ │ │ ├── from_test_parse_error_8 │ │ │ │ │ ├── from_test_parse_error_9 │ │ │ │ │ └── minimal │ │ │ ├── testdata │ │ │ │ ├── json2 │ │ │ │ ├── json2_bad │ │ │ │ ├── protobuf │ │ │ │ ├── protobuf.gz │ │ │ │ ├── text │ │ │ │ └── text.gz │ │ │ ├── text_create.go │ │ │ ├── text_create_test.go │ │ │ ├── text_parse.go │ │ │ └── text_parse_test.go │ │ ├── internal │ │ │ └── bitbucket.org │ │ │ │ └── ww │ │ │ │ └── goautoneg │ │ │ │ ├── README.txt │ │ │ │ ├── autoneg.go │ │ │ │ └── autoneg_test.go │ │ ├── log │ │ │ ├── eventlog_formatter.go │ │ │ ├── log.go │ │ │ ├── log_test.go │ │ │ ├── syslog_formatter.go │ │ │ └── syslog_formatter_test.go │ │ ├── model │ │ │ ├── alert.go │ │ │ ├── alert_test.go │ │ │ ├── fingerprinting.go │ │ │ ├── fnv.go │ │ │ ├── labels.go │ │ │ ├── labels_test.go │ │ │ ├── labelset.go │ │ │ ├── metric.go │ │ │ ├── metric_test.go │ │ │ ├── model.go │ │ │ ├── signature.go │ │ │ ├── signature_test.go │ │ │ ├── silence.go │ │ │ ├── silence_test.go │ │ │ ├── time.go │ │ │ ├── time_test.go │ │ │ ├── value.go │ │ │ └── value_test.go │ │ ├── promlog │ │ │ ├── flag │ │ │ │ └── flag.go │ │ │ └── log.go │ │ ├── route │ │ │ ├── route.go │ │ │ └── route_test.go │ │ └── version │ │ │ └── info.go │ └── procfs │ │ ├── .circleci │ │ └── config.yml │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS.md │ │ ├── Makefile │ │ ├── NOTICE │ │ ├── README.md │ │ ├── bcache │ │ ├── bcache.go │ │ ├── get.go │ │ └── get_test.go │ │ ├── buddyinfo.go │ │ ├── buddyinfo_test.go │ │ ├── doc.go │ │ ├── fixtures.ttar │ │ ├── fs.go │ │ ├── fs_test.go │ │ ├── internal │ │ └── util │ │ │ ├── parse.go │ │ │ └── sysreadfile_linux.go │ │ ├── ipvs.go │ │ ├── ipvs_test.go │ │ ├── mdstat.go │ │ ├── mdstat_test.go │ │ ├── mountstats.go │ │ ├── mountstats_test.go │ │ ├── net_dev.go │ │ ├── net_dev_test.go │ │ ├── nfs │ │ ├── nfs.go │ │ ├── parse.go │ │ ├── parse_nfs.go │ │ ├── parse_nfs_test.go │ │ ├── parse_nfsd.go │ │ └── parse_nfsd_test.go │ │ ├── proc.go │ │ ├── proc_io.go │ │ ├── proc_io_test.go │ │ ├── proc_limits.go │ │ ├── proc_limits_test.go │ │ ├── proc_ns.go │ │ ├── proc_ns_test.go │ │ ├── proc_stat.go │ │ ├── proc_stat_test.go │ │ ├── proc_test.go │ │ ├── scripts │ │ └── check_license.sh │ │ ├── stat.go │ │ ├── stat_test.go │ │ ├── sysfs │ │ ├── .gitignore │ │ ├── doc.go │ │ ├── fixtures.ttar │ │ ├── fs.go │ │ ├── fs_test.go │ │ ├── net_class.go │ │ ├── net_class_test.go │ │ ├── system_cpu.go │ │ └── system_cpu_test.go │ │ ├── ttar │ │ ├── xfrm.go │ │ ├── xfrm_test.go │ │ └── xfs │ │ ├── parse.go │ │ ├── parse_test.go │ │ └── xfs.go ├── sirupsen │ └── logrus │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── alt_exit.go │ │ ├── alt_exit_test.go │ │ ├── appveyor.yml │ │ ├── doc.go │ │ ├── entry.go │ │ ├── entry_test.go │ │ ├── example_basic_test.go │ │ ├── example_global_hook_test.go │ │ ├── example_hook_test.go │ │ ├── exported.go │ │ ├── formatter.go │ │ ├── formatter_bench_test.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── hook_test.go │ │ ├── hooks.go │ │ ├── hooks │ │ ├── syslog │ │ │ ├── README.md │ │ │ ├── syslog.go │ │ │ └── syslog_test.go │ │ └── test │ │ │ ├── test.go │ │ │ └── test_test.go │ │ ├── internal │ │ └── testutils │ │ │ └── testutils.go │ │ ├── json_formatter.go │ │ ├── json_formatter_test.go │ │ ├── logger.go │ │ ├── logger_bench_test.go │ │ ├── logger_test.go │ │ ├── logrus.go │ │ ├── logrus_test.go │ │ ├── terminal_check_appengine.go │ │ ├── terminal_check_js.go │ │ ├── terminal_check_notappengine.go │ │ ├── terminal_check_windows.go │ │ ├── terminal_notwindows.go │ │ ├── terminal_windows.go │ │ ├── text_formatter.go │ │ ├── text_formatter_test.go │ │ └── writer.go └── spf13 │ ├── cobra │ ├── .circleci │ │ └── config.yml │ ├── .gitignore │ ├── .mailmap │ ├── .travis.yml │ ├── LICENSE.txt │ ├── README.md │ ├── args.go │ ├── args_test.go │ ├── bash_completions.go │ ├── bash_completions.md │ ├── bash_completions_test.go │ ├── cobra.go │ ├── cobra │ │ ├── README.md │ │ ├── cmd │ │ │ ├── add.go │ │ │ ├── add_test.go │ │ │ ├── golden_test.go │ │ │ ├── helpers.go │ │ │ ├── init.go │ │ │ ├── init_test.go │ │ │ ├── license_agpl.go │ │ │ ├── license_apache_2.go │ │ │ ├── license_bsd_clause_2.go │ │ │ ├── license_bsd_clause_3.go │ │ │ ├── license_gpl_2.go │ │ │ ├── license_gpl_3.go │ │ │ ├── license_lgpl.go │ │ │ ├── license_mit.go │ │ │ ├── licenses.go │ │ │ ├── project.go │ │ │ ├── project_test.go │ │ │ ├── root.go │ │ │ └── testdata │ │ │ │ ├── LICENSE.golden │ │ │ │ ├── main.go.golden │ │ │ │ ├── root.go.golden │ │ │ │ └── test.go.golden │ │ └── main.go │ ├── cobra_test.go │ ├── command.go │ ├── command_notwin.go │ ├── command_test.go │ ├── command_win.go │ ├── doc │ │ ├── cmd_test.go │ │ ├── man_docs.go │ │ ├── man_docs.md │ │ ├── man_docs_test.go │ │ ├── man_examples_test.go │ │ ├── md_docs.go │ │ ├── md_docs.md │ │ ├── md_docs_test.go │ │ ├── rest_docs.go │ │ ├── rest_docs.md │ │ ├── rest_docs_test.go │ │ ├── util.go │ │ ├── yaml_docs.go │ │ ├── yaml_docs.md │ │ └── yaml_docs_test.go │ ├── zsh_completions.go │ └── zsh_completions_test.go │ └── pflag │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── bool.go │ ├── bool_slice.go │ ├── bool_slice_test.go │ ├── bool_test.go │ ├── bytes.go │ ├── bytes_test.go │ ├── count.go │ ├── count_test.go │ ├── duration.go │ ├── duration_slice.go │ ├── duration_slice_test.go │ ├── example_test.go │ ├── export_test.go │ ├── flag.go │ ├── flag_test.go │ ├── float32.go │ ├── float64.go │ ├── golangflag.go │ ├── golangflag_test.go │ ├── int.go │ ├── int16.go │ ├── int32.go │ ├── int64.go │ ├── int8.go │ ├── int_slice.go │ ├── int_slice_test.go │ ├── ip.go │ ├── ip_slice.go │ ├── ip_slice_test.go │ ├── ip_test.go │ ├── ipmask.go │ ├── ipnet.go │ ├── ipnet_test.go │ ├── printusage_test.go │ ├── string.go │ ├── string_array.go │ ├── string_array_test.go │ ├── string_slice.go │ ├── string_slice_test.go │ ├── string_to_int.go │ ├── string_to_int_test.go │ ├── string_to_string.go │ ├── string_to_string_test.go │ ├── uint.go │ ├── uint16.go │ ├── uint32.go │ ├── uint64.go │ ├── uint8.go │ ├── uint_slice.go │ ├── uint_slice_test.go │ └── verify │ ├── all.sh │ ├── gofmt.sh │ └── golint.sh ├── golang.org └── x │ ├── crypto │ ├── .gitattributes │ ├── .gitignore │ ├── AUTHORS │ ├── CONTRIBUTING.md │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── README.md │ ├── acme │ │ ├── acme.go │ │ ├── acme_test.go │ │ ├── autocert │ │ │ ├── autocert.go │ │ │ ├── autocert_test.go │ │ │ ├── cache.go │ │ │ ├── cache_test.go │ │ │ ├── example_test.go │ │ │ ├── internal │ │ │ │ └── acmetest │ │ │ │ │ └── ca.go │ │ │ ├── listener.go │ │ │ ├── renewal.go │ │ │ └── renewal_test.go │ │ ├── http.go │ │ ├── http_test.go │ │ ├── jws.go │ │ ├── jws_test.go │ │ ├── types.go │ │ └── types_test.go │ ├── argon2 │ │ ├── argon2.go │ │ ├── argon2_test.go │ │ ├── blake2b.go │ │ ├── blamka_amd64.go │ │ ├── blamka_amd64.s │ │ ├── blamka_generic.go │ │ └── blamka_ref.go │ ├── bcrypt │ │ ├── base64.go │ │ ├── bcrypt.go │ │ └── bcrypt_test.go │ ├── blake2b │ │ ├── blake2b.go │ │ ├── blake2bAVX2_amd64.go │ │ ├── blake2bAVX2_amd64.s │ │ ├── blake2b_amd64.go │ │ ├── blake2b_amd64.s │ │ ├── blake2b_generic.go │ │ ├── blake2b_ref.go │ │ ├── blake2b_test.go │ │ ├── blake2x.go │ │ └── register.go │ ├── blake2s │ │ ├── blake2s.go │ │ ├── blake2s_386.go │ │ ├── blake2s_386.s │ │ ├── blake2s_amd64.go │ │ ├── blake2s_amd64.s │ │ ├── blake2s_generic.go │ │ ├── blake2s_ref.go │ │ ├── blake2s_test.go │ │ ├── blake2x.go │ │ └── register.go │ ├── blowfish │ │ ├── block.go │ │ ├── blowfish_test.go │ │ ├── cipher.go │ │ └── const.go │ ├── bn256 │ │ ├── bn256.go │ │ ├── bn256_test.go │ │ ├── constants.go │ │ ├── curve.go │ │ ├── example_test.go │ │ ├── gfp12.go │ │ ├── gfp2.go │ │ ├── gfp6.go │ │ ├── optate.go │ │ └── twist.go │ ├── cast5 │ │ ├── cast5.go │ │ └── cast5_test.go │ ├── chacha20poly1305 │ │ ├── chacha20poly1305.go │ │ ├── chacha20poly1305_amd64.go │ │ ├── chacha20poly1305_amd64.s │ │ ├── chacha20poly1305_generic.go │ │ ├── chacha20poly1305_noasm.go │ │ ├── chacha20poly1305_test.go │ │ ├── chacha20poly1305_vectors_test.go │ │ └── xchacha20poly1305.go │ ├── codereview.cfg │ ├── cryptobyte │ │ ├── asn1.go │ │ ├── asn1 │ │ │ └── asn1.go │ │ ├── asn1_test.go │ │ ├── builder.go │ │ ├── cryptobyte_test.go │ │ ├── example_test.go │ │ └── string.go │ ├── curve25519 │ │ ├── const_amd64.h │ │ ├── const_amd64.s │ │ ├── cswap_amd64.s │ │ ├── curve25519.go │ │ ├── curve25519_test.go │ │ ├── doc.go │ │ ├── freeze_amd64.s │ │ ├── ladderstep_amd64.s │ │ ├── mont25519_amd64.go │ │ ├── mul_amd64.s │ │ └── square_amd64.s │ ├── ed25519 │ │ ├── ed25519.go │ │ ├── ed25519_test.go │ │ ├── internal │ │ │ └── edwards25519 │ │ │ │ ├── const.go │ │ │ │ └── edwards25519.go │ │ └── testdata │ │ │ └── sign.input.gz │ ├── hkdf │ │ ├── example_test.go │ │ ├── hkdf.go │ │ └── hkdf_test.go │ ├── internal │ │ ├── chacha20 │ │ │ ├── chacha_generic.go │ │ │ ├── chacha_noasm.go │ │ │ ├── chacha_s390x.go │ │ │ ├── chacha_s390x.s │ │ │ ├── chacha_test.go │ │ │ ├── vectors_test.go │ │ │ └── xor.go │ │ └── subtle │ │ │ ├── aliasing.go │ │ │ ├── aliasing_appengine.go │ │ │ └── aliasing_test.go │ ├── md4 │ │ ├── example_test.go │ │ ├── md4.go │ │ ├── md4_test.go │ │ └── md4block.go │ ├── nacl │ │ ├── auth │ │ │ ├── auth.go │ │ │ ├── auth_test.go │ │ │ └── example_test.go │ │ ├── box │ │ │ ├── box.go │ │ │ ├── box_test.go │ │ │ └── example_test.go │ │ ├── secretbox │ │ │ ├── example_test.go │ │ │ ├── secretbox.go │ │ │ └── secretbox_test.go │ │ └── sign │ │ │ ├── sign.go │ │ │ └── sign_test.go │ ├── ocsp │ │ ├── ocsp.go │ │ └── ocsp_test.go │ ├── openpgp │ │ ├── armor │ │ │ ├── armor.go │ │ │ ├── armor_test.go │ │ │ └── encode.go │ │ ├── canonical_text.go │ │ ├── canonical_text_test.go │ │ ├── clearsign │ │ │ ├── clearsign.go │ │ │ └── clearsign_test.go │ │ ├── elgamal │ │ │ ├── elgamal.go │ │ │ └── elgamal_test.go │ │ ├── errors │ │ │ └── errors.go │ │ ├── keys.go │ │ ├── keys_data_test.go │ │ ├── keys_test.go │ │ ├── packet │ │ │ ├── compressed.go │ │ │ ├── compressed_test.go │ │ │ ├── config.go │ │ │ ├── encrypted_key.go │ │ │ ├── encrypted_key_test.go │ │ │ ├── literal.go │ │ │ ├── ocfb.go │ │ │ ├── ocfb_test.go │ │ │ ├── one_pass_signature.go │ │ │ ├── opaque.go │ │ │ ├── opaque_test.go │ │ │ ├── packet.go │ │ │ ├── packet_test.go │ │ │ ├── private_key.go │ │ │ ├── private_key_test.go │ │ │ ├── public_key.go │ │ │ ├── public_key_test.go │ │ │ ├── public_key_v3.go │ │ │ ├── public_key_v3_test.go │ │ │ ├── reader.go │ │ │ ├── signature.go │ │ │ ├── signature_test.go │ │ │ ├── signature_v3.go │ │ │ ├── signature_v3_test.go │ │ │ ├── symmetric_key_encrypted.go │ │ │ ├── symmetric_key_encrypted_test.go │ │ │ ├── symmetrically_encrypted.go │ │ │ ├── symmetrically_encrypted_test.go │ │ │ ├── userattribute.go │ │ │ ├── userattribute_test.go │ │ │ ├── userid.go │ │ │ └── userid_test.go │ │ ├── read.go │ │ ├── read_test.go │ │ ├── s2k │ │ │ ├── s2k.go │ │ │ └── s2k_test.go │ │ ├── write.go │ │ └── write_test.go │ ├── otr │ │ ├── libotr_test_helper.c │ │ ├── otr.go │ │ ├── otr_test.go │ │ └── smp.go │ ├── pbkdf2 │ │ ├── pbkdf2.go │ │ └── pbkdf2_test.go │ ├── pkcs12 │ │ ├── bmp-string.go │ │ ├── bmp-string_test.go │ │ ├── crypto.go │ │ ├── crypto_test.go │ │ ├── errors.go │ │ ├── internal │ │ │ └── rc2 │ │ │ │ ├── bench_test.go │ │ │ │ ├── rc2.go │ │ │ │ └── rc2_test.go │ │ ├── mac.go │ │ ├── mac_test.go │ │ ├── pbkdf.go │ │ ├── pbkdf_test.go │ │ ├── pkcs12.go │ │ ├── pkcs12_test.go │ │ └── safebags.go │ ├── poly1305 │ │ ├── poly1305.go │ │ ├── poly1305_test.go │ │ ├── sum_amd64.go │ │ ├── sum_amd64.s │ │ ├── sum_arm.go │ │ ├── sum_arm.s │ │ ├── sum_noasm.go │ │ ├── sum_ref.go │ │ ├── sum_s390x.go │ │ ├── sum_s390x.s │ │ ├── sum_vmsl_s390x.s │ │ └── vectors_test.go │ ├── ripemd160 │ │ ├── ripemd160.go │ │ ├── ripemd160_test.go │ │ └── ripemd160block.go │ ├── salsa20 │ │ ├── salsa │ │ │ ├── hsalsa20.go │ │ │ ├── salsa2020_amd64.s │ │ │ ├── salsa208.go │ │ │ ├── salsa20_amd64.go │ │ │ ├── salsa20_ref.go │ │ │ └── salsa_test.go │ │ ├── salsa20.go │ │ └── salsa20_test.go │ ├── scrypt │ │ ├── example_test.go │ │ ├── scrypt.go │ │ └── scrypt_test.go │ ├── sha3 │ │ ├── doc.go │ │ ├── hashes.go │ │ ├── hashes_generic.go │ │ ├── keccakf.go │ │ ├── keccakf_amd64.go │ │ ├── keccakf_amd64.s │ │ ├── register.go │ │ ├── sha3.go │ │ ├── sha3_s390x.go │ │ ├── sha3_s390x.s │ │ ├── sha3_test.go │ │ ├── shake.go │ │ ├── shake_generic.go │ │ ├── testdata │ │ │ └── keccakKats.json.deflate │ │ ├── xor.go │ │ ├── xor_generic.go │ │ └── xor_unaligned.go │ ├── ssh │ │ ├── agent │ │ │ ├── client.go │ │ │ ├── client_test.go │ │ │ ├── example_test.go │ │ │ ├── forward.go │ │ │ ├── keyring.go │ │ │ ├── keyring_test.go │ │ │ ├── server.go │ │ │ ├── server_test.go │ │ │ └── testdata_test.go │ │ ├── benchmark_test.go │ │ ├── buffer.go │ │ ├── buffer_test.go │ │ ├── certs.go │ │ ├── certs_test.go │ │ ├── channel.go │ │ ├── cipher.go │ │ ├── cipher_test.go │ │ ├── client.go │ │ ├── client_auth.go │ │ ├── client_auth_test.go │ │ ├── client_test.go │ │ ├── common.go │ │ ├── connection.go │ │ ├── doc.go │ │ ├── example_test.go │ │ ├── handshake.go │ │ ├── handshake_test.go │ │ ├── kex.go │ │ ├── kex_test.go │ │ ├── keys.go │ │ ├── keys_test.go │ │ ├── knownhosts │ │ │ ├── knownhosts.go │ │ │ └── knownhosts_test.go │ │ ├── mac.go │ │ ├── mempipe_test.go │ │ ├── messages.go │ │ ├── messages_test.go │ │ ├── mux.go │ │ ├── mux_test.go │ │ ├── server.go │ │ ├── session.go │ │ ├── session_test.go │ │ ├── streamlocal.go │ │ ├── tcpip.go │ │ ├── tcpip_test.go │ │ ├── terminal │ │ │ ├── terminal.go │ │ │ ├── terminal_test.go │ │ │ ├── util.go │ │ │ ├── util_bsd.go │ │ │ ├── util_linux.go │ │ │ ├── util_plan9.go │ │ │ ├── util_solaris.go │ │ │ └── util_windows.go │ │ ├── test │ │ │ ├── agent_unix_test.go │ │ │ ├── banner_test.go │ │ │ ├── cert_test.go │ │ │ ├── dial_unix_test.go │ │ │ ├── doc.go │ │ │ ├── forward_unix_test.go │ │ │ ├── multi_auth_test.go │ │ │ ├── session_test.go │ │ │ ├── sshd_test_pw.c │ │ │ ├── test_unix_test.go │ │ │ └── testdata_test.go │ │ ├── testdata │ │ │ ├── doc.go │ │ │ └── keys.go │ │ ├── testdata_test.go │ │ ├── transport.go │ │ └── transport_test.go │ ├── tea │ │ ├── cipher.go │ │ └── tea_test.go │ ├── twofish │ │ ├── twofish.go │ │ └── twofish_test.go │ ├── xtea │ │ ├── block.go │ │ ├── cipher.go │ │ └── xtea_test.go │ └── xts │ │ ├── xts.go │ │ └── xts_test.go │ ├── net │ ├── .gitattributes │ ├── .gitignore │ ├── AUTHORS │ ├── CONTRIBUTING.md │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── README.md │ ├── bpf │ │ ├── asm.go │ │ ├── constants.go │ │ ├── doc.go │ │ ├── instructions.go │ │ ├── instructions_test.go │ │ ├── setter.go │ │ ├── testdata │ │ │ ├── all_instructions.bpf │ │ │ └── all_instructions.txt │ │ ├── vm.go │ │ ├── vm_aluop_test.go │ │ ├── vm_bpf_test.go │ │ ├── vm_extension_test.go │ │ ├── vm_instructions.go │ │ ├── vm_jump_test.go │ │ ├── vm_load_test.go │ │ ├── vm_ret_test.go │ │ ├── vm_scratch_test.go │ │ └── vm_test.go │ ├── codereview.cfg │ ├── context │ │ ├── context.go │ │ ├── context_test.go │ │ ├── ctxhttp │ │ │ ├── ctxhttp.go │ │ │ ├── ctxhttp_17_test.go │ │ │ ├── ctxhttp_pre17.go │ │ │ ├── ctxhttp_pre17_test.go │ │ │ └── ctxhttp_test.go │ │ ├── go17.go │ │ ├── go19.go │ │ ├── pre_go17.go │ │ ├── pre_go19.go │ │ └── withtimeout_test.go │ ├── dict │ │ └── dict.go │ ├── dns │ │ └── dnsmessage │ │ │ ├── example_test.go │ │ │ ├── message.go │ │ │ └── message_test.go │ ├── html │ │ ├── atom │ │ │ ├── atom.go │ │ │ ├── atom_test.go │ │ │ ├── gen.go │ │ │ ├── table.go │ │ │ └── table_test.go │ │ ├── charset │ │ │ ├── charset.go │ │ │ ├── charset_test.go │ │ │ └── testdata │ │ │ │ ├── HTTP-charset.html │ │ │ │ ├── HTTP-vs-UTF-8-BOM.html │ │ │ │ ├── HTTP-vs-meta-charset.html │ │ │ │ ├── HTTP-vs-meta-content.html │ │ │ │ ├── No-encoding-declaration.html │ │ │ │ ├── README │ │ │ │ ├── UTF-16BE-BOM.html │ │ │ │ ├── UTF-16LE-BOM.html │ │ │ │ ├── UTF-8-BOM-vs-meta-charset.html │ │ │ │ ├── UTF-8-BOM-vs-meta-content.html │ │ │ │ ├── meta-charset-attribute.html │ │ │ │ └── meta-content-attribute.html │ │ ├── const.go │ │ ├── doc.go │ │ ├── doctype.go │ │ ├── entity.go │ │ ├── entity_test.go │ │ ├── escape.go │ │ ├── escape_test.go │ │ ├── example_test.go │ │ ├── foreign.go │ │ ├── node.go │ │ ├── node_test.go │ │ ├── parse.go │ │ ├── parse_test.go │ │ ├── render.go │ │ ├── render_test.go │ │ ├── testdata │ │ │ ├── go │ │ │ │ └── template.dat │ │ │ ├── go1.html │ │ │ └── webkit │ │ │ │ ├── README │ │ │ │ ├── adoption01.dat │ │ │ │ ├── adoption02.dat │ │ │ │ ├── comments01.dat │ │ │ │ ├── doctype01.dat │ │ │ │ ├── entities01.dat │ │ │ │ ├── entities02.dat │ │ │ │ ├── html5test-com.dat │ │ │ │ ├── inbody01.dat │ │ │ │ ├── isindex.dat │ │ │ │ ├── pending-spec-changes-plain-text-unsafe.dat │ │ │ │ ├── pending-spec-changes.dat │ │ │ │ ├── plain-text-unsafe.dat │ │ │ │ ├── ruby.dat │ │ │ │ ├── scriptdata01.dat │ │ │ │ ├── scripted │ │ │ │ ├── adoption01.dat │ │ │ │ └── webkit01.dat │ │ │ │ ├── tables01.dat │ │ │ │ ├── template.dat │ │ │ │ ├── tests1.dat │ │ │ │ ├── tests10.dat │ │ │ │ ├── tests11.dat │ │ │ │ ├── tests12.dat │ │ │ │ ├── tests14.dat │ │ │ │ ├── tests15.dat │ │ │ │ ├── tests16.dat │ │ │ │ ├── tests17.dat │ │ │ │ ├── tests18.dat │ │ │ │ ├── tests19.dat │ │ │ │ ├── tests2.dat │ │ │ │ ├── tests20.dat │ │ │ │ ├── tests21.dat │ │ │ │ ├── tests22.dat │ │ │ │ ├── tests23.dat │ │ │ │ ├── tests24.dat │ │ │ │ ├── tests25.dat │ │ │ │ ├── tests26.dat │ │ │ │ ├── tests3.dat │ │ │ │ ├── tests4.dat │ │ │ │ ├── tests5.dat │ │ │ │ ├── tests6.dat │ │ │ │ ├── tests7.dat │ │ │ │ ├── tests8.dat │ │ │ │ ├── tests9.dat │ │ │ │ ├── tests_innerHTML_1.dat │ │ │ │ ├── tricky01.dat │ │ │ │ ├── webkit01.dat │ │ │ │ └── webkit02.dat │ │ ├── token.go │ │ └── token_test.go │ ├── http │ │ ├── httpguts │ │ │ ├── guts.go │ │ │ ├── httplex.go │ │ │ └── httplex_test.go │ │ └── httpproxy │ │ │ ├── export_test.go │ │ │ ├── go19_test.go │ │ │ ├── proxy.go │ │ │ └── proxy_test.go │ ├── http2 │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── README │ │ ├── ciphers.go │ │ ├── ciphers_test.go │ │ ├── client_conn_pool.go │ │ ├── configure_transport.go │ │ ├── databuffer.go │ │ ├── databuffer_test.go │ │ ├── errors.go │ │ ├── errors_test.go │ │ ├── flow.go │ │ ├── flow_test.go │ │ ├── frame.go │ │ ├── frame_test.go │ │ ├── go111.go │ │ ├── go16.go │ │ ├── go17.go │ │ ├── go17_not18.go │ │ ├── go18.go │ │ ├── go18_test.go │ │ ├── go19.go │ │ ├── go19_test.go │ │ ├── gotrack.go │ │ ├── gotrack_test.go │ │ ├── h2c │ │ │ ├── h2c.go │ │ │ └── h2c_test.go │ │ ├── h2demo │ │ │ ├── .gitignore │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile.0 │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── deployment-prod.yaml │ │ │ ├── h2demo.go │ │ │ ├── launch.go │ │ │ ├── rootCA.key │ │ │ ├── rootCA.pem │ │ │ ├── rootCA.srl │ │ │ ├── server.crt │ │ │ ├── server.key │ │ │ ├── service.yaml │ │ │ └── tmpl.go │ │ ├── h2i │ │ │ ├── README.md │ │ │ └── h2i.go │ │ ├── headermap.go │ │ ├── hpack │ │ │ ├── encode.go │ │ │ ├── encode_test.go │ │ │ ├── hpack.go │ │ │ ├── hpack_test.go │ │ │ ├── huffman.go │ │ │ ├── tables.go │ │ │ └── tables_test.go │ │ ├── http2.go │ │ ├── http2_test.go │ │ ├── not_go111.go │ │ ├── not_go16.go │ │ ├── not_go17.go │ │ ├── not_go18.go │ │ ├── not_go19.go │ │ ├── pipe.go │ │ ├── pipe_test.go │ │ ├── server.go │ │ ├── server_push_test.go │ │ ├── server_test.go │ │ ├── testdata │ │ │ └── draft-ietf-httpbis-http2.xml │ │ ├── transport.go │ │ ├── transport_test.go │ │ ├── write.go │ │ ├── writesched.go │ │ ├── writesched_priority.go │ │ ├── writesched_priority_test.go │ │ ├── writesched_random.go │ │ ├── writesched_random_test.go │ │ ├── writesched_test.go │ │ └── z_spec_test.go │ ├── icmp │ │ ├── diag_test.go │ │ ├── dstunreach.go │ │ ├── echo.go │ │ ├── endpoint.go │ │ ├── example_test.go │ │ ├── extension.go │ │ ├── extension_test.go │ │ ├── helper_posix.go │ │ ├── interface.go │ │ ├── ipv4.go │ │ ├── ipv4_test.go │ │ ├── ipv6.go │ │ ├── listen_posix.go │ │ ├── listen_stub.go │ │ ├── message.go │ │ ├── message_test.go │ │ ├── messagebody.go │ │ ├── mpls.go │ │ ├── multipart.go │ │ ├── multipart_test.go │ │ ├── packettoobig.go │ │ ├── paramprob.go │ │ ├── sys_freebsd.go │ │ └── timeexceeded.go │ ├── idna │ │ ├── example_test.go │ │ ├── idna.go │ │ ├── idna_test.go │ │ ├── punycode.go │ │ ├── punycode_test.go │ │ ├── tables.go │ │ ├── trie.go │ │ └── trieval.go │ ├── internal │ │ ├── iana │ │ │ ├── const.go │ │ │ └── gen.go │ │ ├── nettest │ │ │ ├── helper_bsd.go │ │ │ ├── helper_nobsd.go │ │ │ ├── helper_posix.go │ │ │ ├── helper_stub.go │ │ │ ├── helper_unix.go │ │ │ ├── helper_windows.go │ │ │ ├── interface.go │ │ │ ├── rlimit.go │ │ │ └── stack.go │ │ ├── socket │ │ │ ├── cmsghdr.go │ │ │ ├── cmsghdr_bsd.go │ │ │ ├── cmsghdr_linux_32bit.go │ │ │ ├── cmsghdr_linux_64bit.go │ │ │ ├── cmsghdr_solaris_64bit.go │ │ │ ├── cmsghdr_stub.go │ │ │ ├── defs_darwin.go │ │ │ ├── defs_dragonfly.go │ │ │ ├── defs_freebsd.go │ │ │ ├── defs_linux.go │ │ │ ├── defs_netbsd.go │ │ │ ├── defs_openbsd.go │ │ │ ├── defs_solaris.go │ │ │ ├── error_unix.go │ │ │ ├── error_windows.go │ │ │ ├── iovec_32bit.go │ │ │ ├── iovec_64bit.go │ │ │ ├── iovec_solaris_64bit.go │ │ │ ├── iovec_stub.go │ │ │ ├── mmsghdr_stub.go │ │ │ ├── mmsghdr_unix.go │ │ │ ├── msghdr_bsd.go │ │ │ ├── msghdr_bsdvar.go │ │ │ ├── msghdr_linux.go │ │ │ ├── msghdr_linux_32bit.go │ │ │ ├── msghdr_linux_64bit.go │ │ │ ├── msghdr_openbsd.go │ │ │ ├── msghdr_solaris_64bit.go │ │ │ ├── msghdr_stub.go │ │ │ ├── rawconn.go │ │ │ ├── rawconn_mmsg.go │ │ │ ├── rawconn_msg.go │ │ │ ├── rawconn_nommsg.go │ │ │ ├── rawconn_nomsg.go │ │ │ ├── rawconn_stub.go │ │ │ ├── reflect.go │ │ │ ├── socket.go │ │ │ ├── socket_go1_9_test.go │ │ │ ├── socket_test.go │ │ │ ├── sys.go │ │ │ ├── sys_bsd.go │ │ │ ├── sys_bsdvar.go │ │ │ ├── sys_darwin.go │ │ │ ├── sys_dragonfly.go │ │ │ ├── sys_linux.go │ │ │ ├── sys_linux_386.go │ │ │ ├── sys_linux_386.s │ │ │ ├── sys_linux_amd64.go │ │ │ ├── sys_linux_arm.go │ │ │ ├── sys_linux_arm64.go │ │ │ ├── sys_linux_mips.go │ │ │ ├── sys_linux_mips64.go │ │ │ ├── sys_linux_mips64le.go │ │ │ ├── sys_linux_mipsle.go │ │ │ ├── sys_linux_ppc64.go │ │ │ ├── sys_linux_ppc64le.go │ │ │ ├── sys_linux_s390x.go │ │ │ ├── sys_linux_s390x.s │ │ │ ├── sys_netbsd.go │ │ │ ├── sys_posix.go │ │ │ ├── sys_solaris.go │ │ │ ├── sys_solaris_amd64.s │ │ │ ├── sys_stub.go │ │ │ ├── sys_unix.go │ │ │ ├── sys_windows.go │ │ │ ├── zsys_darwin_386.go │ │ │ ├── zsys_darwin_amd64.go │ │ │ ├── zsys_darwin_arm.go │ │ │ ├── zsys_darwin_arm64.go │ │ │ ├── zsys_dragonfly_amd64.go │ │ │ ├── zsys_freebsd_386.go │ │ │ ├── zsys_freebsd_amd64.go │ │ │ ├── zsys_freebsd_arm.go │ │ │ ├── zsys_linux_386.go │ │ │ ├── zsys_linux_amd64.go │ │ │ ├── zsys_linux_arm.go │ │ │ ├── zsys_linux_arm64.go │ │ │ ├── zsys_linux_mips.go │ │ │ ├── zsys_linux_mips64.go │ │ │ ├── zsys_linux_mips64le.go │ │ │ ├── zsys_linux_mipsle.go │ │ │ ├── zsys_linux_ppc64.go │ │ │ ├── zsys_linux_ppc64le.go │ │ │ ├── zsys_linux_s390x.go │ │ │ ├── zsys_netbsd_386.go │ │ │ ├── zsys_netbsd_amd64.go │ │ │ ├── zsys_netbsd_arm.go │ │ │ ├── zsys_openbsd_386.go │ │ │ ├── zsys_openbsd_amd64.go │ │ │ ├── zsys_openbsd_arm.go │ │ │ └── zsys_solaris_amd64.go │ │ ├── socks │ │ │ ├── client.go │ │ │ ├── dial_test.go │ │ │ └── socks.go │ │ ├── sockstest │ │ │ ├── server.go │ │ │ └── server_test.go │ │ └── timeseries │ │ │ ├── timeseries.go │ │ │ └── timeseries_test.go │ ├── ipv4 │ │ ├── batch.go │ │ ├── bpf_test.go │ │ ├── control.go │ │ ├── control_bsd.go │ │ ├── control_pktinfo.go │ │ ├── control_stub.go │ │ ├── control_test.go │ │ ├── control_unix.go │ │ ├── control_windows.go │ │ ├── defs_darwin.go │ │ ├── defs_dragonfly.go │ │ ├── defs_freebsd.go │ │ ├── defs_linux.go │ │ ├── defs_netbsd.go │ │ ├── defs_openbsd.go │ │ ├── defs_solaris.go │ │ ├── dgramopt.go │ │ ├── doc.go │ │ ├── endpoint.go │ │ ├── example_test.go │ │ ├── gen.go │ │ ├── genericopt.go │ │ ├── header.go │ │ ├── header_test.go │ │ ├── helper.go │ │ ├── iana.go │ │ ├── icmp.go │ │ ├── icmp_linux.go │ │ ├── icmp_stub.go │ │ ├── icmp_test.go │ │ ├── multicast_test.go │ │ ├── multicastlistener_test.go │ │ ├── multicastsockopt_test.go │ │ ├── packet.go │ │ ├── packet_go1_8.go │ │ ├── packet_go1_9.go │ │ ├── payload.go │ │ ├── payload_cmsg.go │ │ ├── payload_cmsg_go1_8.go │ │ ├── payload_cmsg_go1_9.go │ │ ├── payload_nocmsg.go │ │ ├── readwrite_go1_8_test.go │ │ ├── readwrite_go1_9_test.go │ │ ├── readwrite_test.go │ │ ├── sockopt.go │ │ ├── sockopt_posix.go │ │ ├── sockopt_stub.go │ │ ├── sys_asmreq.go │ │ ├── sys_asmreq_stub.go │ │ ├── sys_asmreqn.go │ │ ├── sys_asmreqn_stub.go │ │ ├── sys_bpf.go │ │ ├── sys_bpf_stub.go │ │ ├── sys_bsd.go │ │ ├── sys_darwin.go │ │ ├── sys_dragonfly.go │ │ ├── sys_freebsd.go │ │ ├── sys_linux.go │ │ ├── sys_solaris.go │ │ ├── sys_ssmreq.go │ │ ├── sys_ssmreq_stub.go │ │ ├── sys_stub.go │ │ ├── sys_windows.go │ │ ├── unicast_test.go │ │ ├── unicastsockopt_test.go │ │ ├── zsys_darwin.go │ │ ├── zsys_dragonfly.go │ │ ├── zsys_freebsd_386.go │ │ ├── zsys_freebsd_amd64.go │ │ ├── zsys_freebsd_arm.go │ │ ├── zsys_linux_386.go │ │ ├── zsys_linux_amd64.go │ │ ├── zsys_linux_arm.go │ │ ├── zsys_linux_arm64.go │ │ ├── zsys_linux_mips.go │ │ ├── zsys_linux_mips64.go │ │ ├── zsys_linux_mips64le.go │ │ ├── zsys_linux_mipsle.go │ │ ├── zsys_linux_ppc.go │ │ ├── zsys_linux_ppc64.go │ │ ├── zsys_linux_ppc64le.go │ │ ├── zsys_linux_s390x.go │ │ ├── zsys_netbsd.go │ │ ├── zsys_openbsd.go │ │ └── zsys_solaris.go │ ├── ipv6 │ │ ├── batch.go │ │ ├── bpf_test.go │ │ ├── control.go │ │ ├── control_rfc2292_unix.go │ │ ├── control_rfc3542_unix.go │ │ ├── control_stub.go │ │ ├── control_test.go │ │ ├── control_unix.go │ │ ├── control_windows.go │ │ ├── defs_darwin.go │ │ ├── defs_dragonfly.go │ │ ├── defs_freebsd.go │ │ ├── defs_linux.go │ │ ├── defs_netbsd.go │ │ ├── defs_openbsd.go │ │ ├── defs_solaris.go │ │ ├── dgramopt.go │ │ ├── doc.go │ │ ├── endpoint.go │ │ ├── example_test.go │ │ ├── gen.go │ │ ├── genericopt.go │ │ ├── header.go │ │ ├── header_test.go │ │ ├── helper.go │ │ ├── iana.go │ │ ├── icmp.go │ │ ├── icmp_bsd.go │ │ ├── icmp_linux.go │ │ ├── icmp_solaris.go │ │ ├── icmp_stub.go │ │ ├── icmp_test.go │ │ ├── icmp_windows.go │ │ ├── mocktransponder_test.go │ │ ├── multicast_test.go │ │ ├── multicastlistener_test.go │ │ ├── multicastsockopt_test.go │ │ ├── payload.go │ │ ├── payload_cmsg.go │ │ ├── payload_cmsg_go1_8.go │ │ ├── payload_cmsg_go1_9.go │ │ ├── payload_nocmsg.go │ │ ├── readwrite_go1_8_test.go │ │ ├── readwrite_go1_9_test.go │ │ ├── readwrite_test.go │ │ ├── sockopt.go │ │ ├── sockopt_posix.go │ │ ├── sockopt_stub.go │ │ ├── sockopt_test.go │ │ ├── sys_asmreq.go │ │ ├── sys_asmreq_stub.go │ │ ├── sys_bpf.go │ │ ├── sys_bpf_stub.go │ │ ├── sys_bsd.go │ │ ├── sys_darwin.go │ │ ├── sys_freebsd.go │ │ ├── sys_linux.go │ │ ├── sys_solaris.go │ │ ├── sys_ssmreq.go │ │ ├── sys_ssmreq_stub.go │ │ ├── sys_stub.go │ │ ├── sys_windows.go │ │ ├── unicast_test.go │ │ ├── unicastsockopt_test.go │ │ ├── zsys_darwin.go │ │ ├── zsys_dragonfly.go │ │ ├── zsys_freebsd_386.go │ │ ├── zsys_freebsd_amd64.go │ │ ├── zsys_freebsd_arm.go │ │ ├── zsys_linux_386.go │ │ ├── zsys_linux_amd64.go │ │ ├── zsys_linux_arm.go │ │ ├── zsys_linux_arm64.go │ │ ├── zsys_linux_mips.go │ │ ├── zsys_linux_mips64.go │ │ ├── zsys_linux_mips64le.go │ │ ├── zsys_linux_mipsle.go │ │ ├── zsys_linux_ppc.go │ │ ├── zsys_linux_ppc64.go │ │ ├── zsys_linux_ppc64le.go │ │ ├── zsys_linux_s390x.go │ │ ├── zsys_netbsd.go │ │ ├── zsys_openbsd.go │ │ └── zsys_solaris.go │ ├── lif │ │ ├── address.go │ │ ├── address_test.go │ │ ├── binary.go │ │ ├── defs_solaris.go │ │ ├── lif.go │ │ ├── link.go │ │ ├── link_test.go │ │ ├── sys.go │ │ ├── sys_solaris_amd64.s │ │ ├── syscall.go │ │ └── zsys_solaris_amd64.go │ ├── nettest │ │ ├── conntest.go │ │ ├── conntest_go16.go │ │ ├── conntest_go17.go │ │ └── conntest_test.go │ ├── netutil │ │ ├── listen.go │ │ └── listen_test.go │ ├── proxy │ │ ├── direct.go │ │ ├── per_host.go │ │ ├── per_host_test.go │ │ ├── proxy.go │ │ ├── proxy_test.go │ │ └── socks5.go │ ├── publicsuffix │ │ ├── gen.go │ │ ├── list.go │ │ ├── list_test.go │ │ ├── table.go │ │ └── table_test.go │ ├── route │ │ ├── address.go │ │ ├── address_darwin_test.go │ │ ├── address_test.go │ │ ├── binary.go │ │ ├── defs_darwin.go │ │ ├── defs_dragonfly.go │ │ ├── defs_freebsd.go │ │ ├── defs_netbsd.go │ │ ├── defs_openbsd.go │ │ ├── interface.go │ │ ├── interface_announce.go │ │ ├── interface_classic.go │ │ ├── interface_freebsd.go │ │ ├── interface_multicast.go │ │ ├── interface_openbsd.go │ │ ├── message.go │ │ ├── message_darwin_test.go │ │ ├── message_freebsd_test.go │ │ ├── message_test.go │ │ ├── route.go │ │ ├── route_classic.go │ │ ├── route_openbsd.go │ │ ├── route_test.go │ │ ├── sys.go │ │ ├── sys_darwin.go │ │ ├── sys_dragonfly.go │ │ ├── sys_freebsd.go │ │ ├── sys_netbsd.go │ │ ├── sys_openbsd.go │ │ ├── syscall.go │ │ ├── zsys_darwin.go │ │ ├── zsys_dragonfly.go │ │ ├── zsys_freebsd_386.go │ │ ├── zsys_freebsd_amd64.go │ │ ├── zsys_freebsd_arm.go │ │ ├── zsys_netbsd.go │ │ └── zsys_openbsd.go │ ├── trace │ │ ├── events.go │ │ ├── histogram.go │ │ ├── histogram_test.go │ │ ├── trace.go │ │ ├── trace_go16.go │ │ ├── trace_go17.go │ │ └── trace_test.go │ ├── webdav │ │ ├── file.go │ │ ├── file_go1.6.go │ │ ├── file_go1.7.go │ │ ├── file_test.go │ │ ├── if.go │ │ ├── if_test.go │ │ ├── internal │ │ │ └── xml │ │ │ │ ├── README │ │ │ │ ├── atom_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── marshal.go │ │ │ │ ├── marshal_test.go │ │ │ │ ├── read.go │ │ │ │ ├── read_test.go │ │ │ │ ├── typeinfo.go │ │ │ │ ├── xml.go │ │ │ │ └── xml_test.go │ │ ├── litmus_test_server.go │ │ ├── lock.go │ │ ├── lock_test.go │ │ ├── prop.go │ │ ├── prop_test.go │ │ ├── webdav.go │ │ ├── webdav_test.go │ │ ├── xml.go │ │ └── xml_test.go │ ├── websocket │ │ ├── client.go │ │ ├── dial.go │ │ ├── dial_test.go │ │ ├── exampledial_test.go │ │ ├── examplehandler_test.go │ │ ├── hybi.go │ │ ├── hybi_test.go │ │ ├── server.go │ │ ├── websocket.go │ │ └── websocket_test.go │ └── xsrftoken │ │ ├── xsrf.go │ │ └── xsrf_test.go │ ├── sys │ ├── .gitattributes │ ├── .gitignore │ ├── AUTHORS │ ├── CONTRIBUTING.md │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── README.md │ ├── codereview.cfg │ ├── cpu │ │ ├── cpu.go │ │ ├── cpu_arm.go │ │ ├── cpu_arm64.go │ │ ├── cpu_gc_x86.go │ │ ├── cpu_gccgo.c │ │ ├── cpu_gccgo.go │ │ ├── cpu_mips64x.go │ │ ├── cpu_mipsx.go │ │ ├── cpu_ppc64x.go │ │ ├── cpu_s390x.go │ │ ├── cpu_test.go │ │ ├── cpu_x86.go │ │ └── cpu_x86.s │ ├── plan9 │ │ ├── asm.s │ │ ├── asm_plan9_386.s │ │ ├── asm_plan9_amd64.s │ │ ├── asm_plan9_arm.s │ │ ├── const_plan9.go │ │ ├── dir_plan9.go │ │ ├── env_plan9.go │ │ ├── errors_plan9.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mksyscall.pl │ │ ├── mksysnum_plan9.sh │ │ ├── pwd_go15_plan9.go │ │ ├── pwd_plan9.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_plan9.go │ │ ├── syscall_test.go │ │ ├── zsyscall_plan9_386.go │ │ ├── zsyscall_plan9_amd64.go │ │ ├── zsyscall_plan9_arm.go │ │ └── zsysnum_plan9.go │ ├── unix │ │ ├── .gitignore │ │ ├── README.md │ │ ├── affinity_linux.go │ │ ├── aliases.go │ │ ├── asm_aix_ppc64.s │ │ ├── asm_darwin_386.s │ │ ├── asm_darwin_amd64.s │ │ ├── asm_darwin_arm.s │ │ ├── asm_darwin_arm64.s │ │ ├── asm_dragonfly_amd64.s │ │ ├── asm_freebsd_386.s │ │ ├── asm_freebsd_amd64.s │ │ ├── asm_freebsd_arm.s │ │ ├── asm_linux_386.s │ │ ├── asm_linux_amd64.s │ │ ├── asm_linux_arm.s │ │ ├── asm_linux_arm64.s │ │ ├── asm_linux_mips64x.s │ │ ├── asm_linux_mipsx.s │ │ ├── asm_linux_ppc64x.s │ │ ├── asm_linux_s390x.s │ │ ├── asm_netbsd_386.s │ │ ├── asm_netbsd_amd64.s │ │ ├── asm_netbsd_arm.s │ │ ├── asm_openbsd_386.s │ │ ├── asm_openbsd_amd64.s │ │ ├── asm_openbsd_arm.s │ │ ├── asm_solaris_amd64.s │ │ ├── bluetooth_linux.go │ │ ├── cap_freebsd.go │ │ ├── constants.go │ │ ├── creds_test.go │ │ ├── dev_aix_ppc.go │ │ ├── dev_aix_ppc64.go │ │ ├── dev_darwin.go │ │ ├── dev_dragonfly.go │ │ ├── dev_freebsd.go │ │ ├── dev_linux.go │ │ ├── dev_linux_test.go │ │ ├── dev_netbsd.go │ │ ├── dev_openbsd.go │ │ ├── dirent.go │ │ ├── endian_big.go │ │ ├── endian_little.go │ │ ├── env_unix.go │ │ ├── errors_freebsd_386.go │ │ ├── errors_freebsd_amd64.go │ │ ├── errors_freebsd_arm.go │ │ ├── example_test.go │ │ ├── export_test.go │ │ ├── fcntl.go │ │ ├── fcntl_linux_32bit.go │ │ ├── gccgo.go │ │ ├── gccgo_c.c │ │ ├── gccgo_linux_amd64.go │ │ ├── ioctl.go │ │ ├── linux │ │ │ ├── Dockerfile │ │ │ ├── mkall.go │ │ │ ├── mksysnum.pl │ │ │ └── types.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mkpost.go │ │ ├── mksyscall.pl │ │ ├── mksyscall_aix_ppc.pl │ │ ├── mksyscall_aix_ppc64.pl │ │ ├── mksyscall_solaris.pl │ │ ├── mksysctl_openbsd.pl │ │ ├── mksysnum_darwin.pl │ │ ├── mksysnum_dragonfly.pl │ │ ├── mksysnum_freebsd.pl │ │ ├── mksysnum_netbsd.pl │ │ ├── mksysnum_openbsd.pl │ │ ├── mmap_unix_test.go │ │ ├── openbsd_pledge.go │ │ ├── openbsd_test.go │ │ ├── openbsd_unveil.go │ │ ├── pagesize_unix.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── sockcmsg_linux.go │ │ ├── sockcmsg_unix.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_aix.go │ │ ├── syscall_aix_ppc.go │ │ ├── syscall_aix_ppc64.go │ │ ├── syscall_aix_test.go │ │ ├── syscall_bsd.go │ │ ├── syscall_bsd_test.go │ │ ├── syscall_darwin.go │ │ ├── syscall_darwin_386.go │ │ ├── syscall_darwin_amd64.go │ │ ├── syscall_darwin_arm.go │ │ ├── syscall_darwin_arm64.go │ │ ├── syscall_darwin_test.go │ │ ├── syscall_dragonfly.go │ │ ├── syscall_dragonfly_amd64.go │ │ ├── syscall_freebsd.go │ │ ├── syscall_freebsd_386.go │ │ ├── syscall_freebsd_amd64.go │ │ ├── syscall_freebsd_arm.go │ │ ├── syscall_freebsd_test.go │ │ ├── syscall_linux.go │ │ ├── syscall_linux_386.go │ │ ├── syscall_linux_amd64.go │ │ ├── syscall_linux_amd64_gc.go │ │ ├── syscall_linux_arm.go │ │ ├── syscall_linux_arm64.go │ │ ├── syscall_linux_gc.go │ │ ├── syscall_linux_gc_386.go │ │ ├── syscall_linux_gccgo_386.go │ │ ├── syscall_linux_gccgo_arm.go │ │ ├── syscall_linux_mips64x.go │ │ ├── syscall_linux_mipsx.go │ │ ├── syscall_linux_ppc64x.go │ │ ├── syscall_linux_riscv64.go │ │ ├── syscall_linux_s390x.go │ │ ├── syscall_linux_sparc64.go │ │ ├── syscall_linux_test.go │ │ ├── syscall_netbsd.go │ │ ├── syscall_netbsd_386.go │ │ ├── syscall_netbsd_amd64.go │ │ ├── syscall_netbsd_arm.go │ │ ├── syscall_netbsd_test.go │ │ ├── syscall_openbsd.go │ │ ├── syscall_openbsd_386.go │ │ ├── syscall_openbsd_amd64.go │ │ ├── syscall_openbsd_arm.go │ │ ├── syscall_openbsd_test.go │ │ ├── syscall_solaris.go │ │ ├── syscall_solaris_amd64.go │ │ ├── syscall_solaris_test.go │ │ ├── syscall_test.go │ │ ├── syscall_unix.go │ │ ├── syscall_unix_gc.go │ │ ├── syscall_unix_test.go │ │ ├── timestruct.go │ │ ├── timestruct_test.go │ │ ├── types_aix.go │ │ ├── types_darwin.go │ │ ├── types_dragonfly.go │ │ ├── types_freebsd.go │ │ ├── types_netbsd.go │ │ ├── types_openbsd.go │ │ ├── types_solaris.go │ │ ├── xattr_bsd.go │ │ ├── xattr_test.go │ │ ├── zerrors_aix_ppc.go │ │ ├── zerrors_aix_ppc64.go │ │ ├── zerrors_darwin_386.go │ │ ├── zerrors_darwin_amd64.go │ │ ├── zerrors_darwin_arm.go │ │ ├── zerrors_darwin_arm64.go │ │ ├── zerrors_dragonfly_amd64.go │ │ ├── zerrors_freebsd_386.go │ │ ├── zerrors_freebsd_amd64.go │ │ ├── zerrors_freebsd_arm.go │ │ ├── zerrors_linux_386.go │ │ ├── zerrors_linux_amd64.go │ │ ├── zerrors_linux_arm.go │ │ ├── zerrors_linux_arm64.go │ │ ├── zerrors_linux_mips.go │ │ ├── zerrors_linux_mips64.go │ │ ├── zerrors_linux_mips64le.go │ │ ├── zerrors_linux_mipsle.go │ │ ├── zerrors_linux_ppc64.go │ │ ├── zerrors_linux_ppc64le.go │ │ ├── zerrors_linux_riscv64.go │ │ ├── zerrors_linux_s390x.go │ │ ├── zerrors_linux_sparc64.go │ │ ├── zerrors_netbsd_386.go │ │ ├── zerrors_netbsd_amd64.go │ │ ├── zerrors_netbsd_arm.go │ │ ├── zerrors_openbsd_386.go │ │ ├── zerrors_openbsd_amd64.go │ │ ├── zerrors_openbsd_arm.go │ │ ├── zerrors_solaris_amd64.go │ │ ├── zptrace386_linux.go │ │ ├── zptracearm_linux.go │ │ ├── zptracemips_linux.go │ │ ├── zptracemipsle_linux.go │ │ ├── zsyscall_aix_ppc.go │ │ ├── zsyscall_aix_ppc64.go │ │ ├── zsyscall_aix_ppc64_gc.go │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ ├── zsyscall_darwin_386.go │ │ ├── zsyscall_darwin_amd64.go │ │ ├── zsyscall_darwin_arm.go │ │ ├── zsyscall_darwin_arm64.go │ │ ├── zsyscall_dragonfly_amd64.go │ │ ├── zsyscall_freebsd_386.go │ │ ├── zsyscall_freebsd_amd64.go │ │ ├── zsyscall_freebsd_arm.go │ │ ├── zsyscall_linux_386.go │ │ ├── zsyscall_linux_amd64.go │ │ ├── zsyscall_linux_arm.go │ │ ├── zsyscall_linux_arm64.go │ │ ├── zsyscall_linux_mips.go │ │ ├── zsyscall_linux_mips64.go │ │ ├── zsyscall_linux_mips64le.go │ │ ├── zsyscall_linux_mipsle.go │ │ ├── zsyscall_linux_ppc64.go │ │ ├── zsyscall_linux_ppc64le.go │ │ ├── zsyscall_linux_riscv64.go │ │ ├── zsyscall_linux_s390x.go │ │ ├── zsyscall_linux_sparc64.go │ │ ├── zsyscall_netbsd_386.go │ │ ├── zsyscall_netbsd_amd64.go │ │ ├── zsyscall_netbsd_arm.go │ │ ├── zsyscall_openbsd_386.go │ │ ├── zsyscall_openbsd_amd64.go │ │ ├── zsyscall_openbsd_arm.go │ │ ├── zsyscall_solaris_amd64.go │ │ ├── zsysctl_openbsd_386.go │ │ ├── zsysctl_openbsd_amd64.go │ │ ├── zsysctl_openbsd_arm.go │ │ ├── zsysnum_darwin_386.go │ │ ├── zsysnum_darwin_amd64.go │ │ ├── zsysnum_darwin_arm.go │ │ ├── zsysnum_darwin_arm64.go │ │ ├── zsysnum_dragonfly_amd64.go │ │ ├── zsysnum_freebsd_386.go │ │ ├── zsysnum_freebsd_amd64.go │ │ ├── zsysnum_freebsd_arm.go │ │ ├── zsysnum_linux_386.go │ │ ├── zsysnum_linux_amd64.go │ │ ├── zsysnum_linux_arm.go │ │ ├── zsysnum_linux_arm64.go │ │ ├── zsysnum_linux_mips.go │ │ ├── zsysnum_linux_mips64.go │ │ ├── zsysnum_linux_mips64le.go │ │ ├── zsysnum_linux_mipsle.go │ │ ├── zsysnum_linux_ppc64.go │ │ ├── zsysnum_linux_ppc64le.go │ │ ├── zsysnum_linux_riscv64.go │ │ ├── zsysnum_linux_s390x.go │ │ ├── zsysnum_linux_sparc64.go │ │ ├── zsysnum_netbsd_386.go │ │ ├── zsysnum_netbsd_amd64.go │ │ ├── zsysnum_netbsd_arm.go │ │ ├── zsysnum_openbsd_386.go │ │ ├── zsysnum_openbsd_amd64.go │ │ ├── zsysnum_openbsd_arm.go │ │ ├── ztypes_aix_ppc.go │ │ ├── ztypes_aix_ppc64.go │ │ ├── ztypes_darwin_386.go │ │ ├── ztypes_darwin_amd64.go │ │ ├── ztypes_darwin_arm.go │ │ ├── ztypes_darwin_arm64.go │ │ ├── ztypes_dragonfly_amd64.go │ │ ├── ztypes_freebsd_386.go │ │ ├── ztypes_freebsd_amd64.go │ │ ├── ztypes_freebsd_arm.go │ │ ├── ztypes_linux_386.go │ │ ├── ztypes_linux_amd64.go │ │ ├── ztypes_linux_arm.go │ │ ├── ztypes_linux_arm64.go │ │ ├── ztypes_linux_mips.go │ │ ├── ztypes_linux_mips64.go │ │ ├── ztypes_linux_mips64le.go │ │ ├── ztypes_linux_mipsle.go │ │ ├── ztypes_linux_ppc64.go │ │ ├── ztypes_linux_ppc64le.go │ │ ├── ztypes_linux_riscv64.go │ │ ├── ztypes_linux_s390x.go │ │ ├── ztypes_linux_sparc64.go │ │ ├── ztypes_netbsd_386.go │ │ ├── ztypes_netbsd_amd64.go │ │ ├── ztypes_netbsd_arm.go │ │ ├── ztypes_openbsd_386.go │ │ ├── ztypes_openbsd_amd64.go │ │ ├── ztypes_openbsd_arm.go │ │ └── ztypes_solaris_amd64.go │ └── windows │ │ ├── aliases.go │ │ ├── asm_windows_386.s │ │ ├── asm_windows_amd64.s │ │ ├── asm_windows_arm.s │ │ ├── dll_windows.go │ │ ├── env_windows.go │ │ ├── eventlog.go │ │ ├── exec_windows.go │ │ ├── memory_windows.go │ │ ├── mksyscall.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── registry │ │ ├── export_test.go │ │ ├── key.go │ │ ├── mksyscall.go │ │ ├── registry_test.go │ │ ├── syscall.go │ │ ├── value.go │ │ └── zsyscall_windows.go │ │ ├── security_windows.go │ │ ├── service.go │ │ ├── str.go │ │ ├── svc │ │ ├── debug │ │ │ ├── log.go │ │ │ └── service.go │ │ ├── event.go │ │ ├── eventlog │ │ │ ├── install.go │ │ │ ├── log.go │ │ │ └── log_test.go │ │ ├── example │ │ │ ├── beep.go │ │ │ ├── install.go │ │ │ ├── main.go │ │ │ ├── manage.go │ │ │ └── service.go │ │ ├── go12.c │ │ ├── go12.go │ │ ├── go13.go │ │ ├── mgr │ │ │ ├── config.go │ │ │ ├── mgr.go │ │ │ ├── mgr_test.go │ │ │ ├── recovery.go │ │ │ └── service.go │ │ ├── security.go │ │ ├── service.go │ │ ├── svc_test.go │ │ ├── sys_386.s │ │ ├── sys_amd64.s │ │ └── sys_arm.s │ │ ├── syscall.go │ │ ├── syscall_test.go │ │ ├── syscall_windows.go │ │ ├── syscall_windows_test.go │ │ ├── types_windows.go │ │ ├── types_windows_386.go │ │ ├── types_windows_amd64.go │ │ ├── types_windows_arm.go │ │ └── zsyscall_windows.go │ ├── text │ ├── .gitattributes │ ├── .gitignore │ ├── AUTHORS │ ├── CONTRIBUTING.md │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── README.md │ ├── cases │ │ ├── cases.go │ │ ├── context.go │ │ ├── context_test.go │ │ ├── example_test.go │ │ ├── fold.go │ │ ├── fold_test.go │ │ ├── gen.go │ │ ├── gen_trieval.go │ │ ├── icu.go │ │ ├── icu_test.go │ │ ├── info.go │ │ ├── map.go │ │ ├── map_test.go │ │ ├── tables10.0.0.go │ │ ├── tables10.0.0_test.go │ │ ├── tables9.0.0.go │ │ ├── tables9.0.0_test.go │ │ └── trieval.go │ ├── cmd │ │ └── gotext │ │ │ ├── common.go │ │ │ ├── doc.go │ │ │ ├── examples │ │ │ ├── extract │ │ │ │ ├── catalog.go │ │ │ │ ├── locales │ │ │ │ │ ├── de │ │ │ │ │ │ ├── messages.gotext.json │ │ │ │ │ │ └── out.gotext.json │ │ │ │ │ ├── en-US │ │ │ │ │ │ ├── messages.gotext.json │ │ │ │ │ │ └── out.gotext.json │ │ │ │ │ └── zh │ │ │ │ │ │ ├── messages.gotext.json │ │ │ │ │ │ └── out.gotext.json │ │ │ │ └── main.go │ │ │ ├── extract_http │ │ │ │ ├── catalog_gen.go │ │ │ │ ├── locales │ │ │ │ │ ├── de │ │ │ │ │ │ └── out.gotext.json │ │ │ │ │ ├── en-US │ │ │ │ │ │ └── out.gotext.json │ │ │ │ │ ├── en │ │ │ │ │ │ └── out.gotext.json │ │ │ │ │ └── zh │ │ │ │ │ │ └── out.gotext.json │ │ │ │ ├── main.go │ │ │ │ └── pkg │ │ │ │ │ └── pkg.go │ │ │ └── rewrite │ │ │ │ ├── main.go │ │ │ │ └── printer.go │ │ │ ├── extract.go │ │ │ ├── generate.go │ │ │ ├── main.go │ │ │ ├── rewrite.go │ │ │ └── update.go │ ├── codereview.cfg │ ├── collate │ │ ├── build │ │ │ ├── builder.go │ │ │ ├── builder_test.go │ │ │ ├── colelem.go │ │ │ ├── colelem_test.go │ │ │ ├── contract.go │ │ │ ├── contract_test.go │ │ │ ├── order.go │ │ │ ├── order_test.go │ │ │ ├── table.go │ │ │ ├── trie.go │ │ │ └── trie_test.go │ │ ├── collate.go │ │ ├── collate_test.go │ │ ├── export_test.go │ │ ├── index.go │ │ ├── maketables.go │ │ ├── option.go │ │ ├── option_test.go │ │ ├── reg_test.go │ │ ├── sort.go │ │ ├── sort_test.go │ │ ├── table_test.go │ │ ├── tables.go │ │ └── tools │ │ │ └── colcmp │ │ │ ├── Makefile │ │ │ ├── chars.go │ │ │ ├── col.go │ │ │ ├── colcmp.go │ │ │ ├── darwin.go │ │ │ ├── gen.go │ │ │ └── icu.go │ ├── currency │ │ ├── common.go │ │ ├── currency.go │ │ ├── currency_test.go │ │ ├── example_test.go │ │ ├── format.go │ │ ├── format_test.go │ │ ├── gen.go │ │ ├── gen_common.go │ │ ├── query.go │ │ ├── query_test.go │ │ ├── tables.go │ │ └── tables_test.go │ ├── date │ │ ├── data_test.go │ │ ├── gen.go │ │ ├── gen_test.go │ │ └── tables.go │ ├── doc.go │ ├── encoding │ │ ├── charmap │ │ │ ├── charmap.go │ │ │ ├── charmap_test.go │ │ │ ├── maketables.go │ │ │ └── tables.go │ │ ├── encoding.go │ │ ├── encoding_test.go │ │ ├── example_test.go │ │ ├── htmlindex │ │ │ ├── gen.go │ │ │ ├── htmlindex.go │ │ │ ├── htmlindex_test.go │ │ │ ├── map.go │ │ │ └── tables.go │ │ ├── ianaindex │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── ianaindex.go │ │ │ ├── ianaindex_test.go │ │ │ └── tables.go │ │ ├── internal │ │ │ ├── enctest │ │ │ │ └── enctest.go │ │ │ ├── identifier │ │ │ │ ├── gen.go │ │ │ │ ├── identifier.go │ │ │ │ └── mib.go │ │ │ └── internal.go │ │ ├── japanese │ │ │ ├── all.go │ │ │ ├── all_test.go │ │ │ ├── eucjp.go │ │ │ ├── iso2022jp.go │ │ │ ├── maketables.go │ │ │ ├── shiftjis.go │ │ │ └── tables.go │ │ ├── korean │ │ │ ├── all_test.go │ │ │ ├── euckr.go │ │ │ ├── maketables.go │ │ │ └── tables.go │ │ ├── simplifiedchinese │ │ │ ├── all.go │ │ │ ├── all_test.go │ │ │ ├── gbk.go │ │ │ ├── hzgb2312.go │ │ │ ├── maketables.go │ │ │ └── tables.go │ │ ├── testdata │ │ │ ├── candide-gb18030.txt │ │ │ ├── candide-utf-16le.txt │ │ │ ├── candide-utf-32be.txt │ │ │ ├── candide-utf-8.txt │ │ │ ├── candide-windows-1252.txt │ │ │ ├── rashomon-euc-jp.txt │ │ │ ├── rashomon-iso-2022-jp.txt │ │ │ ├── rashomon-shift-jis.txt │ │ │ ├── rashomon-utf-8.txt │ │ │ ├── sunzi-bingfa-gb-levels-1-and-2-hz-gb2312.txt │ │ │ ├── sunzi-bingfa-gb-levels-1-and-2-utf-8.txt │ │ │ ├── sunzi-bingfa-simplified-gbk.txt │ │ │ ├── sunzi-bingfa-simplified-utf-8.txt │ │ │ ├── sunzi-bingfa-traditional-big5.txt │ │ │ ├── sunzi-bingfa-traditional-utf-8.txt │ │ │ ├── unsu-joh-eun-nal-euc-kr.txt │ │ │ └── unsu-joh-eun-nal-utf-8.txt │ │ ├── traditionalchinese │ │ │ ├── all_test.go │ │ │ ├── big5.go │ │ │ ├── maketables.go │ │ │ └── tables.go │ │ └── unicode │ │ │ ├── override.go │ │ │ ├── unicode.go │ │ │ ├── unicode_test.go │ │ │ └── utf32 │ │ │ ├── utf32.go │ │ │ └── utf32_test.go │ ├── feature │ │ └── plural │ │ │ ├── common.go │ │ │ ├── data_test.go │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── gen_common.go │ │ │ ├── message.go │ │ │ ├── message_test.go │ │ │ ├── plural.go │ │ │ ├── plural_test.go │ │ │ └── tables.go │ ├── gen.go │ ├── go.mod │ ├── go.sum │ ├── internal │ │ ├── catmsg │ │ │ ├── catmsg.go │ │ │ ├── catmsg_test.go │ │ │ ├── codec.go │ │ │ ├── varint.go │ │ │ └── varint_test.go │ │ ├── cldrtree │ │ │ ├── cldrtree.go │ │ │ ├── cldrtree_test.go │ │ │ ├── generate.go │ │ │ ├── option.go │ │ │ ├── testdata │ │ │ │ ├── test1 │ │ │ │ │ ├── common │ │ │ │ │ │ └── main │ │ │ │ │ │ │ └── root.xml │ │ │ │ │ └── output.go │ │ │ │ └── test2 │ │ │ │ │ ├── common │ │ │ │ │ └── main │ │ │ │ │ │ ├── en.xml │ │ │ │ │ │ ├── en_001.xml │ │ │ │ │ │ ├── en_GB.xml │ │ │ │ │ │ └── root.xml │ │ │ │ │ └── output.go │ │ │ ├── tree.go │ │ │ └── type.go │ │ ├── colltab │ │ │ ├── collate_test.go │ │ │ ├── collelem.go │ │ │ ├── collelem_test.go │ │ │ ├── colltab.go │ │ │ ├── colltab_test.go │ │ │ ├── contract.go │ │ │ ├── contract_test.go │ │ │ ├── iter.go │ │ │ ├── iter_test.go │ │ │ ├── numeric.go │ │ │ ├── numeric_test.go │ │ │ ├── table.go │ │ │ ├── trie.go │ │ │ ├── trie_test.go │ │ │ ├── weighter.go │ │ │ └── weighter_test.go │ │ ├── export │ │ │ ├── README │ │ │ └── idna │ │ │ │ ├── common_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen10.0.0_test.go │ │ │ │ ├── gen9.0.0_test.go │ │ │ │ ├── gen_common.go │ │ │ │ ├── gen_trieval.go │ │ │ │ ├── idna10.0.0.go │ │ │ │ ├── idna10.0.0_test.go │ │ │ │ ├── idna9.0.0.go │ │ │ │ ├── idna9.0.0_test.go │ │ │ │ ├── idna_test.go │ │ │ │ ├── punycode.go │ │ │ │ ├── punycode_test.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ ├── trie.go │ │ │ │ └── trieval.go │ │ ├── format │ │ │ ├── format.go │ │ │ ├── parser.go │ │ │ └── parser_test.go │ │ ├── gen │ │ │ ├── bitfield │ │ │ │ ├── bitfield.go │ │ │ │ ├── bitfield_test.go │ │ │ │ ├── gen1_test.go │ │ │ │ └── gen2_test.go │ │ │ ├── code.go │ │ │ └── gen.go │ │ ├── internal.go │ │ ├── internal_test.go │ │ ├── language │ │ │ ├── common.go │ │ │ ├── compact.go │ │ │ ├── compact │ │ │ │ ├── compact.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen_index.go │ │ │ │ ├── gen_parents.go │ │ │ │ ├── gen_test.go │ │ │ │ ├── language.go │ │ │ │ ├── language_test.go │ │ │ │ ├── parents.go │ │ │ │ ├── parse_test.go │ │ │ │ ├── tables.go │ │ │ │ └── tags.go │ │ │ ├── compose.go │ │ │ ├── compose_test.go │ │ │ ├── coverage.go │ │ │ ├── gen.go │ │ │ ├── gen_common.go │ │ │ ├── language.go │ │ │ ├── language_test.go │ │ │ ├── lookup.go │ │ │ ├── lookup_test.go │ │ │ ├── match.go │ │ │ ├── match_test.go │ │ │ ├── parse.go │ │ │ ├── parse_test.go │ │ │ ├── tables.go │ │ │ └── tags.go │ │ ├── match.go │ │ ├── match_test.go │ │ ├── number │ │ │ ├── common.go │ │ │ ├── decimal.go │ │ │ ├── decimal_test.go │ │ │ ├── format.go │ │ │ ├── format_test.go │ │ │ ├── gen.go │ │ │ ├── gen_common.go │ │ │ ├── number.go │ │ │ ├── number_test.go │ │ │ ├── pattern.go │ │ │ ├── pattern_test.go │ │ │ ├── roundingmode_string.go │ │ │ ├── tables.go │ │ │ └── tables_test.go │ │ ├── stringset │ │ │ ├── set.go │ │ │ └── set_test.go │ │ ├── tag │ │ │ ├── tag.go │ │ │ └── tag_test.go │ │ ├── testtext │ │ │ ├── codesize.go │ │ │ ├── flag.go │ │ │ ├── gc.go │ │ │ ├── gccgo.go │ │ │ ├── go1_6.go │ │ │ ├── go1_7.go │ │ │ └── text.go │ │ ├── triegen │ │ │ ├── compact.go │ │ │ ├── data_test.go │ │ │ ├── example_compact_test.go │ │ │ ├── example_test.go │ │ │ ├── gen_test.go │ │ │ ├── print.go │ │ │ └── triegen.go │ │ ├── ucd │ │ │ ├── example_test.go │ │ │ ├── ucd.go │ │ │ └── ucd_test.go │ │ └── utf8internal │ │ │ └── utf8internal.go │ ├── language │ │ ├── coverage.go │ │ ├── coverage_test.go │ │ ├── display │ │ │ ├── dict.go │ │ │ ├── dict_test.go │ │ │ ├── display.go │ │ │ ├── display_test.go │ │ │ ├── examples_test.go │ │ │ ├── lookup.go │ │ │ ├── maketables.go │ │ │ └── tables.go │ │ ├── doc.go │ │ ├── examples_test.go │ │ ├── gen.go │ │ ├── go1_1.go │ │ ├── go1_2.go │ │ ├── httpexample_test.go │ │ ├── language.go │ │ ├── language_test.go │ │ ├── match.go │ │ ├── match_test.go │ │ ├── parse.go │ │ ├── parse_test.go │ │ ├── tables.go │ │ ├── tags.go │ │ └── testdata │ │ │ ├── CLDRLocaleMatcherTest.txt │ │ │ └── GoLocaleMatcherTest.txt │ ├── message │ │ ├── catalog.go │ │ ├── catalog │ │ │ ├── catalog.go │ │ │ ├── catalog_test.go │ │ │ ├── dict.go │ │ │ ├── go19.go │ │ │ └── gopre19.go │ │ ├── catalog_test.go │ │ ├── doc.go │ │ ├── examples_test.go │ │ ├── fmt_test.go │ │ ├── format.go │ │ ├── message.go │ │ ├── message_test.go │ │ ├── pipeline │ │ │ ├── extract.go │ │ │ ├── generate.go │ │ │ ├── go19_test.go │ │ │ ├── message.go │ │ │ ├── pipeline.go │ │ │ ├── pipeline_test.go │ │ │ ├── rewrite.go │ │ │ └── testdata │ │ │ │ ├── ssa │ │ │ │ ├── catalog_gen.go │ │ │ │ ├── extracted.gotext.json │ │ │ │ └── ssa.go │ │ │ │ └── test1 │ │ │ │ ├── catalog_gen.go │ │ │ │ ├── catalog_gen.go.want │ │ │ │ ├── catalog_test.go │ │ │ │ ├── extracted.gotext.json │ │ │ │ ├── extracted.gotext.json.want │ │ │ │ ├── locales │ │ │ │ ├── de │ │ │ │ │ ├── messages.gotext.json │ │ │ │ │ ├── out.gotext.json │ │ │ │ │ └── out.gotext.json.want │ │ │ │ ├── en-US │ │ │ │ │ ├── messages.gotext.json │ │ │ │ │ ├── out.gotext.json │ │ │ │ │ └── out.gotext.json.want │ │ │ │ └── zh │ │ │ │ │ ├── messages.gotext.json │ │ │ │ │ ├── out.gotext.json │ │ │ │ │ └── out.gotext.json.want │ │ │ │ └── test1.go │ │ └── print.go │ ├── number │ │ ├── doc.go │ │ ├── examples_test.go │ │ ├── format.go │ │ ├── format_test.go │ │ ├── number.go │ │ ├── number_test.go │ │ └── option.go │ ├── runes │ │ ├── cond.go │ │ ├── cond_test.go │ │ ├── example_test.go │ │ ├── runes.go │ │ └── runes_test.go │ ├── search │ │ ├── index.go │ │ ├── pattern.go │ │ ├── pattern_test.go │ │ ├── search.go │ │ └── tables.go │ ├── secure │ │ ├── bidirule │ │ │ ├── bench_test.go │ │ │ ├── bidirule.go │ │ │ ├── bidirule10.0.0.go │ │ │ ├── bidirule10.0.0_test.go │ │ │ ├── bidirule9.0.0.go │ │ │ ├── bidirule9.0.0_test.go │ │ │ └── bidirule_test.go │ │ ├── doc.go │ │ └── precis │ │ │ ├── benchmark_test.go │ │ │ ├── class.go │ │ │ ├── class_test.go │ │ │ ├── context.go │ │ │ ├── doc.go │ │ │ ├── enforce10.0.0_test.go │ │ │ ├── enforce9.0.0_test.go │ │ │ ├── enforce_test.go │ │ │ ├── gen.go │ │ │ ├── gen_trieval.go │ │ │ ├── nickname.go │ │ │ ├── options.go │ │ │ ├── profile.go │ │ │ ├── profile_test.go │ │ │ ├── profiles.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── tables_test.go │ │ │ ├── transformer.go │ │ │ └── trieval.go │ ├── transform │ │ ├── examples_test.go │ │ ├── transform.go │ │ └── transform_test.go │ ├── unicode │ │ ├── bidi │ │ │ ├── bidi.go │ │ │ ├── bracket.go │ │ │ ├── core.go │ │ │ ├── core_test.go │ │ │ ├── gen.go │ │ │ ├── gen_ranges.go │ │ │ ├── gen_trieval.go │ │ │ ├── prop.go │ │ │ ├── ranges_test.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── tables_test.go │ │ │ └── trieval.go │ │ ├── cldr │ │ │ ├── base.go │ │ │ ├── cldr.go │ │ │ ├── cldr_test.go │ │ │ ├── collate.go │ │ │ ├── collate_test.go │ │ │ ├── data_test.go │ │ │ ├── decode.go │ │ │ ├── examples_test.go │ │ │ ├── makexml.go │ │ │ ├── resolve.go │ │ │ ├── resolve_test.go │ │ │ ├── slice.go │ │ │ ├── slice_test.go │ │ │ └── xml.go │ │ ├── doc.go │ │ ├── norm │ │ │ ├── composition.go │ │ │ ├── composition_test.go │ │ │ ├── data10.0.0_test.go │ │ │ ├── data9.0.0_test.go │ │ │ ├── example_iter_test.go │ │ │ ├── example_test.go │ │ │ ├── forminfo.go │ │ │ ├── forminfo_test.go │ │ │ ├── input.go │ │ │ ├── iter.go │ │ │ ├── iter_test.go │ │ │ ├── maketables.go │ │ │ ├── normalize.go │ │ │ ├── normalize_test.go │ │ │ ├── readwriter.go │ │ │ ├── readwriter_test.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── transform.go │ │ │ ├── transform_test.go │ │ │ ├── trie.go │ │ │ ├── triegen.go │ │ │ └── ucd_test.go │ │ ├── rangetable │ │ │ ├── gen.go │ │ │ ├── merge.go │ │ │ ├── merge_test.go │ │ │ ├── rangetable.go │ │ │ ├── rangetable_test.go │ │ │ ├── tables10.0.0.go │ │ │ └── tables9.0.0.go │ │ └── runenames │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── runenames.go │ │ │ ├── runenames_test.go │ │ │ ├── tables10.0.0.go │ │ │ └── tables9.0.0.go │ └── width │ │ ├── common_test.go │ │ ├── example_test.go │ │ ├── gen.go │ │ ├── gen_common.go │ │ ├── gen_trieval.go │ │ ├── kind_string.go │ │ ├── runes_test.go │ │ ├── tables10.0.0.go │ │ ├── tables9.0.0.go │ │ ├── tables_test.go │ │ ├── transform.go │ │ ├── transform_test.go │ │ ├── trieval.go │ │ └── width.go │ └── time │ ├── AUTHORS │ ├── CONTRIBUTING.md │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── README.md │ └── rate │ ├── rate.go │ ├── rate_go16.go │ ├── rate_go17.go │ └── rate_test.go ├── gopkg.in ├── inf.v0 │ ├── LICENSE │ ├── benchmark_test.go │ ├── dec.go │ ├── dec_go1_2_test.go │ ├── dec_internal_test.go │ ├── dec_test.go │ ├── example_test.go │ ├── rounder.go │ ├── rounder_example_test.go │ └── rounder_test.go └── yaml.v2 │ ├── .travis.yml │ ├── LICENSE │ ├── LICENSE.libyaml │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── decode_test.go │ ├── emitterc.go │ ├── encode.go │ ├── encode_test.go │ ├── example_embedded_test.go │ ├── go.mod │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── suite_test.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go └── k8s.io ├── api ├── .github │ └── PULL_REQUEST_TEMPLATE.md ├── CONTRIBUTING.md ├── Godeps │ ├── Godeps.json │ ├── OWNERS │ └── Readme ├── LICENSE ├── OWNERS ├── README.md ├── SECURITY_CONTACTS ├── admission │ └── v1beta1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go ├── admissionregistration │ ├── v1alpha1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go │ └── v1beta1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go ├── apps │ ├── OWNERS │ ├── v1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go │ ├── v1beta1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go │ └── v1beta2 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go ├── authentication │ ├── OWNERS │ ├── v1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go │ └── v1beta1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go ├── authorization │ ├── OWNERS │ ├── v1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go │ └── v1beta1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go ├── autoscaling │ ├── OWNERS │ ├── v1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go │ └── v2beta1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go ├── batch │ ├── OWNERS │ ├── v1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go │ ├── v1beta1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go │ └── v2alpha1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go ├── certificates │ ├── OWNERS │ └── v1beta1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go ├── code-of-conduct.md ├── core │ └── v1 │ │ ├── annotation_key_constants.go │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── objectreference.go │ │ ├── register.go │ │ ├── resource.go │ │ ├── taint.go │ │ ├── taint_test.go │ │ ├── toleration.go │ │ ├── toleration_test.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go ├── events │ ├── OWNERS │ └── v1beta1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go ├── extensions │ ├── OWNERS │ └── v1beta1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go ├── imagepolicy │ ├── OWNERS │ └── v1alpha1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go ├── networking │ ├── OWNERS │ └── v1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go ├── policy │ ├── OWNERS │ └── v1beta1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go ├── rbac │ ├── OWNERS │ ├── v1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go │ ├── v1alpha1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go │ └── v1beta1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go ├── roundtrip_test.go ├── scheduling │ ├── v1alpha1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go │ └── v1beta1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go ├── settings │ └── v1alpha1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go └── storage │ ├── OWNERS │ ├── v1 │ ├── doc.go │ ├── generated.pb.go │ ├── generated.proto │ ├── register.go │ ├── types.go │ ├── types_swagger_doc_generated.go │ └── zz_generated.deepcopy.go │ ├── v1alpha1 │ ├── doc.go │ ├── generated.pb.go │ ├── generated.proto │ ├── register.go │ ├── types.go │ ├── types_swagger_doc_generated.go │ └── zz_generated.deepcopy.go │ └── v1beta1 │ ├── doc.go │ ├── generated.pb.go │ ├── generated.proto │ ├── register.go │ ├── types.go │ ├── types_swagger_doc_generated.go │ └── zz_generated.deepcopy.go ├── apiextensions-apiserver ├── .github │ └── PULL_REQUEST_TEMPLATE.md ├── CONTRIBUTING.md ├── Godeps │ ├── Godeps.json │ ├── OWNERS │ └── Readme ├── LICENSE ├── OWNERS ├── README.md ├── SECURITY_CONTACTS ├── artifacts │ ├── customresource-01 │ │ ├── noxu-apiservice.yaml │ │ ├── noxu-resource-definition.yaml │ │ └── noxu.yaml │ ├── example │ │ ├── apiservice.yaml │ │ ├── auth-delegator.yaml │ │ ├── auth-reader.yaml │ │ ├── rc.yaml │ │ ├── sa.yaml │ │ └── service.yaml │ └── simple-image │ │ └── Dockerfile ├── code-of-conduct.md ├── examples │ └── client-go │ │ ├── README.md │ │ ├── hack │ │ ├── update-codegen.sh │ │ └── verify-codegen.sh │ │ └── pkg │ │ ├── apis │ │ └── cr │ │ │ ├── register.go │ │ │ └── v1 │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ └── zz_generated.deepcopy.go │ │ └── client │ │ ├── clientset │ │ └── versioned │ │ │ ├── clientset.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── clientset_generated.go │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ └── typed │ │ │ └── cr │ │ │ └── v1 │ │ │ ├── cr_client.go │ │ │ ├── doc.go │ │ │ ├── example.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_cr_client.go │ │ │ └── fake_example.go │ │ │ └── generated_expansion.go │ │ ├── informers │ │ └── externalversions │ │ │ ├── cr │ │ │ ├── interface.go │ │ │ └── v1 │ │ │ │ ├── example.go │ │ │ │ └── interface.go │ │ │ ├── factory.go │ │ │ ├── generic.go │ │ │ └── internalinterfaces │ │ │ └── factory_interfaces.go │ │ └── listers │ │ └── cr │ │ └── v1 │ │ ├── example.go │ │ └── expansion_generated.go ├── hack │ ├── boilerplate.go.txt │ ├── build-image.sh │ ├── update-codegen.sh │ └── verify-codegen.sh ├── main.go ├── pkg │ ├── apis │ │ └── apiextensions │ │ │ ├── deepcopy.go │ │ │ ├── doc.go │ │ │ ├── fuzzer │ │ │ └── fuzzer.go │ │ │ ├── helpers.go │ │ │ ├── helpers_test.go │ │ │ ├── install │ │ │ ├── install.go │ │ │ └── roundtrip_test.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_jsonschema.go │ │ │ ├── v1beta1 │ │ │ ├── conversion.go │ │ │ ├── conversion_test.go │ │ │ ├── deepcopy.go │ │ │ ├── defaults.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── marshal.go │ │ │ ├── marshal_test.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_jsonschema.go │ │ │ ├── zz_generated.conversion.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.defaults.go │ │ │ ├── validation │ │ │ ├── validation.go │ │ │ └── validation_test.go │ │ │ └── zz_generated.deepcopy.go │ ├── apiserver │ │ ├── apiserver.go │ │ ├── conversion │ │ │ ├── converter.go │ │ │ └── nop_converter.go │ │ ├── customresource_discovery.go │ │ ├── customresource_discovery_controller.go │ │ ├── customresource_handler.go │ │ ├── customresource_handler_test.go │ │ ├── jsonpath_test.go │ │ └── validation │ │ │ ├── validation.go │ │ │ └── validation_test.go │ ├── client │ │ ├── clientset │ │ │ ├── clientset │ │ │ │ ├── clientset.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── clientset_generated.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ ├── scheme │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ └── typed │ │ │ │ │ └── apiextensions │ │ │ │ │ └── v1beta1 │ │ │ │ │ ├── apiextensions_client.go │ │ │ │ │ ├── customresourcedefinition.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_apiextensions_client.go │ │ │ │ │ └── fake_customresourcedefinition.go │ │ │ │ │ └── generated_expansion.go │ │ │ └── internalclientset │ │ │ │ ├── clientset.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── clientset_generated.go │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ │ ├── scheme │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ │ └── typed │ │ │ │ └── apiextensions │ │ │ │ └── internalversion │ │ │ │ ├── apiextensions_client.go │ │ │ │ ├── customresourcedefinition.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_apiextensions_client.go │ │ │ │ └── fake_customresourcedefinition.go │ │ │ │ └── generated_expansion.go │ │ ├── informers │ │ │ ├── externalversions │ │ │ │ ├── apiextensions │ │ │ │ │ ├── interface.go │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── customresourcedefinition.go │ │ │ │ │ │ └── interface.go │ │ │ │ ├── factory.go │ │ │ │ ├── generic.go │ │ │ │ └── internalinterfaces │ │ │ │ │ └── factory_interfaces.go │ │ │ └── internalversion │ │ │ │ ├── apiextensions │ │ │ │ ├── interface.go │ │ │ │ └── internalversion │ │ │ │ │ ├── customresourcedefinition.go │ │ │ │ │ └── interface.go │ │ │ │ ├── factory.go │ │ │ │ ├── generic.go │ │ │ │ └── internalinterfaces │ │ │ │ └── factory_interfaces.go │ │ └── listers │ │ │ └── apiextensions │ │ │ ├── internalversion │ │ │ ├── customresourcedefinition.go │ │ │ └── expansion_generated.go │ │ │ └── v1beta1 │ │ │ ├── customresourcedefinition.go │ │ │ └── expansion_generated.go │ ├── cmd │ │ └── server │ │ │ └── start.go │ ├── controller │ │ ├── establish │ │ │ └── establishing_controller.go │ │ ├── finalizer │ │ │ └── crd_finalizer.go │ │ └── status │ │ │ ├── naming_controller.go │ │ │ └── naming_controller_test.go │ ├── features │ │ ├── OWNERS │ │ └── kube_features.go │ └── registry │ │ ├── customresource │ │ ├── etcd.go │ │ ├── etcd_test.go │ │ ├── registry.go │ │ ├── status_strategy.go │ │ ├── status_strategy_test.go │ │ ├── strategy.go │ │ ├── tableconvertor │ │ │ ├── tableconvertor.go │ │ │ └── tableconvertor_test.go │ │ └── validator.go │ │ └── customresourcedefinition │ │ ├── etcd.go │ │ └── strategy.go └── test │ └── integration │ ├── apiserver.local.config │ └── certificates │ │ ├── apiserver.crt │ │ └── apiserver.key │ ├── basic_test.go │ ├── finalization_test.go │ ├── helpers.go │ ├── objectmeta_test.go │ ├── registration_test.go │ ├── subresources_test.go │ ├── table_test.go │ ├── testserver │ ├── resources.go │ └── start.go │ ├── validation_test.go │ ├── versioning_test.go │ └── yaml_test.go ├── apimachinery ├── .github │ └── PULL_REQUEST_TEMPLATE.md ├── CONTRIBUTING.md ├── Godeps │ ├── Godeps.json │ ├── OWNERS │ └── Readme ├── LICENSE ├── OWNERS ├── README.md ├── SECURITY_CONTACTS ├── code-of-conduct.md ├── pkg │ ├── OWNERS │ ├── api │ │ ├── equality │ │ │ └── semantic.go │ │ ├── errors │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ └── errors_test.go │ │ ├── meta │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── firsthit_restmapper.go │ │ │ ├── help.go │ │ │ ├── interfaces.go │ │ │ ├── lazy.go │ │ │ ├── meta.go │ │ │ ├── meta_test.go │ │ │ ├── multirestmapper.go │ │ │ ├── multirestmapper_test.go │ │ │ ├── priority.go │ │ │ ├── priority_test.go │ │ │ ├── restmapper.go │ │ │ ├── restmapper_test.go │ │ │ ├── table │ │ │ │ └── table.go │ │ │ └── testrestmapper │ │ │ │ └── test_restmapper.go │ │ ├── resource │ │ │ ├── OWNERS │ │ │ ├── amount.go │ │ │ ├── amount_test.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── math.go │ │ │ ├── math_test.go │ │ │ ├── quantity.go │ │ │ ├── quantity_example_test.go │ │ │ ├── quantity_proto.go │ │ │ ├── quantity_proto_test.go │ │ │ ├── quantity_test.go │ │ │ ├── scale_int.go │ │ │ ├── scale_int_test.go │ │ │ ├── suffix.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── testing │ │ │ ├── codec.go │ │ │ ├── fuzzer │ │ │ │ ├── fuzzer.go │ │ │ │ ├── valuefuzz.go │ │ │ │ └── valuefuzz_test.go │ │ │ └── roundtrip │ │ │ │ └── roundtrip.go │ │ └── validation │ │ │ ├── doc.go │ │ │ ├── generic.go │ │ │ ├── objectmeta.go │ │ │ ├── objectmeta_test.go │ │ │ └── path │ │ │ ├── name.go │ │ │ └── name_test.go │ ├── apis │ │ ├── meta │ │ │ ├── fuzzer │ │ │ │ └── fuzzer.go │ │ │ ├── internalversion │ │ │ │ ├── conversion.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── register_test.go │ │ │ │ ├── roundtrip_test.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── v1 │ │ │ │ ├── OWNERS │ │ │ │ ├── controller_ref.go │ │ │ │ ├── controller_ref_test.go │ │ │ │ ├── conversion.go │ │ │ │ ├── conversion_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── duration.go │ │ │ │ ├── duration_test.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── group_version.go │ │ │ │ ├── group_version_test.go │ │ │ │ ├── helpers.go │ │ │ │ ├── helpers_test.go │ │ │ │ ├── labels.go │ │ │ │ ├── labels_test.go │ │ │ │ ├── meta.go │ │ │ │ ├── micro_time.go │ │ │ │ ├── micro_time_proto.go │ │ │ │ ├── micro_time_test.go │ │ │ │ ├── register.go │ │ │ │ ├── time.go │ │ │ │ ├── time_proto.go │ │ │ │ ├── time_test.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── types_test.go │ │ │ │ ├── unstructured │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── helpers_test.go │ │ │ │ │ ├── unstructured.go │ │ │ │ │ ├── unstructured_list.go │ │ │ │ │ ├── unstructured_list_test.go │ │ │ │ │ ├── unstructured_test.go │ │ │ │ │ ├── unstructuredscheme │ │ │ │ │ │ └── scheme.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── validation │ │ │ │ │ ├── validation.go │ │ │ │ │ └── validation_test.go │ │ │ │ ├── watch.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.defaults.go │ │ │ └── v1beta1 │ │ │ │ ├── conversion.go │ │ │ │ ├── deepcopy.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.defaults.go │ │ └── testapigroup │ │ │ ├── doc.go │ │ │ ├── fuzzer │ │ │ └── fuzzer.go │ │ │ ├── install │ │ │ ├── install.go │ │ │ └── roundtrip_test.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── v1 │ │ │ ├── conversion.go │ │ │ ├── defaults.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── zz_generated.conversion.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.defaults.go │ │ │ └── zz_generated.deepcopy.go │ ├── conversion │ │ ├── converter.go │ │ ├── converter_test.go │ │ ├── deep_equal.go │ │ ├── doc.go │ │ ├── helper.go │ │ ├── helper_test.go │ │ └── queryparams │ │ │ ├── convert.go │ │ │ ├── convert_test.go │ │ │ └── doc.go │ ├── fields │ │ ├── doc.go │ │ ├── fields.go │ │ ├── fields_test.go │ │ ├── requirements.go │ │ ├── selector.go │ │ └── selector_test.go │ ├── labels │ │ ├── doc.go │ │ ├── labels.go │ │ ├── labels_test.go │ │ ├── selector.go │ │ ├── selector_test.go │ │ └── zz_generated.deepcopy.go │ ├── runtime │ │ ├── codec.go │ │ ├── codec_check.go │ │ ├── conversion.go │ │ ├── conversion_test.go │ │ ├── converter.go │ │ ├── converter_test.go │ │ ├── doc.go │ │ ├── embedded.go │ │ ├── embedded_test.go │ │ ├── error.go │ │ ├── extension.go │ │ ├── extension_test.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── helper.go │ │ ├── interfaces.go │ │ ├── local_scheme_test.go │ │ ├── register.go │ │ ├── schema │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── group_version.go │ │ │ ├── group_version_test.go │ │ │ └── interfaces.go │ │ ├── scheme.go │ │ ├── scheme_builder.go │ │ ├── scheme_test.go │ │ ├── serializer │ │ │ ├── codec_factory.go │ │ │ ├── codec_test.go │ │ │ ├── json │ │ │ │ ├── json.go │ │ │ │ ├── json_test.go │ │ │ │ ├── meta.go │ │ │ │ └── meta_test.go │ │ │ ├── negotiated_codec.go │ │ │ ├── protobuf │ │ │ │ ├── doc.go │ │ │ │ └── protobuf.go │ │ │ ├── protobuf_extension.go │ │ │ ├── recognizer │ │ │ │ ├── recognizer.go │ │ │ │ └── testing │ │ │ │ │ └── recognizer_test.go │ │ │ ├── sparse_test.go │ │ │ ├── streaming │ │ │ │ ├── streaming.go │ │ │ │ └── streaming_test.go │ │ │ ├── testing │ │ │ │ ├── doc.go │ │ │ │ ├── types.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── versioning │ │ │ │ ├── versioning.go │ │ │ │ └── versioning_test.go │ │ │ └── yaml │ │ │ │ └── yaml.go │ │ ├── swagger_doc_generator.go │ │ ├── swagger_doc_generator_test.go │ │ ├── testing │ │ │ ├── doc.go │ │ │ ├── types.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── types.go │ │ ├── types_proto.go │ │ └── zz_generated.deepcopy.go │ ├── selection │ │ └── operator.go │ ├── test │ │ ├── api_meta_help_test.go │ │ ├── api_meta_meta_test.go │ │ ├── apis_meta_v1_unstructed_unstructure_test.go │ │ ├── runtime_helper_test.go │ │ ├── runtime_serializer_protobuf_protobuf_test.go │ │ ├── runtime_unversioned_test.go │ │ ├── util.go │ │ └── zz_generated.deepcopy.go │ ├── types │ │ ├── doc.go │ │ ├── namespacedname.go │ │ ├── nodename.go │ │ ├── patch.go │ │ └── uid.go │ ├── util │ │ ├── cache │ │ │ ├── cache.go │ │ │ ├── cache_test.go │ │ │ ├── lruexpirecache.go │ │ │ └── lruexpirecache_test.go │ │ ├── clock │ │ │ ├── clock.go │ │ │ └── clock_test.go │ │ ├── diff │ │ │ ├── diff.go │ │ │ └── diff_test.go │ │ ├── duration │ │ │ └── duration.go │ │ ├── errors │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ └── errors_test.go │ │ ├── framer │ │ │ ├── framer.go │ │ │ └── framer_test.go │ │ ├── httpstream │ │ │ ├── doc.go │ │ │ ├── httpstream.go │ │ │ ├── httpstream_test.go │ │ │ └── spdy │ │ │ │ ├── connection.go │ │ │ │ ├── connection_test.go │ │ │ │ ├── roundtripper.go │ │ │ │ ├── roundtripper_test.go │ │ │ │ ├── upgrade.go │ │ │ │ └── upgrade_test.go │ │ ├── initialization │ │ │ └── initialization.go │ │ ├── intstr │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── intstr.go │ │ │ └── intstr_test.go │ │ ├── json │ │ │ ├── json.go │ │ │ └── json_test.go │ │ ├── jsonmergepatch │ │ │ ├── patch.go │ │ │ └── patch_test.go │ │ ├── mergepatch │ │ │ ├── OWNERS │ │ │ ├── errors.go │ │ │ ├── util.go │ │ │ └── util_test.go │ │ ├── net │ │ │ ├── http.go │ │ │ ├── http_test.go │ │ │ ├── interface.go │ │ │ ├── interface_test.go │ │ │ ├── port_range.go │ │ │ ├── port_range_test.go │ │ │ ├── port_split.go │ │ │ ├── port_split_test.go │ │ │ ├── util.go │ │ │ └── util_test.go │ │ ├── proxy │ │ │ ├── dial.go │ │ │ ├── dial_test.go │ │ │ ├── doc.go │ │ │ ├── transport.go │ │ │ ├── transport_test.go │ │ │ ├── upgradeaware.go │ │ │ └── upgradeaware_test.go │ │ ├── rand │ │ │ ├── rand.go │ │ │ └── rand_test.go │ │ ├── remotecommand │ │ │ └── constants.go │ │ ├── runtime │ │ │ ├── runtime.go │ │ │ └── runtime_test.go │ │ ├── sets │ │ │ ├── byte.go │ │ │ ├── doc.go │ │ │ ├── empty.go │ │ │ ├── int.go │ │ │ ├── int64.go │ │ │ ├── set_test.go │ │ │ ├── string.go │ │ │ └── types │ │ │ │ └── types.go │ │ ├── strategicpatch │ │ │ ├── OWNERS │ │ │ ├── errors.go │ │ │ ├── meta.go │ │ │ ├── patch.go │ │ │ ├── patch_test.go │ │ │ ├── testdata │ │ │ │ ├── swagger-merge-item.json │ │ │ │ └── swagger-precision-item.json │ │ │ ├── testing │ │ │ │ └── openapi.go │ │ │ └── types.go │ │ ├── uuid │ │ │ └── uuid.go │ │ ├── validation │ │ │ ├── field │ │ │ │ ├── errors.go │ │ │ │ ├── errors_test.go │ │ │ │ ├── path.go │ │ │ │ └── path_test.go │ │ │ ├── validation.go │ │ │ └── validation_test.go │ │ ├── wait │ │ │ ├── doc.go │ │ │ ├── wait.go │ │ │ └── wait_test.go │ │ ├── waitgroup │ │ │ ├── doc.go │ │ │ ├── waitgroup.go │ │ │ └── waitgroup_test.go │ │ └── yaml │ │ │ ├── decoder.go │ │ │ └── decoder_test.go │ ├── version │ │ ├── doc.go │ │ ├── helpers.go │ │ ├── helpers_test.go │ │ └── types.go │ └── watch │ │ ├── doc.go │ │ ├── filter.go │ │ ├── filter_test.go │ │ ├── mux.go │ │ ├── mux_test.go │ │ ├── streamwatcher.go │ │ ├── streamwatcher_test.go │ │ ├── until.go │ │ ├── until_test.go │ │ ├── watch.go │ │ ├── watch_test.go │ │ └── zz_generated.deepcopy.go └── third_party │ └── forked │ └── golang │ ├── json │ ├── OWNERS │ ├── fields.go │ └── fields_test.go │ ├── netutil │ └── addr.go │ └── reflect │ ├── deep_equal.go │ └── deep_equal_test.go ├── apiserver ├── .github │ └── PULL_REQUEST_TEMPLATE.md ├── .import-restrictions ├── CONTRIBUTING.md ├── Godeps │ ├── Godeps.json │ ├── OWNERS │ └── Readme ├── LICENSE ├── OWNERS ├── README.md ├── SECURITY_CONTACTS ├── code-of-conduct.md ├── pkg │ ├── admission │ │ ├── attributes.go │ │ ├── attributes_test.go │ │ ├── audit.go │ │ ├── audit_test.go │ │ ├── chain.go │ │ ├── chain_test.go │ │ ├── config.go │ │ ├── config_test.go │ │ ├── configuration │ │ │ ├── configuration_manager.go │ │ │ ├── configuration_manager_test.go │ │ │ ├── initializer_manager.go │ │ │ ├── initializer_manager_test.go │ │ │ ├── mutating_webhook_manager.go │ │ │ ├── mutating_webhook_manager_test.go │ │ │ ├── validating_webhook_manager.go │ │ │ └── validating_webhook_manager_test.go │ │ ├── decorator.go │ │ ├── errors.go │ │ ├── errors_test.go │ │ ├── handler.go │ │ ├── handler_test.go │ │ ├── initializer │ │ │ ├── initializer.go │ │ │ ├── initializer_test.go │ │ │ └── interfaces.go │ │ ├── interfaces.go │ │ ├── metrics │ │ │ ├── metrics.go │ │ │ ├── metrics_test.go │ │ │ └── testutil_test.go │ │ ├── plugin │ │ │ ├── initialization │ │ │ │ ├── initialization.go │ │ │ │ └── initialization_test.go │ │ │ ├── namespace │ │ │ │ └── lifecycle │ │ │ │ │ ├── admission.go │ │ │ │ │ └── admission_test.go │ │ │ └── webhook │ │ │ │ ├── config │ │ │ │ ├── apis │ │ │ │ │ └── webhookadmission │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── install │ │ │ │ │ │ └── install.go │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── authentication.go │ │ │ │ ├── authentication_test.go │ │ │ │ ├── client.go │ │ │ │ ├── kubeconfig.go │ │ │ │ ├── serviceresolver.go │ │ │ │ └── serviceresolver_test.go │ │ │ │ ├── errors │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── statuserror.go │ │ │ │ └── statuserror_test.go │ │ │ │ ├── generic │ │ │ │ ├── conversion.go │ │ │ │ ├── conversion_test.go │ │ │ │ ├── interfaces.go │ │ │ │ └── webhook.go │ │ │ │ ├── initializer │ │ │ │ ├── initializer.go │ │ │ │ └── initializer_test.go │ │ │ │ ├── mutating │ │ │ │ ├── dispatcher.go │ │ │ │ ├── dispatcher_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── plugin.go │ │ │ │ └── plugin_test.go │ │ │ │ ├── namespace │ │ │ │ ├── doc.go │ │ │ │ ├── matcher.go │ │ │ │ └── matcher_test.go │ │ │ │ ├── request │ │ │ │ ├── admissionreview.go │ │ │ │ └── doc.go │ │ │ │ ├── rules │ │ │ │ ├── rules.go │ │ │ │ └── rules_test.go │ │ │ │ ├── testcerts │ │ │ │ ├── certs.go │ │ │ │ ├── doc.go │ │ │ │ └── gencerts.sh │ │ │ │ ├── testing │ │ │ │ ├── authentication_info_resolver.go │ │ │ │ ├── service_resolver.go │ │ │ │ ├── testcase.go │ │ │ │ └── webhook_server.go │ │ │ │ └── validating │ │ │ │ ├── dispatcher.go │ │ │ │ ├── doc.go │ │ │ │ ├── plugin.go │ │ │ │ └── plugin_test.go │ │ └── plugins.go │ ├── apis │ │ ├── apiserver │ │ │ ├── doc.go │ │ │ ├── install │ │ │ │ └── install.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.defaults.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── audit │ │ │ ├── doc.go │ │ │ ├── fuzzer │ │ │ │ └── fuzzer.go │ │ │ ├── helpers.go │ │ │ ├── install │ │ │ │ ├── install.go │ │ │ │ └── roundtrip_test.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── v1alpha1 │ │ │ │ ├── conversion.go │ │ │ │ ├── conversion_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.defaults.go │ │ │ ├── v1beta1 │ │ │ │ ├── conversion.go │ │ │ │ ├── conversion_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.defaults.go │ │ │ ├── validation │ │ │ │ ├── validation.go │ │ │ │ └── validation_test.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── example │ │ │ ├── doc.go │ │ │ ├── fuzzer │ │ │ │ └── fuzzer.go │ │ │ ├── install │ │ │ │ ├── install.go │ │ │ │ └── roundtrip_test.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── v1 │ │ │ │ ├── conversion.go │ │ │ │ ├── defaults.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.defaults.go │ │ │ └── zz_generated.deepcopy.go │ │ └── example2 │ │ │ ├── doc.go │ │ │ ├── install │ │ │ ├── install.go │ │ │ └── roundtrip_test.go │ │ │ ├── register.go │ │ │ ├── v1 │ │ │ ├── conversion.go │ │ │ ├── defaults.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── zz_generated.conversion.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.defaults.go │ │ │ └── zz_generated.deepcopy.go │ ├── audit │ │ ├── format.go │ │ ├── metrics.go │ │ ├── policy │ │ │ ├── checker.go │ │ │ ├── checker_test.go │ │ │ ├── reader.go │ │ │ └── reader_test.go │ │ ├── request.go │ │ ├── request_test.go │ │ ├── scheme.go │ │ ├── types.go │ │ ├── union.go │ │ └── union_test.go │ ├── authentication │ │ ├── authenticator │ │ │ └── interfaces.go │ │ ├── authenticatorfactory │ │ │ ├── delegating.go │ │ │ ├── loopback.go │ │ │ └── requestheader.go │ │ ├── group │ │ │ ├── authenticated_group_adder.go │ │ │ ├── group_adder.go │ │ │ ├── group_adder_test.go │ │ │ ├── token_group_adder.go │ │ │ └── token_group_adder_test.go │ │ ├── request │ │ │ ├── anonymous │ │ │ │ ├── anonymous.go │ │ │ │ └── anonymous_test.go │ │ │ ├── bearertoken │ │ │ │ ├── bearertoken.go │ │ │ │ └── bearertoken_test.go │ │ │ ├── headerrequest │ │ │ │ ├── requestheader.go │ │ │ │ └── requestheader_test.go │ │ │ ├── union │ │ │ │ ├── union.go │ │ │ │ └── unionauth_test.go │ │ │ ├── websocket │ │ │ │ ├── protocol.go │ │ │ │ └── protocol_test.go │ │ │ └── x509 │ │ │ │ ├── doc.go │ │ │ │ ├── testdata │ │ │ │ ├── client-expired.pem │ │ │ │ ├── client-valid.pem │ │ │ │ ├── client.config.json │ │ │ │ ├── client.csr.json │ │ │ │ ├── generate.sh │ │ │ │ ├── intermediate.config.json │ │ │ │ ├── intermediate.csr.json │ │ │ │ ├── intermediate.pem │ │ │ │ ├── root.csr.json │ │ │ │ └── root.pem │ │ │ │ ├── x509.go │ │ │ │ └── x509_test.go │ │ ├── serviceaccount │ │ │ ├── util.go │ │ │ └── util_test.go │ │ ├── token │ │ │ ├── cache │ │ │ │ ├── cache_simple.go │ │ │ │ ├── cache_striped.go │ │ │ │ ├── cache_test.go │ │ │ │ ├── cached_token_authenticator.go │ │ │ │ └── cached_token_authenticator_test.go │ │ │ ├── tokenfile │ │ │ │ ├── tokenfile.go │ │ │ │ └── tokenfile_test.go │ │ │ └── union │ │ │ │ ├── union.go │ │ │ │ └── unionauth_test.go │ │ └── user │ │ │ ├── doc.go │ │ │ └── user.go │ ├── authorization │ │ ├── authorizer │ │ │ ├── interfaces.go │ │ │ └── rule.go │ │ ├── authorizerfactory │ │ │ ├── OWNERS │ │ │ ├── builtin.go │ │ │ ├── builtin_test.go │ │ │ └── delegating.go │ │ └── union │ │ │ ├── union.go │ │ │ └── union_test.go │ ├── endpoints │ │ ├── apiserver_test.go │ │ ├── audit_test.go │ │ ├── discovery │ │ │ ├── addresses.go │ │ │ ├── addresses_test.go │ │ │ ├── group.go │ │ │ ├── legacy.go │ │ │ ├── root.go │ │ │ ├── root_test.go │ │ │ ├── util.go │ │ │ └── version.go │ │ ├── doc.go │ │ ├── filters │ │ │ ├── OWNERS │ │ │ ├── audit.go │ │ │ ├── audit_test.go │ │ │ ├── authentication.go │ │ │ ├── authentication_test.go │ │ │ ├── authn_audit.go │ │ │ ├── authn_audit_test.go │ │ │ ├── authorization.go │ │ │ ├── authorization_test.go │ │ │ ├── doc.go │ │ │ ├── impersonation.go │ │ │ ├── impersonation_test.go │ │ │ ├── legacy_audit.go │ │ │ ├── legacy_audit_test.go │ │ │ ├── requestinfo.go │ │ │ └── requestinfo_test.go │ │ ├── groupversion.go │ │ ├── handlers │ │ │ ├── create.go │ │ │ ├── delete.go │ │ │ ├── doc.go │ │ │ ├── get.go │ │ │ ├── namer.go │ │ │ ├── namer_test.go │ │ │ ├── negotiation │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── negotiate.go │ │ │ │ └── negotiate_test.go │ │ │ ├── patch.go │ │ │ ├── response.go │ │ │ ├── responsewriters │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── errors_test.go │ │ │ │ ├── status.go │ │ │ │ ├── status_test.go │ │ │ │ └── writers.go │ │ │ ├── rest.go │ │ │ ├── rest_test.go │ │ │ ├── update.go │ │ │ └── watch.go │ │ ├── installer.go │ │ ├── installer_test.go │ │ ├── metrics │ │ │ ├── OWNERS │ │ │ ├── metrics.go │ │ │ └── metrics_test.go │ │ ├── openapi │ │ │ ├── OWNERS │ │ │ ├── openapi.go │ │ │ ├── openapi_test.go │ │ │ └── testing │ │ │ │ ├── types.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── patchhandler_test.go │ │ ├── request │ │ │ ├── OWNERS │ │ │ ├── context.go │ │ │ ├── context_test.go │ │ │ ├── doc.go │ │ │ ├── requestinfo.go │ │ │ └── requestinfo_test.go │ │ ├── testing │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── types.go │ │ │ └── zz_generated.deepcopy.go │ │ └── watch_test.go │ ├── features │ │ ├── OWNERS │ │ └── kube_features.go │ ├── registry │ │ ├── doc.go │ │ ├── generic │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── matcher.go │ │ │ ├── options.go │ │ │ ├── registry │ │ │ │ ├── decorated_watcher.go │ │ │ │ ├── decorated_watcher_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── storage_factory.go │ │ │ │ ├── store.go │ │ │ │ └── store_test.go │ │ │ ├── rest │ │ │ │ ├── doc.go │ │ │ │ ├── response_checker.go │ │ │ │ ├── response_checker_test.go │ │ │ │ ├── streamer.go │ │ │ │ └── streamer_test.go │ │ │ ├── storage_decorator.go │ │ │ └── testing │ │ │ │ └── tester.go │ │ └── rest │ │ │ ├── OWNERS │ │ │ ├── create.go │ │ │ ├── delete.go │ │ │ ├── doc.go │ │ │ ├── export.go │ │ │ ├── meta.go │ │ │ ├── meta_test.go │ │ │ ├── rest.go │ │ │ ├── resttest │ │ │ └── resttest.go │ │ │ ├── table.go │ │ │ ├── update.go │ │ │ └── zz_generated.deepcopy.go │ ├── server │ │ ├── config.go │ │ ├── config_selfclient.go │ │ ├── config_selfclient_test.go │ │ ├── config_test.go │ │ ├── doc.go │ │ ├── filters │ │ │ ├── OWNERS │ │ │ ├── compression.go │ │ │ ├── compression_test.go │ │ │ ├── cors.go │ │ │ ├── cors_test.go │ │ │ ├── doc.go │ │ │ ├── longrunning.go │ │ │ ├── maxinflight.go │ │ │ ├── maxinflight_test.go │ │ │ ├── timeout.go │ │ │ ├── timeout_test.go │ │ │ ├── waitgroup.go │ │ │ └── wrap.go │ │ ├── genericapiserver.go │ │ ├── genericapiserver_test.go │ │ ├── handler.go │ │ ├── healthz.go │ │ ├── healthz │ │ │ ├── doc.go │ │ │ ├── healthz.go │ │ │ └── healthz_test.go │ │ ├── hooks.go │ │ ├── httplog │ │ │ ├── doc.go │ │ │ ├── httplog.go │ │ │ └── httplog_test.go │ │ ├── mux │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── pathrecorder.go │ │ │ └── pathrecorder_test.go │ │ ├── options │ │ │ ├── OWNERS │ │ │ ├── admission.go │ │ │ ├── admission_test.go │ │ │ ├── api_enablement.go │ │ │ ├── audit.go │ │ │ ├── audit_test.go │ │ │ ├── authentication.go │ │ │ ├── authorization.go │ │ │ ├── coreapi.go │ │ │ ├── doc.go │ │ │ ├── encryptionconfig │ │ │ │ ├── config.go │ │ │ │ ├── config_test.go │ │ │ │ └── types.go │ │ │ ├── etcd.go │ │ │ ├── feature.go │ │ │ ├── recommended.go │ │ │ ├── server_run_options.go │ │ │ ├── serving.go │ │ │ ├── serving_test.go │ │ │ ├── serving_with_loopback.go │ │ │ └── testdata │ │ │ │ ├── apiserver-loopback-client__ │ │ │ │ ├── cert │ │ │ │ ├── key │ │ │ │ └── localhost__ │ │ │ │ │ ├── cert │ │ │ │ │ └── key │ │ │ │ ├── localhost__ │ │ │ │ ├── apiserver-loopback-client__ │ │ │ │ │ ├── cert │ │ │ │ │ └── key │ │ │ │ ├── cert │ │ │ │ └── key │ │ │ │ ├── localhost__10.0.0.1,127.0.0.1 │ │ │ │ ├── cert │ │ │ │ ├── key │ │ │ │ └── test.com__10.0.0.1 │ │ │ │ │ ├── cert │ │ │ │ │ └── key │ │ │ │ ├── localhost__127.0.0.1 │ │ │ │ ├── cert │ │ │ │ ├── key │ │ │ │ ├── localhost__ │ │ │ │ │ ├── cert │ │ │ │ │ └── key │ │ │ │ ├── test.com__ │ │ │ │ │ ├── cert │ │ │ │ │ └── key │ │ │ │ └── test.com_star.test.com_ │ │ │ │ │ ├── cert │ │ │ │ │ └── key │ │ │ │ ├── localhost_test.com_127.0.0.1 │ │ │ │ ├── cert │ │ │ │ └── key │ │ │ │ └── test.com__ │ │ │ │ ├── cert │ │ │ │ ├── key │ │ │ │ └── localhost__ │ │ │ │ ├── cert │ │ │ │ └── key │ │ ├── plugins.go │ │ ├── resourceconfig │ │ │ ├── doc.go │ │ │ ├── helpers.go │ │ │ └── helpers_test.go │ │ ├── routes │ │ │ ├── OWNERS │ │ │ ├── data │ │ │ │ ├── README.md │ │ │ │ └── swagger │ │ │ │ │ └── datafile.go │ │ │ ├── doc.go │ │ │ ├── flags.go │ │ │ ├── index.go │ │ │ ├── metrics.go │ │ │ ├── openapi.go │ │ │ ├── profiling.go │ │ │ ├── swagger.go │ │ │ ├── swaggerui.go │ │ │ └── version.go │ │ ├── serve.go │ │ ├── signal.go │ │ ├── signal_posix.go │ │ ├── signal_windows.go │ │ └── storage │ │ │ ├── doc.go │ │ │ ├── resource_config.go │ │ │ ├── resource_config_test.go │ │ │ ├── resource_encoding_config.go │ │ │ ├── storage_codec.go │ │ │ ├── storage_factory.go │ │ │ └── storage_factory_test.go │ ├── storage │ │ ├── OWNERS │ │ ├── cacher.go │ │ ├── cacher_whitebox_test.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── errors │ │ │ ├── doc.go │ │ │ └── storage.go │ │ ├── etcd │ │ │ ├── OWNERS │ │ │ ├── api_object_versioner.go │ │ │ ├── api_object_versioner_test.go │ │ │ ├── doc.go │ │ │ ├── etcd_helper.go │ │ │ ├── etcd_helper_test.go │ │ │ ├── etcd_watcher.go │ │ │ ├── etcd_watcher_test.go │ │ │ ├── etcdtest │ │ │ │ ├── doc.go │ │ │ │ └── etcdtest.go │ │ │ ├── metrics │ │ │ │ └── metrics.go │ │ │ ├── testing │ │ │ │ ├── testingcert │ │ │ │ │ └── certificates.go │ │ │ │ └── utils.go │ │ │ └── util │ │ │ │ ├── doc.go │ │ │ │ ├── etcd_util.go │ │ │ │ └── etcd_util_test.go │ │ ├── etcd3 │ │ │ ├── OWNERS │ │ │ ├── compact.go │ │ │ ├── compact_test.go │ │ │ ├── errors.go │ │ │ ├── event.go │ │ │ ├── lease_manager.go │ │ │ ├── lease_manager_test.go │ │ │ ├── preflight │ │ │ │ ├── checks.go │ │ │ │ └── checks_test.go │ │ │ ├── store.go │ │ │ ├── store_test.go │ │ │ ├── watcher.go │ │ │ └── watcher_test.go │ │ ├── interfaces.go │ │ ├── names │ │ │ ├── generate.go │ │ │ └── generate_test.go │ │ ├── selection_predicate.go │ │ ├── selection_predicate_test.go │ │ ├── storagebackend │ │ │ ├── OWNERS │ │ │ ├── config.go │ │ │ └── factory │ │ │ │ ├── etcd2.go │ │ │ │ ├── etcd3.go │ │ │ │ ├── factory.go │ │ │ │ └── tls_test.go │ │ ├── testing │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── types.go │ │ │ ├── utils.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── tests │ │ │ ├── cacher_test.go │ │ │ └── utils.go │ │ ├── time_budget.go │ │ ├── time_budget_test.go │ │ ├── util.go │ │ ├── util_test.go │ │ ├── value │ │ │ ├── encrypt │ │ │ │ ├── aes │ │ │ │ │ ├── aes.go │ │ │ │ │ └── aes_test.go │ │ │ │ ├── envelope │ │ │ │ │ ├── envelope.go │ │ │ │ │ ├── envelope_test.go │ │ │ │ │ ├── grpc_service.go │ │ │ │ │ ├── grpc_service_unix_test.go │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── service.pb.go │ │ │ │ │ │ └── service.proto │ │ │ │ ├── identity │ │ │ │ │ └── identity.go │ │ │ │ └── secretbox │ │ │ │ │ ├── secretbox.go │ │ │ │ │ └── secretbox_test.go │ │ │ ├── metrics.go │ │ │ ├── transformer.go │ │ │ └── transformer_test.go │ │ ├── watch_cache.go │ │ └── watch_cache_test.go │ └── util │ │ ├── feature │ │ ├── feature_gate.go │ │ ├── feature_gate_test.go │ │ └── testing │ │ │ └── feature_gate_testing.go │ │ ├── flag │ │ ├── ciphersuites_flag.go │ │ ├── ciphersuites_flag_test.go │ │ ├── colon_separated_multimap_string_string.go │ │ ├── colon_separated_multimap_string_string_test.go │ │ ├── configuration_map.go │ │ ├── flags.go │ │ ├── langle_separated_map_string_string.go │ │ ├── langle_separated_map_string_string_test.go │ │ ├── map_string_bool.go │ │ ├── map_string_bool_test.go │ │ ├── map_string_string.go │ │ ├── map_string_string_test.go │ │ ├── namedcertkey_flag.go │ │ ├── namedcertkey_flag_test.go │ │ ├── noop.go │ │ ├── omitempty.go │ │ ├── string_flag.go │ │ └── tristate.go │ │ ├── flushwriter │ │ ├── doc.go │ │ ├── writer.go │ │ └── writer_test.go │ │ ├── logs │ │ └── logs.go │ │ ├── openapi │ │ ├── proto.go │ │ └── proto_test.go │ │ ├── proxy │ │ ├── proxy.go │ │ └── proxy_test.go │ │ ├── trace │ │ └── trace.go │ │ ├── webhook │ │ ├── certs_test.go │ │ ├── gencerts.sh │ │ ├── webhook.go │ │ └── webhook_test.go │ │ └── wsstream │ │ ├── conn.go │ │ ├── conn_test.go │ │ ├── doc.go │ │ ├── stream.go │ │ └── stream_test.go └── plugin │ └── pkg │ ├── audit │ ├── buffered │ │ ├── buffered.go │ │ ├── buffered_test.go │ │ └── doc.go │ ├── doc.go │ ├── fake │ │ ├── doc.go │ │ └── fake.go │ ├── log │ │ ├── backend.go │ │ └── backend_test.go │ ├── truncate │ │ ├── doc.go │ │ ├── truncate.go │ │ └── truncate_test.go │ └── webhook │ │ ├── webhook.go │ │ └── webhook_test.go │ ├── authenticator │ ├── doc.go │ ├── password │ │ ├── doc.go │ │ └── passwordfile │ │ │ ├── passwordfile.go │ │ │ └── passwordfile_test.go │ ├── request │ │ └── basicauth │ │ │ ├── basicauth.go │ │ │ └── basicauth_test.go │ └── token │ │ ├── oidc │ │ ├── OWNERS │ │ ├── oidc.go │ │ ├── oidc_test.go │ │ └── testdata │ │ │ ├── ecdsa_1.pem │ │ │ ├── ecdsa_2.pem │ │ │ ├── ecdsa_3.pem │ │ │ ├── gen.sh │ │ │ ├── rsa_1.pem │ │ │ ├── rsa_2.pem │ │ │ └── rsa_3.pem │ │ ├── tokentest │ │ └── tokentest.go │ │ └── webhook │ │ ├── certs_test.go │ │ ├── webhook.go │ │ └── webhook_test.go │ └── authorizer │ └── webhook │ ├── certs_test.go │ ├── gencerts.sh │ ├── webhook.go │ └── webhook_test.go ├── client-go ├── .github │ └── PULL_REQUEST_TEMPLATE.md ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Godeps │ ├── Godeps.json │ ├── OWNERS │ └── Readme ├── INSTALL.md ├── LICENSE ├── OWNERS ├── README.md ├── SECURITY_CONTACTS ├── code-of-conduct.md ├── deprecated-dynamic │ ├── bad_debt.go │ ├── client.go │ ├── client_pool.go │ └── client_test.go ├── discovery │ ├── cached │ │ ├── memcache.go │ │ └── memcache_test.go │ ├── cached_discovery.go │ ├── cached_discovery_test.go │ ├── discovery_client.go │ ├── discovery_client_test.go │ ├── fake │ │ ├── discovery.go │ │ └── discovery_test.go │ ├── helper.go │ ├── helper_blackbox_test.go │ ├── round_tripper.go │ ├── round_tripper_test.go │ └── unstructured.go ├── dynamic │ ├── client_test.go │ ├── fake │ │ └── simple.go │ ├── interface.go │ ├── scheme.go │ └── simple.go ├── examples │ ├── README.md │ ├── create-update-delete-deployment │ │ ├── README.md │ │ └── main.go │ ├── in-cluster-client-configuration │ │ ├── Dockerfile │ │ ├── README.md │ │ └── main.go │ ├── out-of-cluster-client-configuration │ │ ├── README.md │ │ └── main.go │ └── workqueue │ │ ├── README.md │ │ └── main.go ├── informers │ ├── admissionregistration │ │ ├── interface.go │ │ ├── v1alpha1 │ │ │ ├── initializerconfiguration.go │ │ │ └── interface.go │ │ └── v1beta1 │ │ │ ├── interface.go │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ └── validatingwebhookconfiguration.go │ ├── apps │ │ ├── interface.go │ │ ├── v1 │ │ │ ├── controllerrevision.go │ │ │ ├── daemonset.go │ │ │ ├── deployment.go │ │ │ ├── interface.go │ │ │ ├── replicaset.go │ │ │ └── statefulset.go │ │ ├── v1beta1 │ │ │ ├── controllerrevision.go │ │ │ ├── deployment.go │ │ │ ├── interface.go │ │ │ └── statefulset.go │ │ └── v1beta2 │ │ │ ├── controllerrevision.go │ │ │ ├── daemonset.go │ │ │ ├── deployment.go │ │ │ ├── interface.go │ │ │ ├── replicaset.go │ │ │ └── statefulset.go │ ├── autoscaling │ │ ├── interface.go │ │ ├── v1 │ │ │ ├── horizontalpodautoscaler.go │ │ │ └── interface.go │ │ └── v2beta1 │ │ │ ├── horizontalpodautoscaler.go │ │ │ └── interface.go │ ├── batch │ │ ├── interface.go │ │ ├── v1 │ │ │ ├── interface.go │ │ │ └── job.go │ │ ├── v1beta1 │ │ │ ├── cronjob.go │ │ │ └── interface.go │ │ └── v2alpha1 │ │ │ ├── cronjob.go │ │ │ └── interface.go │ ├── certificates │ │ ├── interface.go │ │ └── v1beta1 │ │ │ ├── certificatesigningrequest.go │ │ │ └── interface.go │ ├── core │ │ ├── interface.go │ │ └── v1 │ │ │ ├── componentstatus.go │ │ │ ├── configmap.go │ │ │ ├── endpoints.go │ │ │ ├── event.go │ │ │ ├── interface.go │ │ │ ├── limitrange.go │ │ │ ├── namespace.go │ │ │ ├── node.go │ │ │ ├── persistentvolume.go │ │ │ ├── persistentvolumeclaim.go │ │ │ ├── pod.go │ │ │ ├── podtemplate.go │ │ │ ├── replicationcontroller.go │ │ │ ├── resourcequota.go │ │ │ ├── secret.go │ │ │ ├── service.go │ │ │ └── serviceaccount.go │ ├── events │ │ ├── interface.go │ │ └── v1beta1 │ │ │ ├── event.go │ │ │ └── interface.go │ ├── extensions │ │ ├── interface.go │ │ └── v1beta1 │ │ │ ├── daemonset.go │ │ │ ├── deployment.go │ │ │ ├── ingress.go │ │ │ ├── interface.go │ │ │ ├── podsecuritypolicy.go │ │ │ └── replicaset.go │ ├── factory.go │ ├── generic.go │ ├── internalinterfaces │ │ └── factory_interfaces.go │ ├── networking │ │ ├── interface.go │ │ └── v1 │ │ │ ├── interface.go │ │ │ └── networkpolicy.go │ ├── policy │ │ ├── interface.go │ │ └── v1beta1 │ │ │ ├── interface.go │ │ │ ├── poddisruptionbudget.go │ │ │ └── podsecuritypolicy.go │ ├── rbac │ │ ├── interface.go │ │ ├── v1 │ │ │ ├── clusterrole.go │ │ │ ├── clusterrolebinding.go │ │ │ ├── interface.go │ │ │ ├── role.go │ │ │ └── rolebinding.go │ │ ├── v1alpha1 │ │ │ ├── clusterrole.go │ │ │ ├── clusterrolebinding.go │ │ │ ├── interface.go │ │ │ ├── role.go │ │ │ └── rolebinding.go │ │ └── v1beta1 │ │ │ ├── clusterrole.go │ │ │ ├── clusterrolebinding.go │ │ │ ├── interface.go │ │ │ ├── role.go │ │ │ └── rolebinding.go │ ├── scheduling │ │ ├── interface.go │ │ ├── v1alpha1 │ │ │ ├── interface.go │ │ │ └── priorityclass.go │ │ └── v1beta1 │ │ │ ├── interface.go │ │ │ └── priorityclass.go │ ├── settings │ │ ├── interface.go │ │ └── v1alpha1 │ │ │ ├── interface.go │ │ │ └── podpreset.go │ └── storage │ │ ├── interface.go │ │ ├── v1 │ │ ├── interface.go │ │ └── storageclass.go │ │ ├── v1alpha1 │ │ ├── interface.go │ │ └── volumeattachment.go │ │ └── v1beta1 │ │ ├── interface.go │ │ ├── storageclass.go │ │ └── volumeattachment.go ├── kubernetes │ ├── clientset.go │ ├── doc.go │ ├── fake │ │ ├── clientset_generated.go │ │ ├── doc.go │ │ └── register.go │ ├── import.go │ ├── scheme │ │ ├── doc.go │ │ └── register.go │ └── typed │ │ ├── admissionregistration │ │ ├── v1alpha1 │ │ │ ├── admissionregistration_client.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_admissionregistration_client.go │ │ │ │ └── fake_initializerconfiguration.go │ │ │ ├── generated_expansion.go │ │ │ └── initializerconfiguration.go │ │ └── v1beta1 │ │ │ ├── admissionregistration_client.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_admissionregistration_client.go │ │ │ ├── fake_mutatingwebhookconfiguration.go │ │ │ └── fake_validatingwebhookconfiguration.go │ │ │ ├── generated_expansion.go │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ └── validatingwebhookconfiguration.go │ │ ├── apps │ │ ├── v1 │ │ │ ├── apps_client.go │ │ │ ├── controllerrevision.go │ │ │ ├── daemonset.go │ │ │ ├── deployment.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_apps_client.go │ │ │ │ ├── fake_controllerrevision.go │ │ │ │ ├── fake_daemonset.go │ │ │ │ ├── fake_deployment.go │ │ │ │ ├── fake_replicaset.go │ │ │ │ └── fake_statefulset.go │ │ │ ├── generated_expansion.go │ │ │ ├── replicaset.go │ │ │ └── statefulset.go │ │ ├── v1beta1 │ │ │ ├── apps_client.go │ │ │ ├── controllerrevision.go │ │ │ ├── deployment.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_apps_client.go │ │ │ │ ├── fake_controllerrevision.go │ │ │ │ ├── fake_deployment.go │ │ │ │ ├── fake_scale.go │ │ │ │ └── fake_statefulset.go │ │ │ ├── generated_expansion.go │ │ │ ├── scale.go │ │ │ └── statefulset.go │ │ └── v1beta2 │ │ │ ├── apps_client.go │ │ │ ├── controllerrevision.go │ │ │ ├── daemonset.go │ │ │ ├── deployment.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_apps_client.go │ │ │ ├── fake_controllerrevision.go │ │ │ ├── fake_daemonset.go │ │ │ ├── fake_deployment.go │ │ │ ├── fake_replicaset.go │ │ │ ├── fake_scale.go │ │ │ └── fake_statefulset.go │ │ │ ├── generated_expansion.go │ │ │ ├── replicaset.go │ │ │ ├── scale.go │ │ │ └── statefulset.go │ │ ├── authentication │ │ ├── v1 │ │ │ ├── authentication_client.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_authentication_client.go │ │ │ │ ├── fake_tokenreview.go │ │ │ │ └── fake_tokenreview_expansion.go │ │ │ ├── generated_expansion.go │ │ │ ├── tokenreview.go │ │ │ └── tokenreview_expansion.go │ │ └── v1beta1 │ │ │ ├── authentication_client.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_authentication_client.go │ │ │ ├── fake_tokenreview.go │ │ │ └── fake_tokenreview_expansion.go │ │ │ ├── generated_expansion.go │ │ │ ├── tokenreview.go │ │ │ └── tokenreview_expansion.go │ │ ├── authorization │ │ ├── v1 │ │ │ ├── authorization_client.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_authorization_client.go │ │ │ │ ├── fake_localsubjectaccessreview.go │ │ │ │ ├── fake_localsubjectaccessreview_expansion.go │ │ │ │ ├── fake_selfsubjectaccessreview.go │ │ │ │ ├── fake_selfsubjectaccessreview_expansion.go │ │ │ │ ├── fake_selfsubjectrulesreview.go │ │ │ │ ├── fake_selfsubjectrulesreview_expansion.go │ │ │ │ ├── fake_subjectaccessreview.go │ │ │ │ └── fake_subjectaccessreview_expansion.go │ │ │ ├── generated_expansion.go │ │ │ ├── localsubjectaccessreview.go │ │ │ ├── localsubjectaccessreview_expansion.go │ │ │ ├── selfsubjectaccessreview.go │ │ │ ├── selfsubjectaccessreview_expansion.go │ │ │ ├── selfsubjectrulesreview.go │ │ │ ├── selfsubjectrulesreview_expansion.go │ │ │ ├── subjectaccessreview.go │ │ │ └── subjectaccessreview_expansion.go │ │ └── v1beta1 │ │ │ ├── authorization_client.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_authorization_client.go │ │ │ ├── fake_generated_expansion.go │ │ │ ├── fake_localsubjectaccessreview.go │ │ │ ├── fake_localsubjectaccessreview_expansion.go │ │ │ ├── fake_selfsubjectaccessreview.go │ │ │ ├── fake_selfsubjectaccessreview_expansion.go │ │ │ ├── fake_selfsubjectrulesreview.go │ │ │ ├── fake_selfsubjectrulesreview_expansion.go │ │ │ ├── fake_subjectaccessreview.go │ │ │ └── fake_subjectaccessreview_expansion.go │ │ │ ├── generated_expansion.go │ │ │ ├── localsubjectaccessreview.go │ │ │ ├── localsubjectaccessreview_expansion.go │ │ │ ├── selfsubjectaccessreview.go │ │ │ ├── selfsubjectaccessreview_expansion.go │ │ │ ├── selfsubjectrulesreview.go │ │ │ ├── selfsubjectrulesreview_expansion.go │ │ │ ├── subjectaccessreview.go │ │ │ └── subjectaccessreview_expansion.go │ │ ├── autoscaling │ │ ├── v1 │ │ │ ├── autoscaling_client.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_autoscaling_client.go │ │ │ │ └── fake_horizontalpodautoscaler.go │ │ │ ├── generated_expansion.go │ │ │ └── horizontalpodautoscaler.go │ │ └── v2beta1 │ │ │ ├── autoscaling_client.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_autoscaling_client.go │ │ │ └── fake_horizontalpodautoscaler.go │ │ │ ├── generated_expansion.go │ │ │ └── horizontalpodautoscaler.go │ │ ├── batch │ │ ├── v1 │ │ │ ├── batch_client.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_batch_client.go │ │ │ │ └── fake_job.go │ │ │ ├── generated_expansion.go │ │ │ └── job.go │ │ ├── v1beta1 │ │ │ ├── batch_client.go │ │ │ ├── cronjob.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_batch_client.go │ │ │ │ └── fake_cronjob.go │ │ │ └── generated_expansion.go │ │ └── v2alpha1 │ │ │ ├── batch_client.go │ │ │ ├── cronjob.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_batch_client.go │ │ │ └── fake_cronjob.go │ │ │ └── generated_expansion.go │ │ ├── certificates │ │ └── v1beta1 │ │ │ ├── certificates_client.go │ │ │ ├── certificatesigningrequest.go │ │ │ ├── certificatesigningrequest_expansion.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_certificates_client.go │ │ │ ├── fake_certificatesigningrequest.go │ │ │ └── fake_certificatesigningrequest_expansion.go │ │ │ └── generated_expansion.go │ │ ├── core │ │ └── v1 │ │ │ ├── componentstatus.go │ │ │ ├── configmap.go │ │ │ ├── core_client.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── event.go │ │ │ ├── event_expansion.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_componentstatus.go │ │ │ ├── fake_configmap.go │ │ │ ├── fake_core_client.go │ │ │ ├── fake_endpoints.go │ │ │ ├── fake_event.go │ │ │ ├── fake_event_expansion.go │ │ │ ├── fake_limitrange.go │ │ │ ├── fake_namespace.go │ │ │ ├── fake_namespace_expansion.go │ │ │ ├── fake_node.go │ │ │ ├── fake_node_expansion.go │ │ │ ├── fake_persistentvolume.go │ │ │ ├── fake_persistentvolumeclaim.go │ │ │ ├── fake_pod.go │ │ │ ├── fake_pod_expansion.go │ │ │ ├── fake_podtemplate.go │ │ │ ├── fake_replicationcontroller.go │ │ │ ├── fake_resourcequota.go │ │ │ ├── fake_secret.go │ │ │ ├── fake_service.go │ │ │ ├── fake_service_expansion.go │ │ │ ├── fake_serviceaccount.go │ │ │ └── fake_serviceaccount_expansion.go │ │ │ ├── generated_expansion.go │ │ │ ├── limitrange.go │ │ │ ├── namespace.go │ │ │ ├── namespace_expansion.go │ │ │ ├── node.go │ │ │ ├── node_expansion.go │ │ │ ├── persistentvolume.go │ │ │ ├── persistentvolumeclaim.go │ │ │ ├── pod.go │ │ │ ├── pod_expansion.go │ │ │ ├── podtemplate.go │ │ │ ├── replicationcontroller.go │ │ │ ├── resourcequota.go │ │ │ ├── secret.go │ │ │ ├── service.go │ │ │ ├── service_expansion.go │ │ │ ├── serviceaccount.go │ │ │ └── serviceaccount_expansion.go │ │ ├── events │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── events_client.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_event.go │ │ │ └── fake_events_client.go │ │ │ └── generated_expansion.go │ │ ├── extensions │ │ └── v1beta1 │ │ │ ├── daemonset.go │ │ │ ├── deployment.go │ │ │ ├── deployment_expansion.go │ │ │ ├── doc.go │ │ │ ├── extensions_client.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_daemonset.go │ │ │ ├── fake_deployment.go │ │ │ ├── fake_deployment_expansion.go │ │ │ ├── fake_extensions_client.go │ │ │ ├── fake_ingress.go │ │ │ ├── fake_podsecuritypolicy.go │ │ │ ├── fake_replicaset.go │ │ │ ├── fake_scale.go │ │ │ └── fake_scale_expansion.go │ │ │ ├── generated_expansion.go │ │ │ ├── ingress.go │ │ │ ├── podsecuritypolicy.go │ │ │ ├── replicaset.go │ │ │ ├── scale.go │ │ │ └── scale_expansion.go │ │ ├── networking │ │ └── v1 │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_networking_client.go │ │ │ └── fake_networkpolicy.go │ │ │ ├── generated_expansion.go │ │ │ ├── networking_client.go │ │ │ └── networkpolicy.go │ │ ├── policy │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── eviction.go │ │ │ ├── eviction_expansion.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_eviction.go │ │ │ ├── fake_eviction_expansion.go │ │ │ ├── fake_poddisruptionbudget.go │ │ │ ├── fake_podsecuritypolicy.go │ │ │ └── fake_policy_client.go │ │ │ ├── generated_expansion.go │ │ │ ├── poddisruptionbudget.go │ │ │ ├── podsecuritypolicy.go │ │ │ └── policy_client.go │ │ ├── rbac │ │ ├── v1 │ │ │ ├── clusterrole.go │ │ │ ├── clusterrolebinding.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_clusterrole.go │ │ │ │ ├── fake_clusterrolebinding.go │ │ │ │ ├── fake_rbac_client.go │ │ │ │ ├── fake_role.go │ │ │ │ └── fake_rolebinding.go │ │ │ ├── generated_expansion.go │ │ │ ├── rbac_client.go │ │ │ ├── role.go │ │ │ └── rolebinding.go │ │ ├── v1alpha1 │ │ │ ├── clusterrole.go │ │ │ ├── clusterrolebinding.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_clusterrole.go │ │ │ │ ├── fake_clusterrolebinding.go │ │ │ │ ├── fake_rbac_client.go │ │ │ │ ├── fake_role.go │ │ │ │ └── fake_rolebinding.go │ │ │ ├── generated_expansion.go │ │ │ ├── rbac_client.go │ │ │ ├── role.go │ │ │ └── rolebinding.go │ │ └── v1beta1 │ │ │ ├── clusterrole.go │ │ │ ├── clusterrolebinding.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_clusterrole.go │ │ │ ├── fake_clusterrolebinding.go │ │ │ ├── fake_rbac_client.go │ │ │ ├── fake_role.go │ │ │ └── fake_rolebinding.go │ │ │ ├── generated_expansion.go │ │ │ ├── rbac_client.go │ │ │ ├── role.go │ │ │ └── rolebinding.go │ │ ├── scheduling │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_priorityclass.go │ │ │ │ └── fake_scheduling_client.go │ │ │ ├── generated_expansion.go │ │ │ ├── priorityclass.go │ │ │ └── scheduling_client.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_priorityclass.go │ │ │ └── fake_scheduling_client.go │ │ │ ├── generated_expansion.go │ │ │ ├── priorityclass.go │ │ │ └── scheduling_client.go │ │ ├── settings │ │ └── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_podpreset.go │ │ │ └── fake_settings_client.go │ │ │ ├── generated_expansion.go │ │ │ ├── podpreset.go │ │ │ └── settings_client.go │ │ └── storage │ │ ├── v1 │ │ ├── doc.go │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_storage_client.go │ │ │ └── fake_storageclass.go │ │ ├── generated_expansion.go │ │ ├── storage_client.go │ │ └── storageclass.go │ │ ├── v1alpha1 │ │ ├── doc.go │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_storage_client.go │ │ │ └── fake_volumeattachment.go │ │ ├── generated_expansion.go │ │ ├── storage_client.go │ │ └── volumeattachment.go │ │ └── v1beta1 │ │ ├── doc.go │ │ ├── fake │ │ ├── doc.go │ │ ├── fake_storage_client.go │ │ ├── fake_storageclass.go │ │ └── fake_volumeattachment.go │ │ ├── generated_expansion.go │ │ ├── storage_client.go │ │ ├── storageclass.go │ │ └── volumeattachment.go ├── listers │ ├── admissionregistration │ │ ├── v1alpha1 │ │ │ ├── expansion_generated.go │ │ │ └── initializerconfiguration.go │ │ └── v1beta1 │ │ │ ├── expansion_generated.go │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ └── validatingwebhookconfiguration.go │ ├── apps │ │ ├── v1 │ │ │ ├── controllerrevision.go │ │ │ ├── daemonset.go │ │ │ ├── daemonset_expansion.go │ │ │ ├── deployment.go │ │ │ ├── deployment_expansion.go │ │ │ ├── expansion_generated.go │ │ │ ├── replicaset.go │ │ │ ├── replicaset_expansion.go │ │ │ ├── statefulset.go │ │ │ └── statefulset_expansion.go │ │ ├── v1beta1 │ │ │ ├── controllerrevision.go │ │ │ ├── deployment.go │ │ │ ├── expansion_generated.go │ │ │ ├── scale.go │ │ │ ├── statefulset.go │ │ │ └── statefulset_expansion.go │ │ └── v1beta2 │ │ │ ├── controllerrevision.go │ │ │ ├── daemonset.go │ │ │ ├── daemonset_expansion.go │ │ │ ├── deployment.go │ │ │ ├── deployment_expansion.go │ │ │ ├── expansion_generated.go │ │ │ ├── replicaset.go │ │ │ ├── replicaset_expansion.go │ │ │ ├── scale.go │ │ │ ├── statefulset.go │ │ │ └── statefulset_expansion.go │ ├── authentication │ │ ├── v1 │ │ │ ├── expansion_generated.go │ │ │ └── tokenreview.go │ │ └── v1beta1 │ │ │ ├── expansion_generated.go │ │ │ └── tokenreview.go │ ├── authorization │ │ ├── v1 │ │ │ ├── expansion_generated.go │ │ │ ├── localsubjectaccessreview.go │ │ │ ├── selfsubjectaccessreview.go │ │ │ ├── selfsubjectrulesreview.go │ │ │ └── subjectaccessreview.go │ │ └── v1beta1 │ │ │ ├── expansion_generated.go │ │ │ ├── localsubjectaccessreview.go │ │ │ ├── selfsubjectaccessreview.go │ │ │ ├── selfsubjectrulesreview.go │ │ │ └── subjectaccessreview.go │ ├── autoscaling │ │ ├── v1 │ │ │ ├── expansion_generated.go │ │ │ └── horizontalpodautoscaler.go │ │ └── v2beta1 │ │ │ ├── expansion_generated.go │ │ │ └── horizontalpodautoscaler.go │ ├── batch │ │ ├── v1 │ │ │ ├── expansion_generated.go │ │ │ ├── job.go │ │ │ └── job_expansion.go │ │ ├── v1beta1 │ │ │ ├── cronjob.go │ │ │ └── expansion_generated.go │ │ └── v2alpha1 │ │ │ ├── cronjob.go │ │ │ └── expansion_generated.go │ ├── certificates │ │ └── v1beta1 │ │ │ ├── certificatesigningrequest.go │ │ │ └── expansion_generated.go │ ├── core │ │ └── v1 │ │ │ ├── componentstatus.go │ │ │ ├── configmap.go │ │ │ ├── endpoints.go │ │ │ ├── event.go │ │ │ ├── expansion_generated.go │ │ │ ├── limitrange.go │ │ │ ├── namespace.go │ │ │ ├── node.go │ │ │ ├── node_expansion.go │ │ │ ├── persistentvolume.go │ │ │ ├── persistentvolumeclaim.go │ │ │ ├── pod.go │ │ │ ├── podtemplate.go │ │ │ ├── replicationcontroller.go │ │ │ ├── replicationcontroller_expansion.go │ │ │ ├── resourcequota.go │ │ │ ├── secret.go │ │ │ ├── service.go │ │ │ ├── service_expansion.go │ │ │ └── serviceaccount.go │ ├── events │ │ └── v1beta1 │ │ │ ├── event.go │ │ │ └── expansion_generated.go │ ├── extensions │ │ └── v1beta1 │ │ │ ├── daemonset.go │ │ │ ├── daemonset_expansion.go │ │ │ ├── daemonset_expansion_test.go │ │ │ ├── deployment.go │ │ │ ├── deployment_expansion.go │ │ │ ├── expansion_generated.go │ │ │ ├── ingress.go │ │ │ ├── podsecuritypolicy.go │ │ │ ├── replicaset.go │ │ │ ├── replicaset_expansion.go │ │ │ └── scale.go │ ├── imagepolicy │ │ └── v1alpha1 │ │ │ ├── expansion_generated.go │ │ │ └── imagereview.go │ ├── networking │ │ └── v1 │ │ │ ├── expansion_generated.go │ │ │ └── networkpolicy.go │ ├── policy │ │ └── v1beta1 │ │ │ ├── eviction.go │ │ │ ├── expansion_generated.go │ │ │ ├── poddisruptionbudget.go │ │ │ ├── poddisruptionbudget_expansion.go │ │ │ └── podsecuritypolicy.go │ ├── rbac │ │ ├── v1 │ │ │ ├── clusterrole.go │ │ │ ├── clusterrolebinding.go │ │ │ ├── expansion_generated.go │ │ │ ├── role.go │ │ │ └── rolebinding.go │ │ ├── v1alpha1 │ │ │ ├── clusterrole.go │ │ │ ├── clusterrolebinding.go │ │ │ ├── expansion_generated.go │ │ │ ├── role.go │ │ │ └── rolebinding.go │ │ └── v1beta1 │ │ │ ├── clusterrole.go │ │ │ ├── clusterrolebinding.go │ │ │ ├── expansion_generated.go │ │ │ ├── role.go │ │ │ └── rolebinding.go │ ├── scheduling │ │ ├── v1alpha1 │ │ │ ├── expansion_generated.go │ │ │ └── priorityclass.go │ │ └── v1beta1 │ │ │ ├── expansion_generated.go │ │ │ └── priorityclass.go │ ├── settings │ │ └── v1alpha1 │ │ │ ├── expansion_generated.go │ │ │ └── podpreset.go │ └── storage │ │ ├── v1 │ │ ├── expansion_generated.go │ │ └── storageclass.go │ │ ├── v1alpha1 │ │ ├── expansion_generated.go │ │ └── volumeattachment.go │ │ └── v1beta1 │ │ ├── expansion_generated.go │ │ ├── storageclass.go │ │ └── volumeattachment.go ├── pkg │ ├── apis │ │ └── clientauthentication │ │ │ ├── doc.go │ │ │ ├── install │ │ │ └── install.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── zz_generated.conversion.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.defaults.go │ │ │ ├── v1beta1 │ │ │ ├── conversion.go │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── zz_generated.conversion.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.defaults.go │ │ │ └── zz_generated.deepcopy.go │ └── version │ │ ├── .gitattributes │ │ ├── base.go │ │ ├── def.bzl │ │ ├── doc.go │ │ └── version.go ├── plugin │ └── pkg │ │ └── client │ │ └── auth │ │ ├── azure │ │ ├── README.md │ │ ├── azure.go │ │ └── azure_test.go │ │ ├── exec │ │ ├── exec.go │ │ ├── exec_test.go │ │ └── testdata │ │ │ └── test-plugin.sh │ │ ├── gcp │ │ ├── OWNERS │ │ ├── gcp.go │ │ └── gcp_test.go │ │ ├── oidc │ │ ├── OWNERS │ │ ├── oidc.go │ │ └── oidc_test.go │ │ ├── openstack │ │ ├── openstack.go │ │ └── openstack_test.go │ │ └── plugins.go ├── rest │ ├── OWNERS │ ├── client.go │ ├── client_test.go │ ├── config.go │ ├── config_test.go │ ├── fake │ │ └── fake.go │ ├── plugin.go │ ├── plugin_test.go │ ├── request.go │ ├── request_test.go │ ├── transport.go │ ├── url_utils.go │ ├── url_utils_test.go │ ├── urlbackoff.go │ ├── urlbackoff_test.go │ ├── watch │ │ ├── decoder.go │ │ ├── decoder_test.go │ │ ├── encoder.go │ │ └── encoder_test.go │ └── zz_generated.deepcopy.go ├── restmapper │ ├── category_expansion.go │ ├── category_expansion_test.go │ ├── discovery.go │ ├── discovery_test.go │ ├── shortcut.go │ └── shortcut_test.go ├── scale │ ├── client.go │ ├── client_test.go │ ├── doc.go │ ├── fake │ │ └── client.go │ ├── interfaces.go │ ├── roundtrip_test.go │ ├── scheme │ │ ├── appsint │ │ │ ├── doc.go │ │ │ └── register.go │ │ ├── appsv1beta1 │ │ │ ├── conversion.go │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ └── zz_generated.conversion.go │ │ ├── appsv1beta2 │ │ │ ├── conversion.go │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ └── zz_generated.conversion.go │ │ ├── autoscalingv1 │ │ │ ├── conversion.go │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ └── zz_generated.conversion.go │ │ ├── doc.go │ │ ├── extensionsint │ │ │ ├── doc.go │ │ │ └── register.go │ │ ├── extensionsv1beta1 │ │ │ ├── conversion.go │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ └── zz_generated.conversion.go │ │ ├── register.go │ │ ├── types.go │ │ └── zz_generated.deepcopy.go │ └── util.go ├── testing │ ├── actions.go │ ├── fake.go │ ├── fixture.go │ └── fixture_test.go ├── third_party │ └── forked │ │ └── golang │ │ └── template │ │ ├── exec.go │ │ └── funcs.go ├── tools │ ├── auth │ │ ├── clientauth.go │ │ └── clientauth_test.go │ ├── bootstrap │ │ └── token │ │ │ ├── OWNERS │ │ │ ├── api │ │ │ ├── doc.go │ │ │ └── types.go │ │ │ └── util │ │ │ ├── helpers.go │ │ │ └── helpers_test.go │ ├── cache │ │ ├── OWNERS │ │ ├── controller.go │ │ ├── controller_test.go │ │ ├── delta_fifo.go │ │ ├── delta_fifo_test.go │ │ ├── doc.go │ │ ├── expiration_cache.go │ │ ├── expiration_cache_fakes.go │ │ ├── expiration_cache_test.go │ │ ├── fake_custom_store.go │ │ ├── fifo.go │ │ ├── fifo_test.go │ │ ├── heap.go │ │ ├── heap_test.go │ │ ├── index.go │ │ ├── index_test.go │ │ ├── listers.go │ │ ├── listwatch.go │ │ ├── mutation_cache.go │ │ ├── mutation_detector.go │ │ ├── mutation_detector_test.go │ │ ├── processor_listener_test.go │ │ ├── reflector.go │ │ ├── reflector_metrics.go │ │ ├── reflector_test.go │ │ ├── shared_informer.go │ │ ├── shared_informer_test.go │ │ ├── store.go │ │ ├── store_test.go │ │ ├── testing │ │ │ ├── fake_controller_source.go │ │ │ └── fake_controller_source_test.go │ │ ├── thread_safe_store.go │ │ ├── undelta_store.go │ │ └── undelta_store_test.go │ ├── clientcmd │ │ ├── api │ │ │ ├── doc.go │ │ │ ├── helpers.go │ │ │ ├── helpers_test.go │ │ │ ├── latest │ │ │ │ └── latest.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_test.go │ │ │ ├── v1 │ │ │ │ ├── conversion.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── auth_loaders.go │ │ ├── client_config.go │ │ ├── client_config_test.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── flag.go │ │ ├── helpers.go │ │ ├── loader.go │ │ ├── loader_test.go │ │ ├── merged_client_builder.go │ │ ├── merged_client_builder_test.go │ │ ├── overrides.go │ │ ├── overrides_test.go │ │ ├── validation.go │ │ └── validation_test.go │ ├── leaderelection │ │ ├── OWNERS │ │ ├── leaderelection.go │ │ ├── leaderelection_test.go │ │ └── resourcelock │ │ │ ├── configmaplock.go │ │ │ ├── endpointslock.go │ │ │ └── interface.go │ ├── metrics │ │ ├── OWNERS │ │ └── metrics.go │ ├── pager │ │ ├── pager.go │ │ └── pager_test.go │ ├── portforward │ │ ├── doc.go │ │ ├── portforward.go │ │ └── portforward_test.go │ ├── record │ │ ├── OWNERS │ │ ├── doc.go │ │ ├── event.go │ │ ├── event_test.go │ │ ├── events_cache.go │ │ ├── events_cache_test.go │ │ └── fake.go │ ├── reference │ │ ├── ref.go │ │ └── ref_test.go │ └── remotecommand │ │ ├── doc.go │ │ ├── errorstream.go │ │ ├── remotecommand.go │ │ ├── resize.go │ │ ├── v1.go │ │ ├── v2.go │ │ ├── v2_test.go │ │ ├── v3.go │ │ ├── v4.go │ │ └── v4_test.go ├── transport │ ├── OWNERS │ ├── cache.go │ ├── cache_test.go │ ├── config.go │ ├── round_trippers.go │ ├── round_trippers_test.go │ ├── spdy │ │ └── spdy.go │ ├── transport.go │ └── transport_test.go └── util │ ├── buffer │ ├── ring_growing.go │ └── ring_growing_test.go │ ├── cert │ ├── cert.go │ ├── csr.go │ ├── csr_test.go │ ├── io.go │ ├── pem.go │ ├── pem_test.go │ ├── testdata │ │ └── dontUseThisKey.pem │ └── triple │ │ └── triple.go │ ├── certificate │ ├── OWNERS │ ├── certificate_manager.go │ ├── certificate_manager_test.go │ ├── certificate_store.go │ ├── certificate_store_test.go │ └── csr │ │ ├── csr.go │ │ └── csr_test.go │ ├── connrotation │ ├── connrotation.go │ └── connrotation_test.go │ ├── exec │ └── exec.go │ ├── flowcontrol │ ├── backoff.go │ ├── backoff_test.go │ ├── throttle.go │ └── throttle_test.go │ ├── homedir │ └── homedir.go │ ├── integer │ ├── integer.go │ └── integer_test.go │ ├── jsonpath │ ├── doc.go │ ├── jsonpath.go │ ├── jsonpath_test.go │ ├── node.go │ ├── parser.go │ └── parser_test.go │ ├── retry │ ├── OWNERS │ ├── util.go │ └── util_test.go │ ├── testing │ ├── fake_handler.go │ ├── fake_handler_test.go │ └── tmpdir.go │ └── workqueue │ ├── default_rate_limiters.go │ ├── default_rate_limiters_test.go │ ├── delaying_queue.go │ ├── delaying_queue_test.go │ ├── doc.go │ ├── metrics.go │ ├── parallelizer.go │ ├── queue.go │ ├── queue_test.go │ ├── rate_limitting_queue.go │ └── rate_limitting_queue_test.go ├── kube-aggregator ├── .github │ └── PULL_REQUEST_TEMPLATE.md ├── CONTRIBUTING.md ├── Godeps │ ├── Godeps.json │ ├── OWNERS │ └── Readme ├── LICENSE ├── OWNERS ├── README.md ├── SECURITY_CONTACTS ├── artifacts │ ├── hostpath-pods │ │ └── insecure-etcd-pod.yaml │ ├── self-contained │ │ ├── etcd-pod.yaml │ │ ├── etcd-svc.yaml │ │ ├── kubernetes-discover-pod.yaml │ │ ├── kubernetes-discovery-sa.yaml │ │ └── kubernetes-discovery-svc.yaml │ └── simple-image │ │ └── Dockerfile ├── code-of-conduct.md ├── hack │ ├── apiservice-template.yaml │ ├── boilerplate.go.txt │ ├── build-image.sh │ ├── godep-deps.sh │ ├── local-up-kube-aggregator.sh │ ├── register-all-apis-from.sh │ ├── sync-from-kubernetes.sh │ ├── update-codegen.sh │ └── verify-codegen.sh ├── main.go └── pkg │ ├── apis │ └── apiregistration │ │ ├── doc.go │ │ ├── helpers.go │ │ ├── helpers_test.go │ │ ├── install │ │ └── install.go │ │ ├── register.go │ │ ├── types.go │ │ ├── v1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── zz_generated.conversion.go │ │ └── zz_generated.deepcopy.go │ │ ├── v1beta1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── zz_generated.conversion.go │ │ └── zz_generated.deepcopy.go │ │ ├── validation │ │ └── validation.go │ │ └── zz_generated.deepcopy.go │ ├── apiserver │ ├── apiserver.go │ ├── apiservice_controller.go │ ├── handler_apis.go │ ├── handler_apis_test.go │ ├── handler_proxy.go │ ├── handler_proxy_test.go │ ├── resolvers.go │ └── scheme │ │ └── scheme.go │ ├── client │ ├── clientset_generated │ │ ├── clientset │ │ │ ├── clientset.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ │ ├── clientset_generated.go │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ ├── scheme │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ └── typed │ │ │ │ └── apiregistration │ │ │ │ ├── v1 │ │ │ │ ├── apiregistration_client.go │ │ │ │ ├── apiservice.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_apiregistration_client.go │ │ │ │ │ └── fake_apiservice.go │ │ │ │ └── generated_expansion.go │ │ │ │ └── v1beta1 │ │ │ │ ├── apiregistration_client.go │ │ │ │ ├── apiservice.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_apiregistration_client.go │ │ │ │ └── fake_apiservice.go │ │ │ │ └── generated_expansion.go │ │ └── internalclientset │ │ │ ├── clientset.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── clientset_generated.go │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ └── typed │ │ │ └── apiregistration │ │ │ └── internalversion │ │ │ ├── apiregistration_client.go │ │ │ ├── apiservice.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_apiregistration_client.go │ │ │ └── fake_apiservice.go │ │ │ └── generated_expansion.go │ ├── informers │ │ ├── externalversions │ │ │ ├── apiregistration │ │ │ │ ├── interface.go │ │ │ │ ├── v1 │ │ │ │ │ ├── apiservice.go │ │ │ │ │ └── interface.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── apiservice.go │ │ │ │ │ └── interface.go │ │ │ ├── factory.go │ │ │ ├── generic.go │ │ │ └── internalinterfaces │ │ │ │ └── factory_interfaces.go │ │ └── internalversion │ │ │ ├── apiregistration │ │ │ ├── interface.go │ │ │ └── internalversion │ │ │ │ ├── apiservice.go │ │ │ │ └── interface.go │ │ │ ├── factory.go │ │ │ ├── generic.go │ │ │ └── internalinterfaces │ │ │ └── factory_interfaces.go │ └── listers │ │ └── apiregistration │ │ ├── internalversion │ │ ├── apiservice.go │ │ └── expansion_generated.go │ │ ├── v1 │ │ ├── apiservice.go │ │ └── expansion_generated.go │ │ └── v1beta1 │ │ ├── apiservice.go │ │ └── expansion_generated.go │ ├── cmd │ └── server │ │ └── start.go │ ├── controllers │ ├── autoregister │ │ ├── autoregister_controller.go │ │ └── autoregister_controller_test.go │ ├── cache.go │ ├── openapi │ │ ├── aggregator.go │ │ ├── aggregator_test.go │ │ ├── controller.go │ │ └── downloader.go │ └── status │ │ ├── available_controller.go │ │ └── available_controller_test.go │ └── registry │ └── apiservice │ ├── etcd │ └── etcd.go │ ├── rest │ └── storage_apiservice.go │ └── strategy.go └── kube-openapi ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── Godeps ├── Godeps.json └── Readme ├── LICENSE ├── OWNERS ├── README.md ├── cmd ├── openapi-gen │ ├── args │ │ └── args.go │ └── openapi-gen.go └── openapi2smd │ └── openapi2smd.go ├── code-of-conduct.md ├── pkg ├── aggregator │ ├── aggregator.go │ └── aggregator_test.go ├── builder │ ├── doc.go │ ├── openapi.go │ ├── openapi_test.go │ └── util.go ├── common │ ├── common.go │ └── doc.go ├── generators │ ├── README.md │ ├── api_linter.go │ ├── config.go │ ├── extension.go │ ├── extension_test.go │ ├── openapi.go │ ├── openapi_test.go │ └── rules │ │ ├── OWNERS │ │ ├── doc.go │ │ ├── names_match.go │ │ ├── names_match_test.go │ │ ├── omitempty_match_case.go │ │ └── omitempty_match_case_test.go ├── handler │ ├── handler.go │ └── handler_test.go ├── idl │ ├── doc.go │ ├── listtype_test.go │ ├── maptype_test.go │ └── structtype_test.go ├── schemaconv │ ├── smd.go │ ├── smd_test.go │ └── testdata │ │ ├── new-schema.yaml │ │ └── swagger.json └── util │ ├── proto │ ├── doc.go │ ├── document.go │ ├── openapi.go │ ├── openapi_suite_test.go │ ├── openapi_test.go │ ├── testdata │ │ ├── swagger.json │ │ └── swagger_next.json │ ├── testing │ │ └── openapi.go │ └── validation │ │ ├── errors.go │ │ ├── types.go │ │ ├── validation.go │ │ ├── validation_suite_test.go │ │ └── validation_test.go │ ├── sets │ ├── empty.go │ └── string.go │ ├── trie.go │ ├── util.go │ └── util_test.go └── test └── integration ├── README.md ├── builder └── main.go ├── integration_suite_test.go ├── pkg └── generated │ └── openapi_generated.go └── testdata ├── dummytype ├── alpha.go └── beta.go ├── golden.json ├── golden.report └── listtype ├── atomic-list.go ├── map-list.go └── set-list.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/Makefile -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/OWNERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/README.md -------------------------------------------------------------------------------- /cmd/service-serving-cert-signer/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/cmd/service-serving-cert-signer/main.go -------------------------------------------------------------------------------- /glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/glide.lock -------------------------------------------------------------------------------- /glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/glide.yaml -------------------------------------------------------------------------------- /hack/boilerplate.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hack/build-cross.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/hack/build-cross.sh -------------------------------------------------------------------------------- /hack/build-go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/hack/build-go.sh -------------------------------------------------------------------------------- /hack/build-images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/hack/build-images.sh -------------------------------------------------------------------------------- /hack/build-rpms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/hack/build-rpms.sh -------------------------------------------------------------------------------- /hack/cherry-pick.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/hack/cherry-pick.sh -------------------------------------------------------------------------------- /hack/deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/hack/deps -------------------------------------------------------------------------------- /hack/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/hack/env -------------------------------------------------------------------------------- /hack/import-restrictions.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /hack/lib/build/archive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/hack/lib/build/archive.sh -------------------------------------------------------------------------------- /hack/lib/build/binaries.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/hack/lib/build/binaries.sh -------------------------------------------------------------------------------- /hack/lib/build/environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/hack/lib/build/environment.sh -------------------------------------------------------------------------------- /hack/lib/build/images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/hack/lib/build/images.sh -------------------------------------------------------------------------------- /hack/lib/build/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/hack/lib/build/release.sh -------------------------------------------------------------------------------- /hack/lib/build/rpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/hack/lib/build/rpm.sh -------------------------------------------------------------------------------- /hack/lib/build/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/hack/lib/build/version.sh -------------------------------------------------------------------------------- /hack/lib/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/hack/lib/cleanup.sh -------------------------------------------------------------------------------- /hack/lib/cmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/hack/lib/cmd.sh -------------------------------------------------------------------------------- /hack/lib/compress.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/hack/lib/compress.awk -------------------------------------------------------------------------------- /hack/lib/constants.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/hack/lib/constants.sh -------------------------------------------------------------------------------- /hack/lib/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/hack/lib/init.sh -------------------------------------------------------------------------------- /hack/lib/log/output.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/hack/lib/log/output.sh -------------------------------------------------------------------------------- /hack/lib/log/stacktrace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/hack/lib/log/stacktrace.sh -------------------------------------------------------------------------------- /hack/lib/log/system.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/hack/lib/log/system.sh -------------------------------------------------------------------------------- /hack/lib/test/junit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/hack/lib/test/junit.sh -------------------------------------------------------------------------------- /hack/lib/util/ensure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/hack/lib/util/ensure.sh -------------------------------------------------------------------------------- /hack/lib/util/environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/hack/lib/util/environment.sh -------------------------------------------------------------------------------- /hack/lib/util/find.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/hack/lib/util/find.sh -------------------------------------------------------------------------------- /hack/lib/util/golang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/hack/lib/util/golang.sh -------------------------------------------------------------------------------- /hack/lib/util/misc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/hack/lib/util/misc.sh -------------------------------------------------------------------------------- /hack/lib/util/text.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/hack/lib/util/text.sh -------------------------------------------------------------------------------- /hack/lib/util/trap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/hack/lib/util/trap.sh -------------------------------------------------------------------------------- /hack/move-upstream.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/hack/move-upstream.sh -------------------------------------------------------------------------------- /hack/push-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/hack/push-release.sh -------------------------------------------------------------------------------- /hack/test-go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/hack/test-go.sh -------------------------------------------------------------------------------- /hack/update-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/hack/update-deps.sh -------------------------------------------------------------------------------- /hack/update-generated-bindata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/hack/update-generated-bindata.sh -------------------------------------------------------------------------------- /hack/verify-generated-bindata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/hack/verify-generated-bindata.sh -------------------------------------------------------------------------------- /hack/verify-gofmt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/hack/verify-gofmt.sh -------------------------------------------------------------------------------- /hack/verify-golint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/hack/verify-golint.sh -------------------------------------------------------------------------------- /hack/verify-govet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/hack/verify-govet.sh -------------------------------------------------------------------------------- /hack/verify-imports.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/hack/verify-imports.sh -------------------------------------------------------------------------------- /hack/verify-upstream-commits.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/hack/verify-upstream-commits.sh -------------------------------------------------------------------------------- /install/serving-cert-signer/install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/install/serving-cert-signer/install.yaml -------------------------------------------------------------------------------- /pkg/boilerplate/controller/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/pkg/boilerplate/controller/controller.go -------------------------------------------------------------------------------- /pkg/boilerplate/controller/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/pkg/boilerplate/controller/filter.go -------------------------------------------------------------------------------- /pkg/boilerplate/controller/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/pkg/boilerplate/controller/option.go -------------------------------------------------------------------------------- /pkg/boilerplate/controller/sync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/pkg/boilerplate/controller/sync.go -------------------------------------------------------------------------------- /pkg/boilerplate/controllercmd/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/pkg/boilerplate/controllercmd/cmd.go -------------------------------------------------------------------------------- /pkg/boilerplate/operator/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/pkg/boilerplate/operator/filter.go -------------------------------------------------------------------------------- /pkg/boilerplate/operator/operator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/pkg/boilerplate/operator/operator.go -------------------------------------------------------------------------------- /pkg/boilerplate/operator/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/pkg/boilerplate/operator/option.go -------------------------------------------------------------------------------- /pkg/boilerplate/operator/sync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/pkg/boilerplate/operator/sync.go -------------------------------------------------------------------------------- /pkg/cmd/apiservicecabundle/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/pkg/cmd/apiservicecabundle/cmd.go -------------------------------------------------------------------------------- /pkg/cmd/configmapcabundle/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/pkg/cmd/configmapcabundle/cmd.go -------------------------------------------------------------------------------- /pkg/cmd/operator/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/pkg/cmd/operator/cmd.go -------------------------------------------------------------------------------- /pkg/cmd/scheme/scheme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/pkg/cmd/scheme/scheme.go -------------------------------------------------------------------------------- /pkg/cmd/servingcertsigner/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/pkg/cmd/servingcertsigner/cmd.go -------------------------------------------------------------------------------- /pkg/controller/api/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/pkg/controller/api/api.go -------------------------------------------------------------------------------- /pkg/controller/api/resourcenames.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/pkg/controller/api/resourcenames.go -------------------------------------------------------------------------------- /pkg/operator/operator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/pkg/operator/operator.go -------------------------------------------------------------------------------- /pkg/operator/starter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/pkg/operator/starter.go -------------------------------------------------------------------------------- /pkg/operator/sync_all_v311_00.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/pkg/operator/sync_all_v311_00.go -------------------------------------------------------------------------------- /pkg/operator/sync_apiservice_v311_00.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/pkg/operator/sync_apiservice_v311_00.go -------------------------------------------------------------------------------- /pkg/operator/sync_signer_v311_00.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/pkg/operator/sync_signer_v311_00.go -------------------------------------------------------------------------------- /pkg/operator/v310_00_assets/bindata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/pkg/operator/v310_00_assets/bindata.go -------------------------------------------------------------------------------- /pkg/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/pkg/version/version.go -------------------------------------------------------------------------------- /service-serving-cert-signer.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/service-serving-cert-signer.spec -------------------------------------------------------------------------------- /test/e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/test/e2e.sh -------------------------------------------------------------------------------- /test/e2e/e2e_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/test/e2e/e2e_test.go -------------------------------------------------------------------------------- /tools/changelog/changelog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/tools/changelog/changelog.go -------------------------------------------------------------------------------- /tools/gotest2junit/gotest2junit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/tools/gotest2junit/gotest2junit.go -------------------------------------------------------------------------------- /tools/gotest2junit/pkg/api/junit.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/tools/gotest2junit/pkg/api/junit.xsd -------------------------------------------------------------------------------- /tools/gotest2junit/pkg/api/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/tools/gotest2junit/pkg/api/string.go -------------------------------------------------------------------------------- /tools/gotest2junit/pkg/api/test_case.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/tools/gotest2junit/pkg/api/test_case.go -------------------------------------------------------------------------------- /tools/gotest2junit/pkg/api/test_suite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/tools/gotest2junit/pkg/api/test_suite.go -------------------------------------------------------------------------------- /tools/gotest2junit/pkg/api/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/tools/gotest2junit/pkg/api/types.go -------------------------------------------------------------------------------- /tools/gotest2junit/test/test_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/tools/gotest2junit/test/test_test.go -------------------------------------------------------------------------------- /tools/import-verifier/import-verifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/tools/import-verifier/import-verifier.go -------------------------------------------------------------------------------- /tools/junitreport/.gitignore: -------------------------------------------------------------------------------- 1 | junitreport 2 | -------------------------------------------------------------------------------- /tools/junitreport/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/tools/junitreport/OWNERS -------------------------------------------------------------------------------- /tools/junitreport/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/tools/junitreport/README.md -------------------------------------------------------------------------------- /tools/junitreport/junitreport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/tools/junitreport/junitreport.go -------------------------------------------------------------------------------- /tools/junitreport/pkg/api/junit.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/tools/junitreport/pkg/api/junit.xsd -------------------------------------------------------------------------------- /tools/junitreport/pkg/api/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/tools/junitreport/pkg/api/string.go -------------------------------------------------------------------------------- /tools/junitreport/pkg/api/test_case.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/tools/junitreport/pkg/api/test_case.go -------------------------------------------------------------------------------- /tools/junitreport/pkg/api/test_suite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/tools/junitreport/pkg/api/test_suite.go -------------------------------------------------------------------------------- /tools/junitreport/pkg/api/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/tools/junitreport/pkg/api/types.go -------------------------------------------------------------------------------- /tools/junitreport/pkg/cmd/junitreport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/tools/junitreport/pkg/cmd/junitreport.go -------------------------------------------------------------------------------- /tools/junitreport/pkg/cmd/summarize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/tools/junitreport/pkg/cmd/summarize.go -------------------------------------------------------------------------------- /tools/junitreport/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/tools/junitreport/pkg/errors/errors.go -------------------------------------------------------------------------------- /tools/junitreport/pkg/parser/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/tools/junitreport/pkg/parser/interfaces.go -------------------------------------------------------------------------------- /tools/junitreport/test/integration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/tools/junitreport/test/integration.sh -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | *.prof 3 | -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/beorn7/perks/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/beorn7/perks/README.md -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/.gx/lastpubver: -------------------------------------------------------------------------------- 1 | 3.5.1: QmYRGECuvQnRX73fcvPnGbYijBcGN2HbKZQ7jh26qmLiHG 2 | -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/blang/semver/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/blang/semver/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/blang/semver/README.md -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/blang/semver/json.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/blang/semver/range.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/semver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/blang/semver/semver.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/blang/semver/sort.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/blang/semver/sql.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/sql_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/blang/semver/sql_test.go -------------------------------------------------------------------------------- /vendor/github.com/certifi/gocertifi/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/certifi/gocertifi/gen.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/davecgh/go-spew/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/getsentry/raven-go/.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | -------------------------------------------------------------------------------- /vendor/github.com/getsentry/raven-go/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/ghodss/yaml/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/ghodss/yaml/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/ghodss/yaml/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/ghodss/yaml/README.md -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/ghodss/yaml/fields.go -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/ghodss/yaml/yaml.go -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/yaml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/ghodss/yaml/yaml_test.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/gogo/protobuf/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/gogo/protobuf/.mailmap -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/gogo/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/gogo/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/gogo/protobuf/Makefile -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/gogo/protobuf/README -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/gogo/protobuf/Readme.md -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/bench.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/gogo/protobuf/bench.md -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/conformance/conformance.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname $0) 4 | exec go run conformance.go $* -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/io/full.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/gogo/protobuf/io/full.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/io/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/gogo/protobuf/io/io.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/protoc-gen-gogo/testdata/multi/.gitignore: -------------------------------------------------------------------------------- 1 | *.pb.go 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/.gitignore: -------------------------------------------------------------------------------- 1 | *.dat 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/dashfilename/doc.go: -------------------------------------------------------------------------------- 1 | package dashfilename 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/defaultconflict/doc.go: -------------------------------------------------------------------------------- 1 | package defaultcheck 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/embedconflict/.gitignore: -------------------------------------------------------------------------------- 1 | *.pb.go 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/embedconflict/doc.go: -------------------------------------------------------------------------------- 1 | package embedconflict 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/issue270/doc.go: -------------------------------------------------------------------------------- 1 | package issue270 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/issue427/.gitignore: -------------------------------------------------------------------------------- 1 | *.pb.go 2 | *_test.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/jsonpb-gogo/jsonpb_gogo.go: -------------------------------------------------------------------------------- 1 | package jsonpb_gogo 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/mapsproto2/doc.go: -------------------------------------------------------------------------------- 1 | package mapsproto2 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/mixbench/.gitignore: -------------------------------------------------------------------------------- 1 | mixbench -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/oneof/doc.go: -------------------------------------------------------------------------------- 1 | package one 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/gogo/protobuf/test/sizerconflict/doc.go: -------------------------------------------------------------------------------- 1 | package sizerconflict 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/t.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/gogo/protobuf/test/t.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/theproto3/doc.go: -------------------------------------------------------------------------------- 1 | package theproto3 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/golang/glog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/golang/glog/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/golang/glog/README -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/glog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/golang/glog/glog.go -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/glog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/golang/glog/glog_file.go -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/glog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/golang/glog/glog_test.go -------------------------------------------------------------------------------- /vendor/github.com/golang/groupcache/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/golang/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/golang/protobuf/Makefile -------------------------------------------------------------------------------- /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/golang/protobuf/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/golang/protobuf/go.mod -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/golang/protobuf/go.sum -------------------------------------------------------------------------------- /vendor/github.com/google/btree/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /vendor/github.com/google/btree/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/google/btree/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/btree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/google/btree/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/btree/btree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/google/btree/btree.go -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/google/gofuzz/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/google/gofuzz/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/google/gofuzz/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/google/gofuzz/fuzz.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/google/uuid/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/google/uuid/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/google/uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/google/uuid/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/google/uuid/dce.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/google/uuid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/google/uuid 2 | -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/google/uuid/hash.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/google/uuid/json_test.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/google/uuid/marshal.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/google/uuid/node.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node_js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/google/uuid/node_js.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node_net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/google/uuid/node_net.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/seq_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/google/uuid/seq_test.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/google/uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/sql_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/google/uuid/sql_test.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/google/uuid/time.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/google/uuid/util.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/google/uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/uuid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/google/uuid/uuid_test.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/google/uuid/version1.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/google/uuid/version4.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/golang-lru/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/hashicorp/golang-lru 2 | -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/imdario/mergo/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/imdario/mergo/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/imdario/mergo/README.md -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/imdario/mergo/doc.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/imdario/mergo/map.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/imdario/mergo/merge.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/mergo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/imdario/mergo/mergo.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - "output_tests/.*" 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /bug_test.go 3 | /coverage.txt 4 | /.idea 5 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/json-iterator/go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/json-iterator/go/any.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/json-iterator/go/iter.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/json-iterator/go/pool.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/json-iterator/go/test.sh -------------------------------------------------------------------------------- /vendor/github.com/jteeuwen/go-bindata/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | make -C testdata 3 | -------------------------------------------------------------------------------- /vendor/github.com/jteeuwen/go-bindata/testdata/dupname/foo/bar: -------------------------------------------------------------------------------- 1 | // sample file 2 | -------------------------------------------------------------------------------- /vendor/github.com/jteeuwen/go-bindata/testdata/dupname/foo_bar: -------------------------------------------------------------------------------- 1 | // sample file 2 | -------------------------------------------------------------------------------- /vendor/github.com/jteeuwen/go-bindata/testdata/in/a/test.asset: -------------------------------------------------------------------------------- 1 | // sample file 2 | -------------------------------------------------------------------------------- /vendor/github.com/jteeuwen/go-bindata/testdata/in/b/test.asset: -------------------------------------------------------------------------------- 1 | // sample file 2 | -------------------------------------------------------------------------------- /vendor/github.com/jteeuwen/go-bindata/testdata/in/c/test.asset: -------------------------------------------------------------------------------- 1 | // sample file 2 | -------------------------------------------------------------------------------- /vendor/github.com/jteeuwen/go-bindata/testdata/in/test.asset: -------------------------------------------------------------------------------- 1 | // sample file 2 | -------------------------------------------------------------------------------- /vendor/github.com/jteeuwen/go-bindata/testdata/symlinkFile/file1: -------------------------------------------------------------------------------- 1 | ../symlinkSrc/file1 -------------------------------------------------------------------------------- /vendor/github.com/jteeuwen/go-bindata/testdata/symlinkParent/symlinkTarget: -------------------------------------------------------------------------------- 1 | ../symlinkSrc/ -------------------------------------------------------------------------------- /vendor/github.com/jteeuwen/go-bindata/testdata/symlinkRecursiveParent/file1: -------------------------------------------------------------------------------- 1 | // test file 1 2 | -------------------------------------------------------------------------------- /vendor/github.com/jteeuwen/go-bindata/testdata/symlinkRecursiveParent/symlinkTarget: -------------------------------------------------------------------------------- 1 | ../symlinkRecursiveParent/ -------------------------------------------------------------------------------- /vendor/github.com/jteeuwen/go-bindata/testdata/symlinkSrc/file1: -------------------------------------------------------------------------------- 1 | // symlink file 1 2 | -------------------------------------------------------------------------------- /vendor/github.com/jteeuwen/go-bindata/testdata/symlinkSrc/file2: -------------------------------------------------------------------------------- 1 | // symlink file 2 2 | -------------------------------------------------------------------------------- /vendor/github.com/jteeuwen/go-bindata/testdata/symlinkSrc/file3: -------------------------------------------------------------------------------- 1 | // symlink file 3 2 | -------------------------------------------------------------------------------- /vendor/github.com/jteeuwen/go-bindata/testdata/symlinkSrc/file4: -------------------------------------------------------------------------------- 1 | // symlink file 4 2 | -------------------------------------------------------------------------------- /vendor/github.com/konsorten/go-windows-terminal-sequences/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/konsorten/go-windows-terminal-sequences 2 | -------------------------------------------------------------------------------- /vendor/github.com/matttproud/golang_protobuf_extensions/pbutil/.gitignore: -------------------------------------------------------------------------------- 1 | cover.dat 2 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/.gitignore: -------------------------------------------------------------------------------- 1 | /coverage.txt 2 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /coverage.txt 3 | -------------------------------------------------------------------------------- /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_amd64p32.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_mips64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mipsx.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_ppc64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_s390x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/openshift/api/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/openshift/api/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/openshift/api/Makefile -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/openshift/api/OWNERS -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/openshift/api/README.md -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/authorization/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - enj 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/openshift/api/glide.lock -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/openshift/api/glide.yaml -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/hack/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/install.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/openshift/api/install.go -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/oauth/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - enj 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/pkg/testing/doc.go: -------------------------------------------------------------------------------- 1 | package testing 2 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/security/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - enj 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/user/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - enj 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/client-go/hack/boilerplate.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/pborman/uuid/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/pborman/uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/pborman/uuid/README.md -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/pborman/uuid/dce.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/pborman/uuid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/pborman/uuid/go.mod -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/pborman/uuid/go.sum -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/pborman/uuid/hash.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/pborman/uuid/marshal.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/pborman/uuid/node.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/seq_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/pborman/uuid/seq_test.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/pborman/uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/sql_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/pborman/uuid/sql_test.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/pborman/uuid/time.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/pborman/uuid/util.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/pborman/uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/version1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/pborman/uuid/version1.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/version4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/pborman/uuid/version4.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/pkg/errors/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/pkg/errors/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/pkg/errors/README.md -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/pkg/errors/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/pkg/errors/bench_test.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/pkg/errors/errors.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/pkg/errors/stack.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/stack_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/pkg/errors/stack_test.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/profile/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/pkg/profile/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/profile/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/pkg/profile/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/pkg/profile/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/pkg/profile/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/profile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/pkg/profile/README.md -------------------------------------------------------------------------------- /vendor/github.com/pkg/profile/mutex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/pkg/profile/mutex.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/profile/mutex17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/pkg/profile/mutex17.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/profile/profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/pkg/profile/profile.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/profile/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/pkg/profile/trace.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/profile/trace16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/pkg/profile/trace16.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_golang/VERSION: -------------------------------------------------------------------------------- 1 | 0.9.0 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_golang/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | command-line-arguments.test 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_model/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_model/MAINTAINERS.md: -------------------------------------------------------------------------------- 1 | * Björn Rabenstein 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_model/ruby/Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/prometheus/common/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/config/testdata/basic-auth-password: -------------------------------------------------------------------------------- 1 | foobar 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/config/testdata/http.conf.basic-auth.no-username.yaml: -------------------------------------------------------------------------------- 1 | basic_auth: 2 | password: secret 3 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/config/testdata/tls_config.empty.good.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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_0: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_0: -------------------------------------------------------------------------------- 1 | bla 3.14 -------------------------------------------------------------------------------- /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_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_15: -------------------------------------------------------------------------------- 1 | 2 | # TYPE metric bla 3 | -------------------------------------------------------------------------------- /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_17: -------------------------------------------------------------------------------- 1 | @invalidmetric{label="bla"} 3.14 2 -------------------------------------------------------------------------------- /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_2: -------------------------------------------------------------------------------- 1 | 2 | metric{label="new 3 | line"} 3.14 4 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_3: -------------------------------------------------------------------------------- 1 | metric{@="bla"} 3.14 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_4: -------------------------------------------------------------------------------- 1 | metric{__name__="bla"} 3.14 -------------------------------------------------------------------------------- /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/common/expfmt/fuzz/corpus/from_test_parse_error_9: -------------------------------------------------------------------------------- 1 | metric{label="bla"} 3.14 2.72 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/minimal: -------------------------------------------------------------------------------- 1 | m{} 0 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/.gitignore: -------------------------------------------------------------------------------- 1 | /fixtures/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/MAINTAINERS.md: -------------------------------------------------------------------------------- 1 | * Tobias Schmidt 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/prometheus/procfs/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/prometheus/procfs/doc.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/prometheus/procfs/fs.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/sysfs/.gitignore: -------------------------------------------------------------------------------- 1 | fixtures/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/ttar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/prometheus/procfs/ttar -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | vendor 3 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/sirupsen/logrus/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/sirupsen/logrus/doc.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/sirupsen/logrus/entry.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/sirupsen/logrus/go.mod -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/sirupsen/logrus/go.sum -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/sirupsen/logrus/hooks.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/spf13/cobra/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/spf13/cobra/.mailmap -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/spf13/cobra/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/spf13/cobra/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/spf13/cobra/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/spf13/cobra/args.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/args_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/spf13/cobra/args_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/cobra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/spf13/cobra/cobra.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/spf13/cobra/command.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/command_notwin.go: -------------------------------------------------------------------------------- 1 | // +build !windows 2 | 3 | package cobra 4 | 5 | var preExecHookFn func(*Command) 6 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/doc/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/spf13/cobra/doc/util.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/spf13/pflag/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/spf13/pflag/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/spf13/pflag/bool_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/spf13/pflag/bytes.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/spf13/pflag/duration.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/flag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/spf13/pflag/flag_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/spf13/pflag/float32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/spf13/pflag/float64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/spf13/pflag/int16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/spf13/pflag/int_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/spf13/pflag/ip_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/spf13/pflag/ip_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipmask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/spf13/pflag/ipmask.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/spf13/pflag/string.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/spf13/pflag/uint16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/spf13/pflag/uint32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/spf13/pflag/uint64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/.gitattributes -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/acme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/acme/acme.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/acme/http.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/acme/jws.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/acme/types.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/bn256.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/bn256/bn256.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/curve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/bn256/curve.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/gfp12.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/bn256/gfp12.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/gfp2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/bn256/gfp2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/gfp6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/bn256/gfp6.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/optate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/bn256/optate.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/twist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/bn256/twist.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/cast5/cast5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/cast5/cast5.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/hkdf/hkdf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/hkdf/hkdf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/md4/md4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/md4/md4.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/md4/md4_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/md4/md4_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/md4/md4block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/md4/md4block.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/nacl/box/box.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/nacl/box/box.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ocsp/ocsp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/ocsp/ocsp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/openpgp/keys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/openpgp/read.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/otr/otr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/otr/otr.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/otr/otr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/otr/otr_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/otr/smp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/otr/smp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/pkcs12/mac.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/pbkdf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/pkcs12/pbkdf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/sha3/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/hashes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/sha3/hashes.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/keccakf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/sha3/keccakf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/sha3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/sha3/sha3.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/shake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/sha3/shake.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/xor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/sha3/xor.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/ssh/buffer.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/certs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/ssh/certs.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/ssh/channel.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/ssh/cipher.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/ssh/client.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/ssh/common.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/ssh/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/kex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/ssh/kex.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/kex_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/ssh/kex_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/ssh/keys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/ssh/mac.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/ssh/messages.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/ssh/mux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/ssh/mux_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/ssh/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/ssh/session.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/tcpip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/ssh/tcpip.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/test/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/ssh/test/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/tea/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/tea/cipher.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/tea/tea_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/tea/tea_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/xtea/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/xtea/block.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/xtea/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/xtea/cipher.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/xts/xts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/xts/xts.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/xts/xts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/crypto/xts/xts_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/.gitattributes -------------------------------------------------------------------------------- /vendor/golang.org/x/net/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/asm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/bpf/asm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/bpf/constants.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/bpf/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/setter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/bpf/setter.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/bpf/vm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/vm_bpf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/bpf/vm_bpf_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/vm_ret_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/bpf/vm_ret_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/vm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/bpf/vm_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/context/context.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/context/go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/context/go19.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/dict/dict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/dict/dict.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/atom/atom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/html/atom/atom.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/atom/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/html/atom/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/atom/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/html/atom/table.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/html/const.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/html/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/doctype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/html/doctype.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/html/entity.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/escape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/html/escape.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/foreign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/html/foreign.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/html/node.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/html/node_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/html/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/html/parse_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/html/render.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/html/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/token_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/html/token_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/http2/Dockerfile -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/http2/README -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/ciphers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/http2/ciphers.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/http2/flow_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go111.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/http2/go111.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/http2/go16.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/http2/go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/http2/go18.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go18_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/http2/go18_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/http2/go19.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go19_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/http2/go19_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/gotrack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/http2/gotrack.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2c/h2c.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/http2/h2c/h2c.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/rootCA.srl: -------------------------------------------------------------------------------- 1 | E2CE26BF3285059C 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2i/h2i.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/http2/h2i/h2i.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/headermap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/http2/headermap.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go111.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/http2/not_go111.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/http2/not_go16.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/http2/not_go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/http2/not_go18.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/http2/not_go19.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/pipe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/http2/pipe_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/http2/transport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/diag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/icmp/diag_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/dstunreach.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/icmp/dstunreach.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/echo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/icmp/echo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/icmp/endpoint.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/ipv4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/icmp/ipv4.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/ipv6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/icmp/ipv6.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/icmp/message.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/mpls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/icmp/mpls.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/idna.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/idna/idna.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/punycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/idna/punycode.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/idna/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/ipv4/batch.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/bpf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/ipv4/bpf_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/ipv4/control.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/dgramopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/ipv4/dgramopt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/ipv4/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/ipv4/endpoint.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/ipv4/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/ipv4/header.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/ipv4/helper.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/ipv4/iana.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/ipv4/icmp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/packet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/ipv4/packet.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/ipv4/payload.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sockopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/ipv4/sockopt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_bpf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/ipv4/sys_bpf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/ipv4/sys_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/ipv4/sys_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/ipv6/batch.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/bpf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/ipv6/bpf_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/ipv6/control.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/dgramopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/ipv6/dgramopt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/ipv6/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/ipv6/endpoint.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/ipv6/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/ipv6/header.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/ipv6/helper.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/ipv6/iana.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/ipv6/icmp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/ipv6/icmp_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/ipv6/payload.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sockopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/ipv6/sockopt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_bpf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/ipv6/sys_bpf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/ipv6/sys_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/ipv6/sys_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/lif/address.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/binary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/lif/binary.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/lif.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/lif/lif.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/link.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/lif/link.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/link_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/lif/link_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/sys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/lif/sys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/lif/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/direct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/proxy/direct.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/proxy/proxy.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/socks5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/proxy/socks5.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/route/address.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/binary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/route/binary.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/route/message.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/route/route.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/sys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/route/sys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/route/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/trace/events.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/webdav/file.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/if.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/webdav/if.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/webdav/lock.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/prop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/webdav/prop.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/webdav.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/webdav/webdav.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/net/webdav/xml.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/sys/.gitattributes -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/sys/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/sys/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/sys/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/sys/cpu/cpu.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/sys/cpu/cpu_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/sys/cpu/cpu_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_gccgo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/sys/cpu/cpu_gccgo.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/sys/cpu/cpu_gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_mipsx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/sys/cpu/cpu_mipsx.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/sys/cpu/cpu_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/sys/cpu/cpu_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_x86.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/sys/cpu/cpu_x86.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_x86.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/sys/cpu/cpu_x86.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/sys/plan9/asm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/sys/plan9/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/sys/plan9/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/sys/plan9/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/sys/plan9/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/sys/plan9/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/sys/unix/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ioctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/sys/unix/ioctl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkpost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/sys/unix/mkpost.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/text/.gitattributes -------------------------------------------------------------------------------- /vendor/golang.org/x/text/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/text/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/text/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/text/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/text/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/text/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/cases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/text/cases/cases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/fold.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/text/cases/fold.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/text/cases/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/icu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/text/cases/icu.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/text/cases/info.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/text/cases/map.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/text/collate/sort.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/currency/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/text/currency/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/date/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/text/date/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/date/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/text/date/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/text/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/text/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/text/go.mod -------------------------------------------------------------------------------- /vendor/golang.org/x/text/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/text/go.sum -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/text/language/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/text/language/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/message/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/text/message/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/number/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/text/number/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/text/runes/cond.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/runes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/text/runes/runes.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/search/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/text/search/index.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/secure/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/text/secure/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/text/unicode/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/text/width/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/width.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/text/width/width.go -------------------------------------------------------------------------------- /vendor/golang.org/x/time/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/time/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/time/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/time/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/time/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/time/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/time/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/time/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/time/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/time/rate/rate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/golang.org/x/time/rate/rate.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/gopkg.in/inf.v0/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/gopkg.in/inf.v0/benchmark_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/dec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/gopkg.in/inf.v0/dec.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/dec_go1_2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/gopkg.in/inf.v0/dec_go1_2_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/dec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/gopkg.in/inf.v0/dec_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/gopkg.in/inf.v0/example_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/rounder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/gopkg.in/inf.v0/rounder.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/rounder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/gopkg.in/inf.v0/rounder_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/gopkg.in/yaml.v2/LICENSE.libyaml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/gopkg.in/yaml.v2/decode_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/gopkg.in/yaml.v2/encode_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/gopkg.in/yaml.v2/go.mod -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/gopkg.in/yaml.v2/suite_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/gopkg.in/yaml.v2/yamlprivateh.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/k8s.io/api/Godeps/Godeps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/Godeps/Godeps.json -------------------------------------------------------------------------------- /vendor/k8s.io/api/Godeps/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/Godeps/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/api/Godeps/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/Godeps/Readme -------------------------------------------------------------------------------- /vendor/k8s.io/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/api/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/api/SECURITY_CONTACTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/SECURITY_CONTACTS -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/apps/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/apps/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/apps/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/apps/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/apps/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/apps/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/apps/v1beta2/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta2/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/apps/v1beta2/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/authentication/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/authentication/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/api/authorization/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/authorization/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/api/autoscaling/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/autoscaling/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/api/autoscaling/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/autoscaling/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/batch/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/batch/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/batch/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/batch/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/batch/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/batch/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v2alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/batch/v2alpha1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/certificates/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/certificates/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/api/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/code-of-conduct.md -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/core/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/core/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/core/v1/resource.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/taint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/core/v1/taint.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/taint_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/core/v1/taint_test.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/toleration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/core/v1/toleration.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/core/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/events/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/events/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/extensions/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/extensions/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/api/imagepolicy/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/imagepolicy/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/api/networking/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/networking/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/api/networking/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/networking/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/networking/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/networking/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/policy/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/policy/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/rbac/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/rbac/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/rbac/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/rbac/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/rbac/v1alpha1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1alpha1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/rbac/v1alpha1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/rbac/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/rbac/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/roundtrip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/roundtrip_test.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - deads2k 3 | - mbohlool 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/storage/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/storage/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/storage/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/api/storage/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/Godeps/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/apimachinery/Godeps/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/Godeps/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/apimachinery/Godeps/Readme -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/apimachinery/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/apimachinery/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/apimachinery/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/apimachinery/pkg/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/apiserver/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/Godeps/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/apiserver/Godeps/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/Godeps/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/apiserver/Godeps/Readme -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/apiserver/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/apiserver/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/apiserver/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/authentication/request/x509/testdata/client.csr.json: -------------------------------------------------------------------------------- 1 | { 2 | "CN": "My Client" 3 | } -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/endpoints/metrics/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - wojtek-t 3 | - jimmidyson 4 | -------------------------------------------------------------------------------- /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/server/filters/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - sttts 3 | - dims 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/server/mux/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - sttts 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/server/routes/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - sttts 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/client-go/.travis.yml -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/client-go/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/client-go/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/Godeps/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/client-go/Godeps/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/Godeps/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/client-go/Godeps/Readme -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/client-go/INSTALL.md -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/client-go/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/client-go/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/client-go/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/pkg/version/.gitattributes: -------------------------------------------------------------------------------- 1 | base.go export-subst 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/client-go/rest/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/client-go/rest/client.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/client-go/rest/config.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/client-go/rest/plugin.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/client-go/rest/request.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/scale/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/client-go/scale/client.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/scale/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/client-go/scale/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/scale/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/client-go/scale/util.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/testing/fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/client-go/testing/fake.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/transport/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/client-go/transport/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/cert/csr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/client-go/util/cert/csr.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/cert/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/client-go/util/cert/io.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/cert/pem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/client-go/util/cert/pem.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/retry/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - caesarxuchao 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/kube-aggregator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/kube-aggregator/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/kube-aggregator/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/kube-aggregator/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/kube-aggregator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/kube-aggregator/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/kube-aggregator/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/kube-aggregator/main.go -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/kube-openapi/.gitignore -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/kube-openapi/.travis.yml -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/Godeps/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/kube-openapi/Godeps/Readme -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/kube-openapi/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/kube-openapi/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/service-serving-cert-signer/HEAD/vendor/k8s.io/kube-openapi/README.md --------------------------------------------------------------------------------