├── .codecov.yaml ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── kind-e2e.yaml │ ├── knative-dependabot.yaml │ ├── knative-go-build.yaml │ ├── knative-go-test.yaml │ ├── knative-security.yaml │ ├── knative-stale.yaml │ ├── knative-style.yaml │ └── knative-verify.yaml ├── .gitignore ├── .golangci.yaml ├── .ko.yaml ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── DEVELOPMENT.md ├── LICENSE ├── OWNERS ├── OWNERS_ALIASES ├── README.md ├── SECURITY.md ├── cmd ├── controller │ └── main.go └── webhook │ └── main.go ├── config ├── 200-clusterrole.yaml ├── 300-controller.yaml ├── 400-webhook-deployment.yaml ├── 400-webhook-secret.yaml ├── 400-webhook-service.yaml ├── 500-validating-webhook.yaml └── config-gateway.yaml ├── docs ├── .test-version.template └── test-version.md ├── go.mod ├── go.sum ├── hack ├── OWNERS ├── boilerplate │ ├── add-boilerplate.sh │ ├── boilerplate.go.txt │ └── boilerplate.sh.txt ├── release.sh ├── test-env.sh ├── tools.go ├── update-codegen.sh ├── update-deps.sh └── verify-codegen.sh ├── pkg ├── client │ └── injection │ │ ├── client │ │ ├── client.go │ │ └── fake │ │ │ └── fake.go │ │ └── informers │ │ ├── apis │ │ ├── v1 │ │ │ ├── backendtlspolicy │ │ │ │ ├── backendtlspolicy.go │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── filtered │ │ │ │ │ ├── backendtlspolicy.go │ │ │ │ │ └── fake │ │ │ │ │ └── fake.go │ │ │ ├── gateway │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ │ ├── fake │ │ │ │ │ │ └── fake.go │ │ │ │ │ └── gateway.go │ │ │ │ └── gateway.go │ │ │ ├── gatewayclass │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ │ ├── fake │ │ │ │ │ │ └── fake.go │ │ │ │ │ └── gatewayclass.go │ │ │ │ └── gatewayclass.go │ │ │ ├── grpcroute │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ │ ├── fake │ │ │ │ │ │ └── fake.go │ │ │ │ │ └── grpcroute.go │ │ │ │ └── grpcroute.go │ │ │ └── httproute │ │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── httproute.go │ │ │ │ └── httproute.go │ │ └── v1beta1 │ │ │ ├── gateway │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── gateway.go │ │ │ └── gateway.go │ │ │ ├── gatewayclass │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── gatewayclass.go │ │ │ └── gatewayclass.go │ │ │ ├── httproute │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── httproute.go │ │ │ └── httproute.go │ │ │ └── referencegrant │ │ │ ├── fake │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ └── referencegrant.go │ │ │ └── referencegrant.go │ │ └── factory │ │ ├── factory.go │ │ ├── fake │ │ └── fake.go │ │ └── filtered │ │ ├── fake │ │ └── fake_filtered_factory.go │ │ └── filtered_factory.go ├── reconciler │ ├── ingress │ │ ├── config │ │ │ ├── doc.go │ │ │ ├── gateway.go │ │ │ ├── gateway_test.go │ │ │ ├── store.go │ │ │ ├── testdata │ │ │ │ └── config-gateway.yaml │ │ │ └── zz_generated.deepcopy.go │ │ ├── controller.go │ │ ├── controller_test.go │ │ ├── fixtures_test.go │ │ ├── ingress.go │ │ ├── ingress_test.go │ │ ├── lister.go │ │ ├── lister_test.go │ │ ├── reconcile_resources.go │ │ └── resources │ │ │ ├── helpers.go │ │ │ ├── httproute.go │ │ │ ├── httproute_test.go │ │ │ ├── reference_grant.go │ │ │ └── reference_grant_test.go │ └── testing │ │ ├── factory.go │ │ └── listers.go └── status │ ├── status.go │ └── status_test.go ├── test ├── OWNERS ├── clients.go ├── config │ ├── 100-serving-namespace.yaml │ ├── 100-test-namespace.yaml │ ├── 200-ingress.yaml │ ├── 200-service-account.yaml │ ├── 201-clusterrole-core.yaml │ ├── config-network.yaml │ └── leader-election.yaml ├── conformance │ └── ingress_test.go ├── e2e-common.sh ├── e2e-tests.sh ├── e2e │ ├── gateway_config_test.go │ └── testdata │ │ ├── contour-no-service-vis.yaml │ │ ├── envoy-gateway-no-service-vis.yaml │ │ └── istio-no-service-vis.yaml ├── e2e_constants.go ├── gatewayapi │ ├── README.md │ ├── go.mod │ ├── go.sum │ └── knative_test.go ├── ha │ ├── controller_test.go │ └── ha.go ├── presubmit-tests.sh ├── upload-test-images.sh └── util.go ├── third_party ├── contour │ ├── config-gateway.yaml │ ├── config_test.go │ ├── gateway-external.yaml │ └── gateway-internal.yaml ├── envoy-gateway │ ├── config-gateway.yaml │ ├── config_test.go │ ├── external.yaml │ ├── helm │ │ └── values-eg.yaml │ └── internal.yaml ├── gateway-api │ └── gateway-api.yaml └── istio │ ├── 203-local-gateway.yaml │ ├── 300-gateway-local.yaml │ └── 300-gateway.yaml └── vendor ├── github.com ├── beorn7 │ └── perks │ │ ├── LICENSE │ │ └── quantile │ │ ├── exampledata.txt │ │ └── stream.go ├── blang │ └── semver │ │ └── v4 │ │ ├── LICENSE │ │ ├── json.go │ │ ├── range.go │ │ ├── semver.go │ │ ├── sort.go │ │ └── sql.go ├── blendle │ └── zapdriver │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── config.go │ │ ├── core.go │ │ ├── encoder.go │ │ ├── http.go │ │ ├── label.go │ │ ├── logger.go │ │ ├── operation.go │ │ ├── report.go │ │ ├── service.go │ │ ├── source.go │ │ └── trace.go ├── cenkalti │ └── backoff │ │ └── v5 │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── backoff.go │ │ ├── error.go │ │ ├── exponential.go │ │ ├── retry.go │ │ ├── ticker.go │ │ └── timer.go ├── cespare │ └── xxhash │ │ └── v2 │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── testall.sh │ │ ├── xxhash.go │ │ ├── xxhash_amd64.s │ │ ├── xxhash_arm64.s │ │ ├── xxhash_asm.go │ │ ├── xxhash_other.go │ │ ├── xxhash_safe.go │ │ └── xxhash_unsafe.go ├── davecgh │ └── go-spew │ │ ├── LICENSE │ │ └── spew │ │ ├── bypass.go │ │ ├── bypasssafe.go │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── dump.go │ │ ├── format.go │ │ └── spew.go ├── emicklei │ └── go-restful │ │ └── v3 │ │ ├── .gitignore │ │ ├── .goconvey │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── Srcfile │ │ ├── bench_test.sh │ │ ├── compress.go │ │ ├── compressor_cache.go │ │ ├── compressor_pools.go │ │ ├── compressors.go │ │ ├── constants.go │ │ ├── container.go │ │ ├── cors_filter.go │ │ ├── coverage.sh │ │ ├── curly.go │ │ ├── curly_route.go │ │ ├── custom_verb.go │ │ ├── doc.go │ │ ├── entity_accessors.go │ │ ├── extensions.go │ │ ├── filter.go │ │ ├── filter_adapter.go │ │ ├── jsr311.go │ │ ├── log │ │ └── log.go │ │ ├── logger.go │ │ ├── mime.go │ │ ├── options_filter.go │ │ ├── parameter.go │ │ ├── path_expression.go │ │ ├── path_processor.go │ │ ├── request.go │ │ ├── response.go │ │ ├── route.go │ │ ├── route_builder.go │ │ ├── route_reader.go │ │ ├── router.go │ │ ├── service_error.go │ │ ├── web_service.go │ │ └── web_service_container.go ├── evanphx │ └── json-patch │ │ └── v5 │ │ ├── LICENSE │ │ ├── errors.go │ │ ├── internal │ │ └── json │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── fold.go │ │ │ ├── fuzz.go │ │ │ ├── indent.go │ │ │ ├── scanner.go │ │ │ ├── stream.go │ │ │ ├── tables.go │ │ │ └── tags.go │ │ ├── merge.go │ │ └── patch.go ├── felixge │ └── httpsnoop │ │ ├── .gitignore │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── capture_metrics.go │ │ ├── docs.go │ │ ├── wrap_generated_gteq_1.8.go │ │ └── wrap_generated_lt_1.8.go ├── fxamacker │ └── cbor │ │ └── v2 │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── bytestring.go │ │ ├── cache.go │ │ ├── common.go │ │ ├── decode.go │ │ ├── diagnose.go │ │ ├── doc.go │ │ ├── encode.go │ │ ├── encode_map.go │ │ ├── omitzero_go124.go │ │ ├── omitzero_pre_go124.go │ │ ├── simplevalue.go │ │ ├── stream.go │ │ ├── structfields.go │ │ ├── tag.go │ │ └── valid.go ├── go-logr │ ├── logr │ │ ├── .golangci.yaml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── context.go │ │ ├── context_noslog.go │ │ ├── context_slog.go │ │ ├── discard.go │ │ ├── funcr │ │ │ ├── funcr.go │ │ │ └── slogsink.go │ │ ├── logr.go │ │ ├── sloghandler.go │ │ ├── slogr.go │ │ ├── slogr │ │ │ └── slogr.go │ │ └── slogsink.go │ ├── stdr │ │ ├── LICENSE │ │ ├── README.md │ │ └── stdr.go │ └── zapr │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── slogzapr.go │ │ ├── zapr.go │ │ ├── zapr_noslog.go │ │ └── zapr_slog.go ├── go-openapi │ ├── jsonpointer │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── errors.go │ │ └── pointer.go │ ├── jsonreference │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── internal │ │ │ └── normalize_url.go │ │ └── reference.go │ └── swag │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── BENCHMARK.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── convert.go │ │ ├── convert_types.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── file.go │ │ ├── initialism_index.go │ │ ├── json.go │ │ ├── loading.go │ │ ├── name_lexem.go │ │ ├── net.go │ │ ├── path.go │ │ ├── split.go │ │ ├── string_bytes.go │ │ ├── util.go │ │ └── yaml.go ├── gogo │ └── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── proto │ │ ├── Makefile │ │ ├── clone.go │ │ ├── custom_gogo.go │ │ ├── decode.go │ │ ├── deprecated.go │ │ ├── discard.go │ │ ├── duration.go │ │ ├── duration_gogo.go │ │ ├── encode.go │ │ ├── encode_gogo.go │ │ ├── equal.go │ │ ├── extensions.go │ │ ├── extensions_gogo.go │ │ ├── lib.go │ │ ├── lib_gogo.go │ │ ├── message_set.go │ │ ├── pointer_reflect.go │ │ ├── pointer_reflect_gogo.go │ │ ├── pointer_unsafe.go │ │ ├── pointer_unsafe_gogo.go │ │ ├── properties.go │ │ ├── properties_gogo.go │ │ ├── skip_gogo.go │ │ ├── table_marshal.go │ │ ├── table_marshal_gogo.go │ │ ├── table_merge.go │ │ ├── table_unmarshal.go │ │ ├── table_unmarshal_gogo.go │ │ ├── text.go │ │ ├── text_gogo.go │ │ ├── text_parser.go │ │ ├── timestamp.go │ │ ├── timestamp_gogo.go │ │ ├── wrappers.go │ │ └── wrappers_gogo.go │ │ └── sortkeys │ │ └── sortkeys.go ├── google │ ├── gnostic-models │ │ ├── LICENSE │ │ ├── compiler │ │ │ ├── README.md │ │ │ ├── context.go │ │ │ ├── error.go │ │ │ ├── extensions.go │ │ │ ├── helpers.go │ │ │ ├── main.go │ │ │ └── reader.go │ │ ├── extensions │ │ │ ├── README.md │ │ │ ├── extension.pb.go │ │ │ ├── extension.proto │ │ │ └── extensions.go │ │ ├── jsonschema │ │ │ ├── README.md │ │ │ ├── base.go │ │ │ ├── display.go │ │ │ ├── models.go │ │ │ ├── operations.go │ │ │ ├── reader.go │ │ │ ├── schema.json │ │ │ └── writer.go │ │ ├── openapiv2 │ │ │ ├── OpenAPIv2.go │ │ │ ├── OpenAPIv2.pb.go │ │ │ ├── OpenAPIv2.proto │ │ │ ├── README.md │ │ │ ├── document.go │ │ │ └── openapi-2.0.json │ │ └── openapiv3 │ │ │ ├── OpenAPIv3.go │ │ │ ├── OpenAPIv3.pb.go │ │ │ ├── OpenAPIv3.proto │ │ │ ├── README.md │ │ │ ├── annotations.pb.go │ │ │ ├── annotations.proto │ │ │ └── document.go │ ├── go-cmp │ │ ├── LICENSE │ │ └── cmp │ │ │ ├── cmpopts │ │ │ ├── equate.go │ │ │ ├── ignore.go │ │ │ ├── sort.go │ │ │ ├── struct_filter.go │ │ │ └── xform.go │ │ │ ├── compare.go │ │ │ ├── export.go │ │ │ ├── internal │ │ │ ├── diff │ │ │ │ ├── debug_disable.go │ │ │ │ ├── debug_enable.go │ │ │ │ └── diff.go │ │ │ ├── flags │ │ │ │ └── flags.go │ │ │ ├── function │ │ │ │ └── func.go │ │ │ └── value │ │ │ │ ├── name.go │ │ │ │ ├── pointer.go │ │ │ │ └── sort.go │ │ │ ├── options.go │ │ │ ├── path.go │ │ │ ├── report.go │ │ │ ├── report_compare.go │ │ │ ├── report_references.go │ │ │ ├── report_reflect.go │ │ │ ├── report_slices.go │ │ │ ├── report_text.go │ │ │ └── report_value.go │ └── uuid │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dce.go │ │ ├── doc.go │ │ ├── hash.go │ │ ├── marshal.go │ │ ├── node.go │ │ ├── node_js.go │ │ ├── node_net.go │ │ ├── null.go │ │ ├── sql.go │ │ ├── time.go │ │ ├── util.go │ │ ├── uuid.go │ │ ├── version1.go │ │ ├── version4.go │ │ ├── version6.go │ │ └── version7.go ├── gorilla │ └── websocket │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── client.go │ │ ├── compression.go │ │ ├── conn.go │ │ ├── doc.go │ │ ├── join.go │ │ ├── json.go │ │ ├── mask.go │ │ ├── mask_safe.go │ │ ├── prepared.go │ │ ├── proxy.go │ │ ├── server.go │ │ └── util.go ├── grpc-ecosystem │ └── grpc-gateway │ │ └── v2 │ │ ├── LICENSE │ │ ├── internal │ │ └── httprule │ │ │ ├── compile.go │ │ │ ├── fuzz.go │ │ │ ├── parse.go │ │ │ └── types.go │ │ ├── runtime │ │ ├── context.go │ │ ├── convert.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── fieldmask.go │ │ ├── handler.go │ │ ├── marshal_httpbodyproto.go │ │ ├── marshal_json.go │ │ ├── marshal_jsonpb.go │ │ ├── marshal_proto.go │ │ ├── marshaler.go │ │ ├── marshaler_registry.go │ │ ├── mux.go │ │ ├── pattern.go │ │ ├── proto2_convert.go │ │ └── query.go │ │ └── utilities │ │ ├── doc.go │ │ ├── pattern.go │ │ ├── readerfactory.go │ │ ├── string_array_flag.go │ │ └── trie.go ├── hashicorp │ └── golang-lru │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── 2q.go │ │ ├── LICENSE │ │ ├── README.md │ │ ├── arc.go │ │ ├── doc.go │ │ ├── lru.go │ │ ├── simplelru │ │ ├── lru.go │ │ └── lru_interface.go │ │ └── testing.go ├── josharian │ └── intern │ │ ├── README.md │ │ ├── intern.go │ │ └── license.md ├── 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_uint32.go │ │ ├── any_uint64.go │ │ ├── build.sh │ │ ├── config.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_strict.go │ │ ├── iter_str.go │ │ ├── jsoniter.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 │ │ ├── stream.go │ │ ├── stream_float.go │ │ ├── stream_int.go │ │ ├── stream_str.go │ │ └── test.sh ├── kelseyhightower │ └── envconfig │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── README.md │ │ ├── doc.go │ │ ├── env_os.go │ │ ├── env_syscall.go │ │ ├── envconfig.go │ │ └── usage.go ├── mailru │ └── easyjson │ │ ├── LICENSE │ │ ├── buffer │ │ └── pool.go │ │ ├── jlexer │ │ ├── bytestostr.go │ │ ├── bytestostr_nounsafe.go │ │ ├── error.go │ │ └── lexer.go │ │ └── jwriter │ │ └── writer.go ├── modern-go │ ├── concurrent │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── executor.go │ │ ├── go_above_19.go │ │ ├── go_below_19.go │ │ ├── log.go │ │ ├── test.sh │ │ └── unbounded_executor.go │ └── reflect2 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── go_above_118.go │ │ ├── go_above_19.go │ │ ├── go_below_118.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 │ │ ├── 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 ├── munnerz │ └── goautoneg │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.txt │ │ └── autoneg.go ├── pmezard │ └── go-difflib │ │ ├── LICENSE │ │ └── difflib │ │ └── difflib.go ├── prometheus │ ├── client_golang │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── internal │ │ │ └── github.com │ │ │ │ └── golang │ │ │ │ └── gddo │ │ │ │ ├── LICENSE │ │ │ │ └── httputil │ │ │ │ ├── header │ │ │ │ └── header.go │ │ │ │ └── negotiate.go │ │ └── prometheus │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── build_info_collector.go │ │ │ ├── collector.go │ │ │ ├── collectorfunc.go │ │ │ ├── counter.go │ │ │ ├── desc.go │ │ │ ├── doc.go │ │ │ ├── expvar_collector.go │ │ │ ├── fnv.go │ │ │ ├── gauge.go │ │ │ ├── get_pid.go │ │ │ ├── get_pid_gopherjs.go │ │ │ ├── go_collector.go │ │ │ ├── go_collector_go116.go │ │ │ ├── go_collector_latest.go │ │ │ ├── histogram.go │ │ │ ├── internal │ │ │ ├── almost_equal.go │ │ │ ├── difflib.go │ │ │ ├── go_collector_options.go │ │ │ ├── go_runtime_metrics.go │ │ │ └── metric.go │ │ │ ├── labels.go │ │ │ ├── metric.go │ │ │ ├── num_threads.go │ │ │ ├── num_threads_gopherjs.go │ │ │ ├── observer.go │ │ │ ├── process_collector.go │ │ │ ├── process_collector_darwin.go │ │ │ ├── process_collector_mem_cgo_darwin.c │ │ │ ├── process_collector_mem_cgo_darwin.go │ │ │ ├── process_collector_mem_nocgo_darwin.go │ │ │ ├── process_collector_not_supported.go │ │ │ ├── process_collector_procfsenabled.go │ │ │ ├── process_collector_windows.go │ │ │ ├── promhttp │ │ │ ├── delegator.go │ │ │ ├── http.go │ │ │ ├── instrument_client.go │ │ │ ├── instrument_server.go │ │ │ ├── internal │ │ │ │ └── compression.go │ │ │ └── option.go │ │ │ ├── registry.go │ │ │ ├── summary.go │ │ │ ├── timer.go │ │ │ ├── untyped.go │ │ │ ├── value.go │ │ │ ├── vec.go │ │ │ ├── vnext.go │ │ │ └── wrap.go │ ├── client_model │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── go │ │ │ └── metrics.pb.go │ ├── common │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── expfmt │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── expfmt.go │ │ │ ├── fuzz.go │ │ │ ├── openmetrics_create.go │ │ │ ├── text_create.go │ │ │ └── text_parse.go │ │ └── model │ │ │ ├── alert.go │ │ │ ├── fingerprinting.go │ │ │ ├── fnv.go │ │ │ ├── labels.go │ │ │ ├── labelset.go │ │ │ ├── labelset_string.go │ │ │ ├── metadata.go │ │ │ ├── metric.go │ │ │ ├── model.go │ │ │ ├── signature.go │ │ │ ├── silence.go │ │ │ ├── time.go │ │ │ ├── value.go │ │ │ ├── value_float.go │ │ │ ├── value_histogram.go │ │ │ └── value_type.go │ ├── otlptranslator │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── MAINTAINERS.md │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── constants.go │ │ ├── doc.go │ │ ├── label_namer.go │ │ ├── metric_namer.go │ │ ├── metric_type.go │ │ ├── strategy.go │ │ ├── strconv.go │ │ └── unit_namer.go │ └── procfs │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS.md │ │ ├── Makefile │ │ ├── Makefile.common │ │ ├── NOTICE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── arp.go │ │ ├── buddyinfo.go │ │ ├── cmdline.go │ │ ├── cpuinfo.go │ │ ├── cpuinfo_armx.go │ │ ├── cpuinfo_loong64.go │ │ ├── cpuinfo_mipsx.go │ │ ├── cpuinfo_others.go │ │ ├── cpuinfo_ppcx.go │ │ ├── cpuinfo_riscvx.go │ │ ├── cpuinfo_s390x.go │ │ ├── cpuinfo_x86.go │ │ ├── crypto.go │ │ ├── doc.go │ │ ├── fs.go │ │ ├── fs_statfs_notype.go │ │ ├── fs_statfs_type.go │ │ ├── fscache.go │ │ ├── internal │ │ ├── fs │ │ │ └── fs.go │ │ └── util │ │ │ ├── parse.go │ │ │ ├── readfile.go │ │ │ ├── sysreadfile.go │ │ │ ├── sysreadfile_compat.go │ │ │ └── valueparser.go │ │ ├── ipvs.go │ │ ├── kernel_random.go │ │ ├── loadavg.go │ │ ├── mdstat.go │ │ ├── meminfo.go │ │ ├── mountinfo.go │ │ ├── mountstats.go │ │ ├── net_conntrackstat.go │ │ ├── net_dev.go │ │ ├── net_dev_snmp6.go │ │ ├── net_ip_socket.go │ │ ├── net_protocols.go │ │ ├── net_route.go │ │ ├── net_sockstat.go │ │ ├── net_softnet.go │ │ ├── net_tcp.go │ │ ├── net_tls_stat.go │ │ ├── net_udp.go │ │ ├── net_unix.go │ │ ├── net_wireless.go │ │ ├── net_xfrm.go │ │ ├── netstat.go │ │ ├── proc.go │ │ ├── proc_cgroup.go │ │ ├── proc_cgroups.go │ │ ├── proc_environ.go │ │ ├── proc_fdinfo.go │ │ ├── proc_interrupts.go │ │ ├── proc_io.go │ │ ├── proc_limits.go │ │ ├── proc_maps.go │ │ ├── proc_netstat.go │ │ ├── proc_ns.go │ │ ├── proc_psi.go │ │ ├── proc_smaps.go │ │ ├── proc_snmp.go │ │ ├── proc_snmp6.go │ │ ├── proc_stat.go │ │ ├── proc_statm.go │ │ ├── proc_status.go │ │ ├── proc_sys.go │ │ ├── schedstat.go │ │ ├── slab.go │ │ ├── softirqs.go │ │ ├── stat.go │ │ ├── swaps.go │ │ ├── thread.go │ │ ├── ttar │ │ ├── vm.go │ │ └── zoneinfo.go ├── rs │ └── dnscache │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── dnscache.go ├── spf13 │ └── pflag │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bool.go │ │ ├── bool_func.go │ │ ├── bool_slice.go │ │ ├── bytes.go │ │ ├── count.go │ │ ├── duration.go │ │ ├── duration_slice.go │ │ ├── errors.go │ │ ├── flag.go │ │ ├── float32.go │ │ ├── float32_slice.go │ │ ├── float64.go │ │ ├── float64_slice.go │ │ ├── func.go │ │ ├── golangflag.go │ │ ├── int.go │ │ ├── int16.go │ │ ├── int32.go │ │ ├── int32_slice.go │ │ ├── int64.go │ │ ├── int64_slice.go │ │ ├── int8.go │ │ ├── int_slice.go │ │ ├── ip.go │ │ ├── ip_slice.go │ │ ├── ipmask.go │ │ ├── ipnet.go │ │ ├── ipnet_slice.go │ │ ├── string.go │ │ ├── string_array.go │ │ ├── string_slice.go │ │ ├── string_to_int.go │ │ ├── string_to_int64.go │ │ ├── string_to_string.go │ │ ├── text.go │ │ ├── time.go │ │ ├── uint.go │ │ ├── uint16.go │ │ ├── uint32.go │ │ ├── uint64.go │ │ ├── uint8.go │ │ └── uint_slice.go └── x448 │ └── float16 │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ └── float16.go ├── go.opentelemetry.io ├── auto │ └── sdk │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── VERSIONING.md │ │ ├── doc.go │ │ ├── internal │ │ └── telemetry │ │ │ ├── attr.go │ │ │ ├── doc.go │ │ │ ├── id.go │ │ │ ├── number.go │ │ │ ├── resource.go │ │ │ ├── scope.go │ │ │ ├── span.go │ │ │ ├── status.go │ │ │ ├── traces.go │ │ │ └── value.go │ │ ├── limit.go │ │ ├── span.go │ │ ├── tracer.go │ │ └── tracer_provider.go ├── contrib │ └── instrumentation │ │ ├── net │ │ └── http │ │ │ └── otelhttp │ │ │ ├── LICENSE │ │ │ ├── client.go │ │ │ ├── common.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── handler.go │ │ │ ├── internal │ │ │ ├── request │ │ │ │ ├── body_wrapper.go │ │ │ │ ├── gen.go │ │ │ │ └── resp_writer_wrapper.go │ │ │ └── semconv │ │ │ │ ├── env.go │ │ │ │ ├── gen.go │ │ │ │ ├── httpconv.go │ │ │ │ └── util.go │ │ │ ├── labeler.go │ │ │ ├── start_time_context.go │ │ │ ├── transport.go │ │ │ └── version.go │ │ └── runtime │ │ ├── LICENSE │ │ ├── doc.go │ │ ├── internal │ │ ├── deprecatedruntime │ │ │ ├── doc.go │ │ │ └── runtime.go │ │ └── x │ │ │ ├── README.md │ │ │ └── x.go │ │ ├── options.go │ │ ├── producer.go │ │ ├── runtime.go │ │ └── version.go ├── otel │ ├── .clomonitor.yml │ ├── .codespellignore │ ├── .codespellrc │ ├── .gitattributes │ ├── .gitignore │ ├── .golangci.yml │ ├── .lycheeignore │ ├── .markdownlint.yaml │ ├── CHANGELOG.md │ ├── CODEOWNERS │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── RELEASING.md │ ├── SECURITY-INSIGHTS.yml │ ├── VERSIONING.md │ ├── attribute │ │ ├── README.md │ │ ├── doc.go │ │ ├── encoder.go │ │ ├── filter.go │ │ ├── internal │ │ │ └── attribute.go │ │ ├── iterator.go │ │ ├── key.go │ │ ├── kv.go │ │ ├── rawhelpers.go │ │ ├── set.go │ │ ├── type_string.go │ │ └── value.go │ ├── baggage │ │ ├── README.md │ │ ├── baggage.go │ │ ├── context.go │ │ └── doc.go │ ├── codes │ │ ├── README.md │ │ ├── codes.go │ │ └── doc.go │ ├── dependencies.Dockerfile │ ├── doc.go │ ├── error_handler.go │ ├── exporters │ │ ├── otlp │ │ │ ├── otlpmetric │ │ │ │ ├── otlpmetricgrpc │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── client.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── exporter.go │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── envconfig │ │ │ │ │ │ │ └── envconfig.go │ │ │ │ │ │ ├── gen.go │ │ │ │ │ │ ├── oconf │ │ │ │ │ │ │ ├── envconfig.go │ │ │ │ │ │ │ ├── options.go │ │ │ │ │ │ │ ├── optiontypes.go │ │ │ │ │ │ │ └── tls.go │ │ │ │ │ │ ├── partialsuccess.go │ │ │ │ │ │ ├── retry │ │ │ │ │ │ │ └── retry.go │ │ │ │ │ │ └── transform │ │ │ │ │ │ │ ├── attribute.go │ │ │ │ │ │ │ ├── error.go │ │ │ │ │ │ │ └── metricdata.go │ │ │ │ │ └── version.go │ │ │ │ └── otlpmetrichttp │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── client.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── exporter.go │ │ │ │ │ ├── internal │ │ │ │ │ ├── envconfig │ │ │ │ │ │ └── envconfig.go │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── oconf │ │ │ │ │ │ ├── envconfig.go │ │ │ │ │ │ ├── options.go │ │ │ │ │ │ ├── optiontypes.go │ │ │ │ │ │ └── tls.go │ │ │ │ │ ├── partialsuccess.go │ │ │ │ │ ├── retry │ │ │ │ │ │ └── retry.go │ │ │ │ │ └── transform │ │ │ │ │ │ ├── attribute.go │ │ │ │ │ │ ├── error.go │ │ │ │ │ │ └── metricdata.go │ │ │ │ │ └── version.go │ │ │ └── otlptrace │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── clients.go │ │ │ │ ├── doc.go │ │ │ │ ├── exporter.go │ │ │ │ ├── internal │ │ │ │ └── tracetransform │ │ │ │ │ ├── attribute.go │ │ │ │ │ ├── instrumentation.go │ │ │ │ │ ├── resource.go │ │ │ │ │ └── span.go │ │ │ │ ├── otlptracegrpc │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── client.go │ │ │ │ ├── doc.go │ │ │ │ ├── exporter.go │ │ │ │ ├── internal │ │ │ │ │ ├── envconfig │ │ │ │ │ │ └── envconfig.go │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── otlpconfig │ │ │ │ │ │ ├── envconfig.go │ │ │ │ │ │ ├── options.go │ │ │ │ │ │ ├── optiontypes.go │ │ │ │ │ │ └── tls.go │ │ │ │ │ ├── partialsuccess.go │ │ │ │ │ └── retry │ │ │ │ │ │ └── retry.go │ │ │ │ └── options.go │ │ │ │ ├── otlptracehttp │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── client.go │ │ │ │ ├── doc.go │ │ │ │ ├── exporter.go │ │ │ │ ├── internal │ │ │ │ │ ├── envconfig │ │ │ │ │ │ └── envconfig.go │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── otlpconfig │ │ │ │ │ │ ├── envconfig.go │ │ │ │ │ │ ├── options.go │ │ │ │ │ │ ├── optiontypes.go │ │ │ │ │ │ └── tls.go │ │ │ │ │ ├── partialsuccess.go │ │ │ │ │ └── retry │ │ │ │ │ │ └── retry.go │ │ │ │ └── options.go │ │ │ │ └── version.go │ │ ├── prometheus │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ └── exporter.go │ │ └── stdout │ │ │ └── stdouttrace │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── internal │ │ │ ├── counter │ │ │ │ └── counter.go │ │ │ └── x │ │ │ │ ├── README.md │ │ │ │ └── x.go │ │ │ └── trace.go │ ├── handler.go │ ├── internal │ │ ├── baggage │ │ │ ├── baggage.go │ │ │ └── context.go │ │ └── global │ │ │ ├── handler.go │ │ │ ├── instruments.go │ │ │ ├── internal_logging.go │ │ │ ├── meter.go │ │ │ ├── propagator.go │ │ │ ├── state.go │ │ │ └── trace.go │ ├── internal_logging.go │ ├── metric.go │ ├── metric │ │ ├── LICENSE │ │ ├── README.md │ │ ├── asyncfloat64.go │ │ ├── asyncint64.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── embedded │ │ │ ├── README.md │ │ │ └── embedded.go │ │ ├── instrument.go │ │ ├── meter.go │ │ ├── noop │ │ │ ├── README.md │ │ │ └── noop.go │ │ ├── syncfloat64.go │ │ └── syncint64.go │ ├── propagation.go │ ├── propagation │ │ ├── README.md │ │ ├── baggage.go │ │ ├── doc.go │ │ ├── propagation.go │ │ └── trace_context.go │ ├── renovate.json │ ├── requirements.txt │ ├── sdk │ │ ├── LICENSE │ │ ├── README.md │ │ ├── instrumentation │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── library.go │ │ │ └── scope.go │ │ ├── internal │ │ │ ├── env │ │ │ │ └── env.go │ │ │ └── x │ │ │ │ ├── README.md │ │ │ │ └── x.go │ │ ├── metric │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── aggregation.go │ │ │ ├── cache.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── env.go │ │ │ ├── exemplar.go │ │ │ ├── exemplar │ │ │ │ ├── README.md │ │ │ │ ├── doc.go │ │ │ │ ├── exemplar.go │ │ │ │ ├── filter.go │ │ │ │ ├── fixed_size_reservoir.go │ │ │ │ ├── histogram_reservoir.go │ │ │ │ ├── reservoir.go │ │ │ │ ├── storage.go │ │ │ │ └── value.go │ │ │ ├── exporter.go │ │ │ ├── instrument.go │ │ │ ├── instrumentkind_string.go │ │ │ ├── internal │ │ │ │ ├── aggregate │ │ │ │ │ ├── aggregate.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── drop.go │ │ │ │ │ ├── exemplar.go │ │ │ │ │ ├── exponential_histogram.go │ │ │ │ │ ├── filtered_reservoir.go │ │ │ │ │ ├── histogram.go │ │ │ │ │ ├── lastvalue.go │ │ │ │ │ ├── limit.go │ │ │ │ │ └── sum.go │ │ │ │ ├── reuse_slice.go │ │ │ │ └── x │ │ │ │ │ ├── README.md │ │ │ │ │ └── x.go │ │ │ ├── manual_reader.go │ │ │ ├── meter.go │ │ │ ├── metricdata │ │ │ │ ├── README.md │ │ │ │ ├── data.go │ │ │ │ ├── temporality.go │ │ │ │ └── temporality_string.go │ │ │ ├── periodic_reader.go │ │ │ ├── pipeline.go │ │ │ ├── provider.go │ │ │ ├── reader.go │ │ │ ├── version.go │ │ │ └── view.go │ │ ├── resource │ │ │ ├── README.md │ │ │ ├── auto.go │ │ │ ├── builtin.go │ │ │ ├── config.go │ │ │ ├── container.go │ │ │ ├── doc.go │ │ │ ├── env.go │ │ │ ├── host_id.go │ │ │ ├── host_id_bsd.go │ │ │ ├── host_id_darwin.go │ │ │ ├── host_id_exec.go │ │ │ ├── host_id_linux.go │ │ │ ├── host_id_readfile.go │ │ │ ├── host_id_unsupported.go │ │ │ ├── host_id_windows.go │ │ │ ├── os.go │ │ │ ├── os_release_darwin.go │ │ │ ├── os_release_unix.go │ │ │ ├── os_unix.go │ │ │ ├── os_unsupported.go │ │ │ ├── os_windows.go │ │ │ ├── process.go │ │ │ └── resource.go │ │ ├── trace │ │ │ ├── README.md │ │ │ ├── batch_span_processor.go │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── evictedqueue.go │ │ │ ├── id_generator.go │ │ │ ├── internal │ │ │ │ └── x │ │ │ │ │ ├── README.md │ │ │ │ │ └── x.go │ │ │ ├── link.go │ │ │ ├── provider.go │ │ │ ├── sampler_env.go │ │ │ ├── sampling.go │ │ │ ├── simple_span_processor.go │ │ │ ├── snapshot.go │ │ │ ├── span.go │ │ │ ├── span_exporter.go │ │ │ ├── span_limits.go │ │ │ ├── span_processor.go │ │ │ ├── tracer.go │ │ │ └── tracetest │ │ │ │ ├── README.md │ │ │ │ ├── exporter.go │ │ │ │ ├── recorder.go │ │ │ │ └── span.go │ │ └── version.go │ ├── semconv │ │ ├── v1.26.0 │ │ │ ├── README.md │ │ │ ├── attribute_group.go │ │ │ ├── doc.go │ │ │ ├── exception.go │ │ │ ├── metric.go │ │ │ └── schema.go │ │ └── v1.37.0 │ │ │ ├── MIGRATION.md │ │ │ ├── README.md │ │ │ ├── attribute_group.go │ │ │ ├── doc.go │ │ │ ├── error_type.go │ │ │ ├── exception.go │ │ │ ├── goconv │ │ │ └── metric.go │ │ │ ├── httpconv │ │ │ └── metric.go │ │ │ ├── otelconv │ │ │ └── metric.go │ │ │ └── schema.go │ ├── trace.go │ ├── trace │ │ ├── LICENSE │ │ ├── README.md │ │ ├── auto.go │ │ ├── config.go │ │ ├── context.go │ │ ├── doc.go │ │ ├── embedded │ │ │ ├── README.md │ │ │ └── embedded.go │ │ ├── hex.go │ │ ├── internal │ │ │ └── telemetry │ │ │ │ ├── attr.go │ │ │ │ ├── doc.go │ │ │ │ ├── id.go │ │ │ │ ├── number.go │ │ │ │ ├── resource.go │ │ │ │ ├── scope.go │ │ │ │ ├── span.go │ │ │ │ ├── status.go │ │ │ │ ├── traces.go │ │ │ │ └── value.go │ │ ├── nonrecording.go │ │ ├── noop.go │ │ ├── noop │ │ │ ├── README.md │ │ │ └── noop.go │ │ ├── provider.go │ │ ├── span.go │ │ ├── trace.go │ │ ├── tracer.go │ │ └── tracestate.go │ ├── verify_released_changelog.sh │ ├── version.go │ └── versions.yaml └── proto │ └── otlp │ ├── LICENSE │ ├── collector │ ├── metrics │ │ └── v1 │ │ │ ├── metrics_service.pb.go │ │ │ ├── metrics_service.pb.gw.go │ │ │ └── metrics_service_grpc.pb.go │ └── trace │ │ └── v1 │ │ ├── trace_service.pb.go │ │ ├── trace_service.pb.gw.go │ │ └── trace_service_grpc.pb.go │ ├── common │ └── v1 │ │ └── common.pb.go │ ├── metrics │ └── v1 │ │ └── metrics.pb.go │ ├── resource │ └── v1 │ │ └── resource.pb.go │ └── trace │ └── v1 │ └── trace.pb.go ├── go.uber.org ├── automaxprocs │ ├── LICENSE │ ├── internal │ │ ├── cgroups │ │ │ ├── cgroup.go │ │ │ ├── cgroups.go │ │ │ ├── cgroups2.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── mountpoint.go │ │ │ └── subsys.go │ │ └── runtime │ │ │ ├── cpu_quota_linux.go │ │ │ ├── cpu_quota_unsupported.go │ │ │ └── runtime.go │ └── maxprocs │ │ ├── maxprocs.go │ │ └── version.go ├── multierr │ ├── .codecov.yml │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── Makefile │ ├── README.md │ ├── error.go │ ├── error_post_go120.go │ └── error_pre_go120.go └── zap │ ├── .codecov.yml │ ├── .gitignore │ ├── .golangci.yml │ ├── .readme.tmpl │ ├── CHANGELOG.md │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── FAQ.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── array.go │ ├── buffer │ ├── buffer.go │ └── pool.go │ ├── checklicense.sh │ ├── config.go │ ├── doc.go │ ├── encoder.go │ ├── error.go │ ├── field.go │ ├── flag.go │ ├── glide.yaml │ ├── global.go │ ├── http_handler.go │ ├── internal │ ├── bufferpool │ │ └── bufferpool.go │ ├── color │ │ └── color.go │ ├── exit │ │ └── exit.go │ ├── level_enabler.go │ ├── pool │ │ └── pool.go │ ├── stacktrace │ │ └── stack.go │ └── ztest │ │ ├── clock.go │ │ ├── doc.go │ │ ├── timeout.go │ │ └── writer.go │ ├── level.go │ ├── logger.go │ ├── options.go │ ├── sink.go │ ├── sugar.go │ ├── time.go │ ├── writer.go │ ├── zapcore │ ├── buffered_write_syncer.go │ ├── clock.go │ ├── console_encoder.go │ ├── core.go │ ├── doc.go │ ├── encoder.go │ ├── entry.go │ ├── error.go │ ├── field.go │ ├── hook.go │ ├── increase_level.go │ ├── json_encoder.go │ ├── lazy_with.go │ ├── level.go │ ├── level_strings.go │ ├── marshaler.go │ ├── memory_encoder.go │ ├── reflected_encoder.go │ ├── sampler.go │ ├── tee.go │ └── write_syncer.go │ └── zaptest │ ├── doc.go │ ├── logger.go │ ├── testingt.go │ ├── timeout.go │ └── writer.go ├── go.yaml.in └── yaml │ ├── v2 │ ├── .travis.yml │ ├── LICENSE │ ├── LICENSE.libyaml │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go │ └── v3 │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go ├── golang.org └── x │ ├── mod │ ├── LICENSE │ ├── PATENTS │ ├── internal │ │ └── lazyregexp │ │ │ └── lazyre.go │ ├── module │ │ ├── module.go │ │ └── pseudo.go │ └── semver │ │ └── semver.go │ ├── net │ ├── LICENSE │ ├── PATENTS │ ├── http │ │ └── httpguts │ │ │ ├── guts.go │ │ │ └── httplex.go │ ├── http2 │ │ ├── .gitignore │ │ ├── ascii.go │ │ ├── ciphers.go │ │ ├── client_conn_pool.go │ │ ├── config.go │ │ ├── config_go125.go │ │ ├── config_go126.go │ │ ├── databuffer.go │ │ ├── errors.go │ │ ├── flow.go │ │ ├── frame.go │ │ ├── gotrack.go │ │ ├── h2c │ │ │ └── h2c.go │ │ ├── hpack │ │ │ ├── encode.go │ │ │ ├── hpack.go │ │ │ ├── huffman.go │ │ │ ├── static_table.go │ │ │ └── tables.go │ │ ├── http2.go │ │ ├── pipe.go │ │ ├── server.go │ │ ├── transport.go │ │ ├── unencrypted.go │ │ ├── write.go │ │ ├── writesched.go │ │ ├── writesched_priority_rfc7540.go │ │ ├── writesched_priority_rfc9218.go │ │ ├── writesched_random.go │ │ └── writesched_roundrobin.go │ ├── idna │ │ ├── go118.go │ │ ├── idna10.0.0.go │ │ ├── idna9.0.0.go │ │ ├── pre_go118.go │ │ ├── punycode.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ ├── trie.go │ │ ├── trie12.0.0.go │ │ ├── trie13.0.0.go │ │ └── trieval.go │ ├── internal │ │ ├── httpcommon │ │ │ ├── ascii.go │ │ │ ├── headermap.go │ │ │ └── request.go │ │ ├── socks │ │ │ ├── client.go │ │ │ └── socks.go │ │ └── timeseries │ │ │ └── timeseries.go │ ├── proxy │ │ ├── dial.go │ │ ├── direct.go │ │ ├── per_host.go │ │ ├── proxy.go │ │ └── socks5.go │ └── trace │ │ ├── events.go │ │ ├── histogram.go │ │ └── trace.go │ ├── oauth2 │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── deviceauth.go │ ├── internal │ │ ├── doc.go │ │ ├── oauth2.go │ │ ├── token.go │ │ └── transport.go │ ├── oauth2.go │ ├── pkce.go │ ├── token.go │ └── transport.go │ ├── sync │ ├── LICENSE │ ├── PATENTS │ ├── errgroup │ │ └── errgroup.go │ └── singleflight │ │ └── singleflight.go │ ├── sys │ ├── LICENSE │ ├── PATENTS │ ├── plan9 │ │ ├── asm.s │ │ ├── asm_plan9_386.s │ │ ├── asm_plan9_amd64.s │ │ ├── asm_plan9_arm.s │ │ ├── const_plan9.go │ │ ├── dir_plan9.go │ │ ├── env_plan9.go │ │ ├── errors_plan9.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mksysnum_plan9.sh │ │ ├── pwd_plan9.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_plan9.go │ │ ├── zsyscall_plan9_386.go │ │ ├── zsyscall_plan9_amd64.go │ │ ├── zsyscall_plan9_arm.go │ │ └── zsysnum_plan9.go │ ├── unix │ │ ├── .gitignore │ │ ├── README.md │ │ ├── affinity_linux.go │ │ ├── aliases.go │ │ ├── asm_aix_ppc64.s │ │ ├── asm_bsd_386.s │ │ ├── asm_bsd_amd64.s │ │ ├── asm_bsd_arm.s │ │ ├── asm_bsd_arm64.s │ │ ├── asm_bsd_ppc64.s │ │ ├── asm_bsd_riscv64.s │ │ ├── asm_linux_386.s │ │ ├── asm_linux_amd64.s │ │ ├── asm_linux_arm.s │ │ ├── asm_linux_arm64.s │ │ ├── asm_linux_loong64.s │ │ ├── asm_linux_mips64x.s │ │ ├── asm_linux_mipsx.s │ │ ├── asm_linux_ppc64x.s │ │ ├── asm_linux_riscv64.s │ │ ├── asm_linux_s390x.s │ │ ├── asm_openbsd_mips64.s │ │ ├── asm_solaris_amd64.s │ │ ├── asm_zos_s390x.s │ │ ├── auxv.go │ │ ├── auxv_unsupported.go │ │ ├── bluetooth_linux.go │ │ ├── bpxsvc_zos.go │ │ ├── bpxsvc_zos.s │ │ ├── cap_freebsd.go │ │ ├── constants.go │ │ ├── dev_aix_ppc.go │ │ ├── dev_aix_ppc64.go │ │ ├── dev_darwin.go │ │ ├── dev_dragonfly.go │ │ ├── dev_freebsd.go │ │ ├── dev_linux.go │ │ ├── dev_netbsd.go │ │ ├── dev_openbsd.go │ │ ├── dev_zos.go │ │ ├── dirent.go │ │ ├── endian_big.go │ │ ├── endian_little.go │ │ ├── env_unix.go │ │ ├── fcntl.go │ │ ├── fcntl_darwin.go │ │ ├── fcntl_linux_32bit.go │ │ ├── fdset.go │ │ ├── gccgo.go │ │ ├── gccgo_c.c │ │ ├── gccgo_linux_amd64.go │ │ ├── ifreq_linux.go │ │ ├── ioctl_linux.go │ │ ├── ioctl_signed.go │ │ ├── ioctl_unsigned.go │ │ ├── ioctl_zos.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mmap_nomremap.go │ │ ├── mremap.go │ │ ├── pagesize_unix.go │ │ ├── pledge_openbsd.go │ │ ├── ptrace_darwin.go │ │ ├── ptrace_ios.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── readdirent_getdents.go │ │ ├── readdirent_getdirentries.go │ │ ├── sockcmsg_dragonfly.go │ │ ├── sockcmsg_linux.go │ │ ├── sockcmsg_unix.go │ │ ├── sockcmsg_unix_other.go │ │ ├── sockcmsg_zos.go │ │ ├── symaddr_zos_s390x.s │ │ ├── syscall.go │ │ ├── syscall_aix.go │ │ ├── syscall_aix_ppc.go │ │ ├── syscall_aix_ppc64.go │ │ ├── syscall_bsd.go │ │ ├── syscall_darwin.go │ │ ├── syscall_darwin_amd64.go │ │ ├── syscall_darwin_arm64.go │ │ ├── syscall_darwin_libSystem.go │ │ ├── syscall_dragonfly.go │ │ ├── syscall_dragonfly_amd64.go │ │ ├── syscall_freebsd.go │ │ ├── syscall_freebsd_386.go │ │ ├── syscall_freebsd_amd64.go │ │ ├── syscall_freebsd_arm.go │ │ ├── syscall_freebsd_arm64.go │ │ ├── syscall_freebsd_riscv64.go │ │ ├── syscall_hurd.go │ │ ├── syscall_hurd_386.go │ │ ├── syscall_illumos.go │ │ ├── syscall_linux.go │ │ ├── syscall_linux_386.go │ │ ├── syscall_linux_alarm.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_gc_arm.go │ │ ├── syscall_linux_gccgo_386.go │ │ ├── syscall_linux_gccgo_arm.go │ │ ├── syscall_linux_loong64.go │ │ ├── syscall_linux_mips64x.go │ │ ├── syscall_linux_mipsx.go │ │ ├── syscall_linux_ppc.go │ │ ├── syscall_linux_ppc64x.go │ │ ├── syscall_linux_riscv64.go │ │ ├── syscall_linux_s390x.go │ │ ├── syscall_linux_sparc64.go │ │ ├── syscall_netbsd.go │ │ ├── syscall_netbsd_386.go │ │ ├── syscall_netbsd_amd64.go │ │ ├── syscall_netbsd_arm.go │ │ ├── syscall_netbsd_arm64.go │ │ ├── syscall_openbsd.go │ │ ├── syscall_openbsd_386.go │ │ ├── syscall_openbsd_amd64.go │ │ ├── syscall_openbsd_arm.go │ │ ├── syscall_openbsd_arm64.go │ │ ├── syscall_openbsd_libc.go │ │ ├── syscall_openbsd_mips64.go │ │ ├── syscall_openbsd_ppc64.go │ │ ├── syscall_openbsd_riscv64.go │ │ ├── syscall_solaris.go │ │ ├── syscall_solaris_amd64.go │ │ ├── syscall_unix.go │ │ ├── syscall_unix_gc.go │ │ ├── syscall_unix_gc_ppc64x.go │ │ ├── syscall_zos_s390x.go │ │ ├── sysvshm_linux.go │ │ ├── sysvshm_unix.go │ │ ├── sysvshm_unix_other.go │ │ ├── timestruct.go │ │ ├── unveil_openbsd.go │ │ ├── vgetrandom_linux.go │ │ ├── vgetrandom_unsupported.go │ │ ├── xattr_bsd.go │ │ ├── zerrors_aix_ppc.go │ │ ├── zerrors_aix_ppc64.go │ │ ├── zerrors_darwin_amd64.go │ │ ├── zerrors_darwin_arm64.go │ │ ├── zerrors_dragonfly_amd64.go │ │ ├── zerrors_freebsd_386.go │ │ ├── zerrors_freebsd_amd64.go │ │ ├── zerrors_freebsd_arm.go │ │ ├── zerrors_freebsd_arm64.go │ │ ├── zerrors_freebsd_riscv64.go │ │ ├── zerrors_linux.go │ │ ├── zerrors_linux_386.go │ │ ├── zerrors_linux_amd64.go │ │ ├── zerrors_linux_arm.go │ │ ├── zerrors_linux_arm64.go │ │ ├── zerrors_linux_loong64.go │ │ ├── zerrors_linux_mips.go │ │ ├── zerrors_linux_mips64.go │ │ ├── zerrors_linux_mips64le.go │ │ ├── zerrors_linux_mipsle.go │ │ ├── zerrors_linux_ppc.go │ │ ├── zerrors_linux_ppc64.go │ │ ├── zerrors_linux_ppc64le.go │ │ ├── zerrors_linux_riscv64.go │ │ ├── zerrors_linux_s390x.go │ │ ├── zerrors_linux_sparc64.go │ │ ├── zerrors_netbsd_386.go │ │ ├── zerrors_netbsd_amd64.go │ │ ├── zerrors_netbsd_arm.go │ │ ├── zerrors_netbsd_arm64.go │ │ ├── zerrors_openbsd_386.go │ │ ├── zerrors_openbsd_amd64.go │ │ ├── zerrors_openbsd_arm.go │ │ ├── zerrors_openbsd_arm64.go │ │ ├── zerrors_openbsd_mips64.go │ │ ├── zerrors_openbsd_ppc64.go │ │ ├── zerrors_openbsd_riscv64.go │ │ ├── zerrors_solaris_amd64.go │ │ ├── zerrors_zos_s390x.go │ │ ├── zptrace_armnn_linux.go │ │ ├── zptrace_linux_arm64.go │ │ ├── zptrace_mipsnn_linux.go │ │ ├── zptrace_mipsnnle_linux.go │ │ ├── zptrace_x86_linux.go │ │ ├── zsymaddr_zos_s390x.s │ │ ├── zsyscall_aix_ppc.go │ │ ├── zsyscall_aix_ppc64.go │ │ ├── zsyscall_aix_ppc64_gc.go │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ ├── zsyscall_darwin_amd64.go │ │ ├── zsyscall_darwin_amd64.s │ │ ├── zsyscall_darwin_arm64.go │ │ ├── zsyscall_darwin_arm64.s │ │ ├── zsyscall_dragonfly_amd64.go │ │ ├── zsyscall_freebsd_386.go │ │ ├── zsyscall_freebsd_amd64.go │ │ ├── zsyscall_freebsd_arm.go │ │ ├── zsyscall_freebsd_arm64.go │ │ ├── zsyscall_freebsd_riscv64.go │ │ ├── zsyscall_illumos_amd64.go │ │ ├── zsyscall_linux.go │ │ ├── zsyscall_linux_386.go │ │ ├── zsyscall_linux_amd64.go │ │ ├── zsyscall_linux_arm.go │ │ ├── zsyscall_linux_arm64.go │ │ ├── zsyscall_linux_loong64.go │ │ ├── zsyscall_linux_mips.go │ │ ├── zsyscall_linux_mips64.go │ │ ├── zsyscall_linux_mips64le.go │ │ ├── zsyscall_linux_mipsle.go │ │ ├── zsyscall_linux_ppc.go │ │ ├── zsyscall_linux_ppc64.go │ │ ├── zsyscall_linux_ppc64le.go │ │ ├── zsyscall_linux_riscv64.go │ │ ├── zsyscall_linux_s390x.go │ │ ├── zsyscall_linux_sparc64.go │ │ ├── zsyscall_netbsd_386.go │ │ ├── zsyscall_netbsd_amd64.go │ │ ├── zsyscall_netbsd_arm.go │ │ ├── zsyscall_netbsd_arm64.go │ │ ├── zsyscall_openbsd_386.go │ │ ├── zsyscall_openbsd_386.s │ │ ├── zsyscall_openbsd_amd64.go │ │ ├── zsyscall_openbsd_amd64.s │ │ ├── zsyscall_openbsd_arm.go │ │ ├── zsyscall_openbsd_arm.s │ │ ├── zsyscall_openbsd_arm64.go │ │ ├── zsyscall_openbsd_arm64.s │ │ ├── zsyscall_openbsd_mips64.go │ │ ├── zsyscall_openbsd_mips64.s │ │ ├── zsyscall_openbsd_ppc64.go │ │ ├── zsyscall_openbsd_ppc64.s │ │ ├── zsyscall_openbsd_riscv64.go │ │ ├── zsyscall_openbsd_riscv64.s │ │ ├── zsyscall_solaris_amd64.go │ │ ├── zsyscall_zos_s390x.go │ │ ├── zsysctl_openbsd_386.go │ │ ├── zsysctl_openbsd_amd64.go │ │ ├── zsysctl_openbsd_arm.go │ │ ├── zsysctl_openbsd_arm64.go │ │ ├── zsysctl_openbsd_mips64.go │ │ ├── zsysctl_openbsd_ppc64.go │ │ ├── zsysctl_openbsd_riscv64.go │ │ ├── zsysnum_darwin_amd64.go │ │ ├── zsysnum_darwin_arm64.go │ │ ├── zsysnum_dragonfly_amd64.go │ │ ├── zsysnum_freebsd_386.go │ │ ├── zsysnum_freebsd_amd64.go │ │ ├── zsysnum_freebsd_arm.go │ │ ├── zsysnum_freebsd_arm64.go │ │ ├── zsysnum_freebsd_riscv64.go │ │ ├── zsysnum_linux_386.go │ │ ├── zsysnum_linux_amd64.go │ │ ├── zsysnum_linux_arm.go │ │ ├── zsysnum_linux_arm64.go │ │ ├── zsysnum_linux_loong64.go │ │ ├── zsysnum_linux_mips.go │ │ ├── zsysnum_linux_mips64.go │ │ ├── zsysnum_linux_mips64le.go │ │ ├── zsysnum_linux_mipsle.go │ │ ├── zsysnum_linux_ppc.go │ │ ├── zsysnum_linux_ppc64.go │ │ ├── zsysnum_linux_ppc64le.go │ │ ├── zsysnum_linux_riscv64.go │ │ ├── zsysnum_linux_s390x.go │ │ ├── zsysnum_linux_sparc64.go │ │ ├── zsysnum_netbsd_386.go │ │ ├── zsysnum_netbsd_amd64.go │ │ ├── zsysnum_netbsd_arm.go │ │ ├── zsysnum_netbsd_arm64.go │ │ ├── zsysnum_openbsd_386.go │ │ ├── zsysnum_openbsd_amd64.go │ │ ├── zsysnum_openbsd_arm.go │ │ ├── zsysnum_openbsd_arm64.go │ │ ├── zsysnum_openbsd_mips64.go │ │ ├── zsysnum_openbsd_ppc64.go │ │ ├── zsysnum_openbsd_riscv64.go │ │ ├── zsysnum_zos_s390x.go │ │ ├── ztypes_aix_ppc.go │ │ ├── ztypes_aix_ppc64.go │ │ ├── ztypes_darwin_amd64.go │ │ ├── ztypes_darwin_arm64.go │ │ ├── ztypes_dragonfly_amd64.go │ │ ├── ztypes_freebsd_386.go │ │ ├── ztypes_freebsd_amd64.go │ │ ├── ztypes_freebsd_arm.go │ │ ├── ztypes_freebsd_arm64.go │ │ ├── ztypes_freebsd_riscv64.go │ │ ├── ztypes_linux.go │ │ ├── ztypes_linux_386.go │ │ ├── ztypes_linux_amd64.go │ │ ├── ztypes_linux_arm.go │ │ ├── ztypes_linux_arm64.go │ │ ├── ztypes_linux_loong64.go │ │ ├── ztypes_linux_mips.go │ │ ├── ztypes_linux_mips64.go │ │ ├── ztypes_linux_mips64le.go │ │ ├── ztypes_linux_mipsle.go │ │ ├── ztypes_linux_ppc.go │ │ ├── ztypes_linux_ppc64.go │ │ ├── ztypes_linux_ppc64le.go │ │ ├── ztypes_linux_riscv64.go │ │ ├── ztypes_linux_s390x.go │ │ ├── ztypes_linux_sparc64.go │ │ ├── ztypes_netbsd_386.go │ │ ├── ztypes_netbsd_amd64.go │ │ ├── ztypes_netbsd_arm.go │ │ ├── ztypes_netbsd_arm64.go │ │ ├── ztypes_openbsd_386.go │ │ ├── ztypes_openbsd_amd64.go │ │ ├── ztypes_openbsd_arm.go │ │ ├── ztypes_openbsd_arm64.go │ │ ├── ztypes_openbsd_mips64.go │ │ ├── ztypes_openbsd_ppc64.go │ │ ├── ztypes_openbsd_riscv64.go │ │ ├── ztypes_solaris_amd64.go │ │ └── ztypes_zos_s390x.go │ └── windows │ │ ├── aliases.go │ │ ├── dll_windows.go │ │ ├── env_windows.go │ │ ├── eventlog.go │ │ ├── exec_windows.go │ │ ├── memory_windows.go │ │ ├── mkerrors.bash │ │ ├── mkknownfolderids.bash │ │ ├── mksyscall.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── registry │ │ ├── key.go │ │ ├── mksyscall.go │ │ ├── syscall.go │ │ ├── value.go │ │ └── zsyscall_windows.go │ │ ├── security_windows.go │ │ ├── service.go │ │ ├── setupapi_windows.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_windows.go │ │ ├── types_windows.go │ │ ├── types_windows_386.go │ │ ├── types_windows_amd64.go │ │ ├── types_windows_arm.go │ │ ├── types_windows_arm64.go │ │ ├── zerrors_windows.go │ │ ├── zknownfolderids_windows.go │ │ └── zsyscall_windows.go │ ├── term │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── PATENTS │ ├── README.md │ ├── codereview.cfg │ ├── term.go │ ├── term_plan9.go │ ├── term_unix.go │ ├── term_unix_bsd.go │ ├── term_unix_other.go │ ├── term_unsupported.go │ ├── term_windows.go │ └── terminal.go │ ├── text │ ├── LICENSE │ ├── PATENTS │ ├── cases │ │ ├── cases.go │ │ ├── context.go │ │ ├── fold.go │ │ ├── icu.go │ │ ├── info.go │ │ ├── map.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ └── trieval.go │ ├── internal │ │ ├── internal.go │ │ ├── language │ │ │ ├── common.go │ │ │ ├── compact.go │ │ │ ├── compact │ │ │ │ ├── compact.go │ │ │ │ ├── language.go │ │ │ │ ├── parents.go │ │ │ │ ├── tables.go │ │ │ │ └── tags.go │ │ │ ├── compose.go │ │ │ ├── coverage.go │ │ │ ├── language.go │ │ │ ├── lookup.go │ │ │ ├── match.go │ │ │ ├── parse.go │ │ │ ├── tables.go │ │ │ └── tags.go │ │ ├── match.go │ │ └── tag │ │ │ └── tag.go │ ├── language │ │ ├── coverage.go │ │ ├── doc.go │ │ ├── language.go │ │ ├── match.go │ │ ├── parse.go │ │ ├── tables.go │ │ └── tags.go │ ├── secure │ │ └── bidirule │ │ │ ├── bidirule.go │ │ │ ├── bidirule10.0.0.go │ │ │ └── bidirule9.0.0.go │ ├── transform │ │ └── transform.go │ └── unicode │ │ ├── bidi │ │ ├── bidi.go │ │ ├── bracket.go │ │ ├── core.go │ │ ├── prop.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ └── trieval.go │ │ └── norm │ │ ├── composition.go │ │ ├── forminfo.go │ │ ├── input.go │ │ ├── iter.go │ │ ├── normalize.go │ │ ├── readwriter.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ ├── transform.go │ │ └── trie.go │ ├── time │ ├── LICENSE │ ├── PATENTS │ └── rate │ │ ├── rate.go │ │ └── sometimes.go │ └── tools │ ├── LICENSE │ ├── PATENTS │ ├── go │ ├── ast │ │ ├── astutil │ │ │ ├── enclosing.go │ │ │ ├── imports.go │ │ │ ├── rewrite.go │ │ │ └── util.go │ │ ├── edge │ │ │ └── edge.go │ │ └── inspector │ │ │ ├── cursor.go │ │ │ ├── inspector.go │ │ │ ├── iter.go │ │ │ ├── typeof.go │ │ │ └── walk.go │ ├── gcexportdata │ │ ├── gcexportdata.go │ │ └── importer.go │ ├── packages │ │ ├── doc.go │ │ ├── external.go │ │ ├── golist.go │ │ ├── golist_overlay.go │ │ ├── loadmode_string.go │ │ ├── packages.go │ │ └── visit.go │ └── types │ │ ├── objectpath │ │ └── objectpath.go │ │ └── typeutil │ │ ├── callee.go │ │ ├── imports.go │ │ ├── map.go │ │ ├── methodsetcache.go │ │ └── ui.go │ ├── imports │ └── forward.go │ └── internal │ ├── aliases │ ├── aliases.go │ └── aliases_go122.go │ ├── event │ ├── core │ │ ├── event.go │ │ ├── export.go │ │ └── fast.go │ ├── doc.go │ ├── event.go │ ├── keys │ │ ├── keys.go │ │ ├── standard.go │ │ └── util.go │ └── label │ │ └── label.go │ ├── gcimporter │ ├── bimport.go │ ├── exportdata.go │ ├── gcimporter.go │ ├── iexport.go │ ├── iimport.go │ ├── predeclared.go │ ├── support.go │ └── ureader_yes.go │ ├── gocommand │ ├── invoke.go │ ├── invoke_notunix.go │ ├── invoke_unix.go │ ├── vendor.go │ └── version.go │ ├── gopathwalk │ └── walk.go │ ├── imports │ ├── fix.go │ ├── imports.go │ ├── mod.go │ ├── mod_cache.go │ ├── sortimports.go │ ├── source.go │ ├── source_env.go │ └── source_modindex.go │ ├── modindex │ ├── directories.go │ ├── index.go │ ├── lookup.go │ ├── modindex.go │ └── symbols.go │ ├── packagesinternal │ └── packages.go │ ├── pkgbits │ ├── codes.go │ ├── decoder.go │ ├── doc.go │ ├── encoder.go │ ├── flags.go │ ├── reloc.go │ ├── support.go │ ├── sync.go │ ├── syncmarker_string.go │ └── version.go │ ├── stdlib │ ├── deps.go │ ├── import.go │ ├── manifest.go │ └── stdlib.go │ ├── typeparams │ ├── common.go │ ├── coretype.go │ ├── free.go │ ├── normalize.go │ ├── termlist.go │ └── typeterm.go │ ├── typesinternal │ ├── classify_call.go │ ├── element.go │ ├── errorcode.go │ ├── errorcode_string.go │ ├── fx.go │ ├── isnamed.go │ ├── qualifier.go │ ├── recv.go │ ├── toonew.go │ ├── types.go │ ├── varkind.go │ ├── varkind_go124.go │ └── zerovalue.go │ └── versions │ ├── features.go │ ├── gover.go │ ├── types.go │ └── versions.go ├── gomodules.xyz └── jsonpatch │ └── v2 │ ├── LICENSE │ └── jsonpatch.go ├── google.golang.org ├── genproto │ └── googleapis │ │ ├── api │ │ ├── LICENSE │ │ └── httpbody │ │ │ └── httpbody.pb.go │ │ └── rpc │ │ ├── LICENSE │ │ ├── errdetails │ │ └── error_details.pb.go │ │ └── status │ │ └── status.pb.go ├── grpc │ ├── AUTHORS │ ├── CODE-OF-CONDUCT.md │ ├── CONTRIBUTING.md │ ├── GOVERNANCE.md │ ├── LICENSE │ ├── MAINTAINERS.md │ ├── Makefile │ ├── NOTICE.txt │ ├── README.md │ ├── SECURITY.md │ ├── attributes │ │ └── attributes.go │ ├── backoff.go │ ├── backoff │ │ └── backoff.go │ ├── balancer │ │ ├── balancer.go │ │ ├── base │ │ │ ├── balancer.go │ │ │ └── base.go │ │ ├── conn_state_evaluator.go │ │ ├── endpointsharding │ │ │ └── endpointsharding.go │ │ ├── grpclb │ │ │ └── state │ │ │ │ └── state.go │ │ ├── pickfirst │ │ │ ├── internal │ │ │ │ └── internal.go │ │ │ ├── pickfirst.go │ │ │ └── pickfirstleaf │ │ │ │ └── pickfirstleaf.go │ │ ├── roundrobin │ │ │ └── roundrobin.go │ │ └── subconn.go │ ├── balancer_wrapper.go │ ├── binarylog │ │ └── grpc_binarylog_v1 │ │ │ └── binarylog.pb.go │ ├── call.go │ ├── channelz │ │ └── channelz.go │ ├── clientconn.go │ ├── codec.go │ ├── codes │ │ ├── code_string.go │ │ └── codes.go │ ├── connectivity │ │ └── connectivity.go │ ├── credentials │ │ ├── credentials.go │ │ ├── insecure │ │ │ └── insecure.go │ │ └── tls.go │ ├── dialoptions.go │ ├── doc.go │ ├── encoding │ │ ├── encoding.go │ │ ├── encoding_v2.go │ │ ├── gzip │ │ │ └── gzip.go │ │ └── proto │ │ │ └── proto.go │ ├── experimental │ │ └── stats │ │ │ ├── metricregistry.go │ │ │ └── metrics.go │ ├── grpclog │ │ ├── component.go │ │ ├── grpclog.go │ │ ├── internal │ │ │ ├── grpclog.go │ │ │ ├── logger.go │ │ │ └── loggerv2.go │ │ ├── logger.go │ │ └── loggerv2.go │ ├── health │ │ └── grpc_health_v1 │ │ │ ├── health.pb.go │ │ │ └── health_grpc.pb.go │ ├── interceptor.go │ ├── internal │ │ ├── backoff │ │ │ └── backoff.go │ │ ├── balancer │ │ │ └── gracefulswitch │ │ │ │ ├── config.go │ │ │ │ └── gracefulswitch.go │ │ ├── balancerload │ │ │ └── load.go │ │ ├── binarylog │ │ │ ├── binarylog.go │ │ │ ├── binarylog_testutil.go │ │ │ ├── env_config.go │ │ │ ├── method_logger.go │ │ │ └── sink.go │ │ ├── buffer │ │ │ └── unbounded.go │ │ ├── channelz │ │ │ ├── channel.go │ │ │ ├── channelmap.go │ │ │ ├── funcs.go │ │ │ ├── logging.go │ │ │ ├── server.go │ │ │ ├── socket.go │ │ │ ├── subchannel.go │ │ │ ├── syscall_linux.go │ │ │ ├── syscall_nonlinux.go │ │ │ └── trace.go │ │ ├── credentials │ │ │ ├── credentials.go │ │ │ ├── spiffe.go │ │ │ ├── syscallconn.go │ │ │ └── util.go │ │ ├── envconfig │ │ │ ├── envconfig.go │ │ │ ├── observability.go │ │ │ └── xds.go │ │ ├── experimental.go │ │ ├── grpclog │ │ │ └── prefix_logger.go │ │ ├── grpcsync │ │ │ ├── callback_serializer.go │ │ │ ├── event.go │ │ │ └── pubsub.go │ │ ├── grpcutil │ │ │ ├── compressor.go │ │ │ ├── encode_duration.go │ │ │ ├── grpcutil.go │ │ │ ├── metadata.go │ │ │ ├── method.go │ │ │ └── regex.go │ │ ├── idle │ │ │ └── idle.go │ │ ├── internal.go │ │ ├── metadata │ │ │ └── metadata.go │ │ ├── pretty │ │ │ └── pretty.go │ │ ├── proxyattributes │ │ │ └── proxyattributes.go │ │ ├── resolver │ │ │ ├── config_selector.go │ │ │ ├── delegatingresolver │ │ │ │ └── delegatingresolver.go │ │ │ ├── dns │ │ │ │ ├── dns_resolver.go │ │ │ │ └── internal │ │ │ │ │ └── internal.go │ │ │ ├── passthrough │ │ │ │ └── passthrough.go │ │ │ └── unix │ │ │ │ └── unix.go │ │ ├── serviceconfig │ │ │ ├── duration.go │ │ │ └── serviceconfig.go │ │ ├── stats │ │ │ ├── labels.go │ │ │ └── metrics_recorder_list.go │ │ ├── status │ │ │ └── status.go │ │ ├── syscall │ │ │ ├── syscall_linux.go │ │ │ └── syscall_nonlinux.go │ │ ├── tcp_keepalive_others.go │ │ ├── tcp_keepalive_unix.go │ │ ├── tcp_keepalive_windows.go │ │ └── transport │ │ │ ├── bdp_estimator.go │ │ │ ├── client_stream.go │ │ │ ├── controlbuf.go │ │ │ ├── defaults.go │ │ │ ├── flowcontrol.go │ │ │ ├── handler_server.go │ │ │ ├── http2_client.go │ │ │ ├── http2_server.go │ │ │ ├── http_util.go │ │ │ ├── logging.go │ │ │ ├── networktype │ │ │ └── networktype.go │ │ │ ├── proxy.go │ │ │ ├── server_stream.go │ │ │ └── transport.go │ ├── keepalive │ │ └── keepalive.go │ ├── mem │ │ ├── buffer_pool.go │ │ ├── buffer_slice.go │ │ └── buffers.go │ ├── metadata │ │ └── metadata.go │ ├── peer │ │ └── peer.go │ ├── picker_wrapper.go │ ├── preloader.go │ ├── resolver │ │ ├── dns │ │ │ └── dns_resolver.go │ │ ├── map.go │ │ └── resolver.go │ ├── resolver_wrapper.go │ ├── rpc_util.go │ ├── server.go │ ├── service_config.go │ ├── serviceconfig │ │ └── serviceconfig.go │ ├── stats │ │ ├── handlers.go │ │ ├── metrics.go │ │ └── stats.go │ ├── status │ │ └── status.go │ ├── stream.go │ ├── stream_interfaces.go │ ├── tap │ │ └── tap.go │ ├── trace.go │ ├── trace_notrace.go │ ├── trace_withtrace.go │ └── version.go └── protobuf │ ├── LICENSE │ ├── PATENTS │ ├── encoding │ ├── protodelim │ │ └── protodelim.go │ ├── protojson │ │ ├── decode.go │ │ ├── doc.go │ │ ├── encode.go │ │ └── well_known_types.go │ ├── prototext │ │ ├── decode.go │ │ ├── doc.go │ │ └── encode.go │ └── protowire │ │ └── wire.go │ ├── internal │ ├── descfmt │ │ └── stringer.go │ ├── descopts │ │ └── options.go │ ├── detrand │ │ └── rand.go │ ├── editiondefaults │ │ ├── defaults.go │ │ └── editions_defaults.binpb │ ├── encoding │ │ ├── defval │ │ │ └── default.go │ │ ├── json │ │ │ ├── decode.go │ │ │ ├── decode_number.go │ │ │ ├── decode_string.go │ │ │ ├── decode_token.go │ │ │ └── encode.go │ │ ├── messageset │ │ │ └── messageset.go │ │ ├── tag │ │ │ └── tag.go │ │ └── text │ │ │ ├── decode.go │ │ │ ├── decode_number.go │ │ │ ├── decode_string.go │ │ │ ├── decode_token.go │ │ │ ├── doc.go │ │ │ └── encode.go │ ├── errors │ │ └── errors.go │ ├── filedesc │ │ ├── build.go │ │ ├── desc.go │ │ ├── desc_init.go │ │ ├── desc_lazy.go │ │ ├── desc_list.go │ │ ├── desc_list_gen.go │ │ ├── editions.go │ │ ├── placeholder.go │ │ └── presence.go │ ├── filetype │ │ └── build.go │ ├── flags │ │ ├── flags.go │ │ ├── proto_legacy_disable.go │ │ └── proto_legacy_enable.go │ ├── genid │ │ ├── any_gen.go │ │ ├── api_gen.go │ │ ├── descriptor_gen.go │ │ ├── doc.go │ │ ├── duration_gen.go │ │ ├── empty_gen.go │ │ ├── field_mask_gen.go │ │ ├── go_features_gen.go │ │ ├── goname.go │ │ ├── map_entry.go │ │ ├── name.go │ │ ├── source_context_gen.go │ │ ├── struct_gen.go │ │ ├── timestamp_gen.go │ │ ├── type_gen.go │ │ ├── wrappers.go │ │ └── wrappers_gen.go │ ├── impl │ │ ├── api_export.go │ │ ├── api_export_opaque.go │ │ ├── bitmap.go │ │ ├── bitmap_race.go │ │ ├── checkinit.go │ │ ├── codec_extension.go │ │ ├── codec_field.go │ │ ├── codec_field_opaque.go │ │ ├── codec_gen.go │ │ ├── codec_map.go │ │ ├── codec_message.go │ │ ├── codec_message_opaque.go │ │ ├── codec_messageset.go │ │ ├── codec_tables.go │ │ ├── codec_unsafe.go │ │ ├── convert.go │ │ ├── convert_list.go │ │ ├── convert_map.go │ │ ├── decode.go │ │ ├── encode.go │ │ ├── enum.go │ │ ├── equal.go │ │ ├── extension.go │ │ ├── lazy.go │ │ ├── legacy_enum.go │ │ ├── legacy_export.go │ │ ├── legacy_extension.go │ │ ├── legacy_file.go │ │ ├── legacy_message.go │ │ ├── merge.go │ │ ├── merge_gen.go │ │ ├── message.go │ │ ├── message_opaque.go │ │ ├── message_opaque_gen.go │ │ ├── message_reflect.go │ │ ├── message_reflect_field.go │ │ ├── message_reflect_field_gen.go │ │ ├── message_reflect_gen.go │ │ ├── pointer_unsafe.go │ │ ├── pointer_unsafe_opaque.go │ │ ├── presence.go │ │ └── validate.go │ ├── order │ │ ├── order.go │ │ └── range.go │ ├── pragma │ │ └── pragma.go │ ├── protolazy │ │ ├── bufferreader.go │ │ ├── lazy.go │ │ └── pointer_unsafe.go │ ├── set │ │ └── ints.go │ ├── strs │ │ ├── strings.go │ │ └── strings_unsafe.go │ └── version │ │ └── version.go │ ├── proto │ ├── checkinit.go │ ├── decode.go │ ├── decode_gen.go │ ├── doc.go │ ├── encode.go │ ├── encode_gen.go │ ├── equal.go │ ├── extension.go │ ├── merge.go │ ├── messageset.go │ ├── proto.go │ ├── proto_methods.go │ ├── proto_reflect.go │ ├── reset.go │ ├── size.go │ ├── size_gen.go │ ├── wrapperopaque.go │ └── wrappers.go │ ├── protoadapt │ └── convert.go │ ├── reflect │ ├── protoreflect │ │ ├── methods.go │ │ ├── proto.go │ │ ├── source.go │ │ ├── source_gen.go │ │ ├── type.go │ │ ├── value.go │ │ ├── value_equal.go │ │ ├── value_union.go │ │ └── value_unsafe.go │ └── protoregistry │ │ └── registry.go │ ├── runtime │ ├── protoiface │ │ ├── legacy.go │ │ └── methods.go │ └── protoimpl │ │ ├── impl.go │ │ └── version.go │ └── types │ ├── descriptorpb │ └── descriptor.pb.go │ └── known │ ├── anypb │ └── any.pb.go │ ├── durationpb │ └── duration.pb.go │ ├── fieldmaskpb │ └── field_mask.pb.go │ ├── structpb │ └── struct.pb.go │ ├── timestamppb │ └── timestamp.pb.go │ └── wrapperspb │ └── wrappers.pb.go ├── gopkg.in ├── evanphx │ └── json-patch.v4 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── errors.go │ │ ├── merge.go │ │ └── patch.go ├── inf.v0 │ ├── LICENSE │ ├── dec.go │ └── rounder.go ├── yaml.v2 │ ├── .travis.yml │ ├── LICENSE │ ├── LICENSE.libyaml │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go └── yaml.v3 │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go ├── k8s.io ├── api │ ├── LICENSE │ ├── admission │ │ └── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── admissionregistration │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── apidiscovery │ │ ├── v2 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v2beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── apiserverinternal │ │ └── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── apps │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta2 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── authentication │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── authorization │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── autoscaling │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v2 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v2beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v2beta2 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── batch │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── certificates │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── coordination │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1alpha2 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── core │ │ └── v1 │ │ │ ├── annotation_key_constants.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── lifecycle.go │ │ │ ├── objectreference.go │ │ │ ├── register.go │ │ │ ├── resource.go │ │ │ ├── taint.go │ │ │ ├── toleration.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── well_known_labels.go │ │ │ ├── well_known_taints.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── discovery │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── well_known_labels.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── well_known_labels.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── events │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── extensions │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ ├── zz_generated.prerelease-lifecycle.go │ │ │ └── zz_generated.validations.go │ ├── flowcontrol │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1beta2 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta3 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── imagepolicy │ │ └── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── networking │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── well_known_annotations.go │ │ │ ├── well_known_labels.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── well_known_annotations.go │ │ │ ├── well_known_labels.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── node │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.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 │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── policy │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── rbac │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.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 │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── resource │ │ ├── v1 │ │ │ ├── devicetaint.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1alpha3 │ │ │ ├── devicetaint.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1beta1 │ │ │ ├── devicetaint.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta2 │ │ │ ├── devicetaint.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── scheduling │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.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 │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── storage │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ └── storagemigration │ │ └── v1alpha1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ ├── zz_generated.deepcopy.go │ │ └── zz_generated.prerelease-lifecycle.go ├── apiextensions-apiserver │ ├── LICENSE │ └── pkg │ │ └── apis │ │ └── apiextensions │ │ ├── deepcopy.go │ │ ├── doc.go │ │ ├── helpers.go │ │ ├── register.go │ │ ├── types.go │ │ ├── types_jsonschema.go │ │ ├── v1 │ │ ├── .import-restrictions │ │ ├── conversion.go │ │ ├── deepcopy.go │ │ ├── defaults.go │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── marshal.go │ │ ├── register.go │ │ ├── types.go │ │ ├── types_jsonschema.go │ │ ├── zz_generated.conversion.go │ │ ├── zz_generated.deepcopy.go │ │ ├── zz_generated.defaults.go │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── zz_generated.deepcopy.go ├── apimachinery │ ├── LICENSE │ ├── pkg │ │ ├── api │ │ │ ├── equality │ │ │ │ └── semantic.go │ │ │ ├── errors │ │ │ │ ├── doc.go │ │ │ │ └── errors.go │ │ │ ├── meta │ │ │ │ ├── conditions.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── firsthit_restmapper.go │ │ │ │ ├── help.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── lazy.go │ │ │ │ ├── meta.go │ │ │ │ ├── multirestmapper.go │ │ │ │ ├── priority.go │ │ │ │ ├── restmapper.go │ │ │ │ └── testrestmapper │ │ │ │ │ └── test_restmapper.go │ │ │ ├── operation │ │ │ │ └── operation.go │ │ │ ├── resource │ │ │ │ ├── amount.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── math.go │ │ │ │ ├── quantity.go │ │ │ │ ├── quantity_proto.go │ │ │ │ ├── scale_int.go │ │ │ │ ├── suffix.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── safe │ │ │ │ └── safe.go │ │ │ ├── validate │ │ │ │ ├── README.md │ │ │ │ ├── common.go │ │ │ │ ├── constraints │ │ │ │ │ └── constraints.go │ │ │ │ ├── content │ │ │ │ │ └── errors.go │ │ │ │ ├── doc.go │ │ │ │ ├── each.go │ │ │ │ ├── enum.go │ │ │ │ ├── equality.go │ │ │ │ ├── immutable.go │ │ │ │ ├── item.go │ │ │ │ ├── limits.go │ │ │ │ ├── required.go │ │ │ │ ├── subfield.go │ │ │ │ ├── testing.go │ │ │ │ ├── union.go │ │ │ │ └── zeroorone.go │ │ │ └── validation │ │ │ │ ├── doc.go │ │ │ │ ├── generic.go │ │ │ │ └── objectmeta.go │ │ ├── apis │ │ │ └── meta │ │ │ │ ├── internalversion │ │ │ │ ├── defaults.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── v1 │ │ │ │ ├── controller_ref.go │ │ │ │ ├── conversion.go │ │ │ │ ├── deepcopy.go │ │ │ │ ├── doc.go │ │ │ │ ├── duration.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── group_version.go │ │ │ │ ├── helpers.go │ │ │ │ ├── labels.go │ │ │ │ ├── meta.go │ │ │ │ ├── micro_time.go │ │ │ │ ├── micro_time_fuzz.go │ │ │ │ ├── micro_time_proto.go │ │ │ │ ├── register.go │ │ │ │ ├── time.go │ │ │ │ ├── time_fuzz.go │ │ │ │ ├── time_proto.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── unstructured │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── unstructured.go │ │ │ │ │ ├── unstructured_list.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── validation │ │ │ │ │ └── validation.go │ │ │ │ ├── watch.go │ │ │ │ ├── zz_generated.conversion.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 │ │ ├── conversion │ │ │ ├── converter.go │ │ │ ├── deep_equal.go │ │ │ ├── doc.go │ │ │ ├── helper.go │ │ │ └── queryparams │ │ │ │ ├── convert.go │ │ │ │ └── doc.go │ │ ├── fields │ │ │ ├── doc.go │ │ │ ├── fields.go │ │ │ ├── requirements.go │ │ │ └── selector.go │ │ ├── labels │ │ │ ├── doc.go │ │ │ ├── labels.go │ │ │ ├── selector.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── runtime │ │ │ ├── allocator.go │ │ │ ├── codec.go │ │ │ ├── codec_check.go │ │ │ ├── conversion.go │ │ │ ├── converter.go │ │ │ ├── doc.go │ │ │ ├── embedded.go │ │ │ ├── error.go │ │ │ ├── extension.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── helper.go │ │ │ ├── interfaces.go │ │ │ ├── mapper.go │ │ │ ├── negotiate.go │ │ │ ├── register.go │ │ │ ├── schema │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── group_version.go │ │ │ │ └── interfaces.go │ │ │ ├── scheme.go │ │ │ ├── scheme_builder.go │ │ │ ├── serializer │ │ │ │ ├── cbor │ │ │ │ │ ├── cbor.go │ │ │ │ │ ├── direct │ │ │ │ │ │ └── direct.go │ │ │ │ │ ├── framer.go │ │ │ │ │ ├── internal │ │ │ │ │ │ └── modes │ │ │ │ │ │ │ ├── buffers.go │ │ │ │ │ │ │ ├── decode.go │ │ │ │ │ │ │ ├── diagnostic.go │ │ │ │ │ │ │ ├── encode.go │ │ │ │ │ │ │ └── transcoding.go │ │ │ │ │ └── raw.go │ │ │ │ ├── codec_factory.go │ │ │ │ ├── json │ │ │ │ │ ├── collections.go │ │ │ │ │ ├── json.go │ │ │ │ │ └── meta.go │ │ │ │ ├── negotiated_codec.go │ │ │ │ ├── protobuf │ │ │ │ │ ├── collections.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── protobuf.go │ │ │ │ ├── recognizer │ │ │ │ │ └── recognizer.go │ │ │ │ ├── streaming │ │ │ │ │ └── streaming.go │ │ │ │ └── versioning │ │ │ │ │ └── versioning.go │ │ │ ├── splice.go │ │ │ ├── swagger_doc_generator.go │ │ │ ├── types.go │ │ │ ├── types_proto.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── selection │ │ │ └── operator.go │ │ ├── types │ │ │ ├── doc.go │ │ │ ├── namespacedname.go │ │ │ ├── nodename.go │ │ │ ├── patch.go │ │ │ └── uid.go │ │ ├── util │ │ │ ├── cache │ │ │ │ ├── expiring.go │ │ │ │ └── lruexpirecache.go │ │ │ ├── diff │ │ │ │ ├── cmp.go │ │ │ │ ├── diff.go │ │ │ │ └── legacy_diff.go │ │ │ ├── dump │ │ │ │ └── dump.go │ │ │ ├── errors │ │ │ │ ├── doc.go │ │ │ │ └── errors.go │ │ │ ├── framer │ │ │ │ └── framer.go │ │ │ ├── intstr │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── instr_fuzz.go │ │ │ │ └── intstr.go │ │ │ ├── json │ │ │ │ └── json.go │ │ │ ├── managedfields │ │ │ │ ├── endpoints.yaml │ │ │ │ ├── extract.go │ │ │ │ ├── fieldmanager.go │ │ │ │ ├── gvkparser.go │ │ │ │ ├── internal │ │ │ │ │ ├── atmostevery.go │ │ │ │ │ ├── buildmanagerinfo.go │ │ │ │ │ ├── capmanagers.go │ │ │ │ │ ├── conflict.go │ │ │ │ │ ├── fieldmanager.go │ │ │ │ │ ├── fields.go │ │ │ │ │ ├── lastapplied.go │ │ │ │ │ ├── lastappliedmanager.go │ │ │ │ │ ├── lastappliedupdater.go │ │ │ │ │ ├── managedfields.go │ │ │ │ │ ├── managedfieldsupdater.go │ │ │ │ │ ├── manager.go │ │ │ │ │ ├── pathelement.go │ │ │ │ │ ├── runtimetypeconverter.go │ │ │ │ │ ├── skipnonapplied.go │ │ │ │ │ ├── stripmeta.go │ │ │ │ │ ├── structuredmerge.go │ │ │ │ │ ├── typeconverter.go │ │ │ │ │ ├── versioncheck.go │ │ │ │ │ └── versionconverter.go │ │ │ │ ├── node.yaml │ │ │ │ ├── pod.yaml │ │ │ │ ├── scalehandler.go │ │ │ │ └── typeconverter.go │ │ │ ├── mergepatch │ │ │ │ ├── errors.go │ │ │ │ └── util.go │ │ │ ├── naming │ │ │ │ └── from_stack.go │ │ │ ├── net │ │ │ │ ├── http.go │ │ │ │ ├── interface.go │ │ │ │ ├── port_range.go │ │ │ │ ├── port_split.go │ │ │ │ └── util.go │ │ │ ├── runtime │ │ │ │ └── runtime.go │ │ │ ├── sets │ │ │ │ ├── byte.go │ │ │ │ ├── doc.go │ │ │ │ ├── empty.go │ │ │ │ ├── int.go │ │ │ │ ├── int32.go │ │ │ │ ├── int64.go │ │ │ │ ├── set.go │ │ │ │ └── string.go │ │ │ ├── strategicpatch │ │ │ │ ├── errors.go │ │ │ │ ├── meta.go │ │ │ │ ├── patch.go │ │ │ │ └── types.go │ │ │ ├── uuid │ │ │ │ └── uuid.go │ │ │ ├── validation │ │ │ │ ├── field │ │ │ │ │ ├── error_matcher.go │ │ │ │ │ ├── errors.go │ │ │ │ │ └── path.go │ │ │ │ ├── ip.go │ │ │ │ └── validation.go │ │ │ ├── wait │ │ │ │ ├── backoff.go │ │ │ │ ├── delay.go │ │ │ │ ├── doc.go │ │ │ │ ├── error.go │ │ │ │ ├── loop.go │ │ │ │ ├── poll.go │ │ │ │ ├── timer.go │ │ │ │ └── wait.go │ │ │ └── yaml │ │ │ │ ├── decoder.go │ │ │ │ └── stream_reader.go │ │ ├── version │ │ │ ├── doc.go │ │ │ ├── helpers.go │ │ │ └── types.go │ │ └── watch │ │ │ ├── doc.go │ │ │ ├── filter.go │ │ │ ├── mux.go │ │ │ ├── streamwatcher.go │ │ │ ├── watch.go │ │ │ └── zz_generated.deepcopy.go │ └── third_party │ │ └── forked │ │ └── golang │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── json │ │ └── fields.go │ │ └── reflect │ │ └── deep_equal.go ├── client-go │ ├── LICENSE │ ├── applyconfigurations │ │ ├── admissionregistration │ │ │ ├── v1 │ │ │ │ ├── auditannotation.go │ │ │ │ ├── expressionwarning.go │ │ │ │ ├── matchcondition.go │ │ │ │ ├── matchresources.go │ │ │ │ ├── mutatingwebhook.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ ├── namedrulewithoperations.go │ │ │ │ ├── paramkind.go │ │ │ │ ├── paramref.go │ │ │ │ ├── rule.go │ │ │ │ ├── rulewithoperations.go │ │ │ │ ├── servicereference.go │ │ │ │ ├── typechecking.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ ├── validatingadmissionpolicybindingspec.go │ │ │ │ ├── validatingadmissionpolicyspec.go │ │ │ │ ├── validatingadmissionpolicystatus.go │ │ │ │ ├── validatingwebhook.go │ │ │ │ ├── validatingwebhookconfiguration.go │ │ │ │ ├── validation.go │ │ │ │ ├── variable.go │ │ │ │ └── webhookclientconfig.go │ │ │ ├── v1alpha1 │ │ │ │ ├── applyconfiguration.go │ │ │ │ ├── auditannotation.go │ │ │ │ ├── expressionwarning.go │ │ │ │ ├── jsonpatch.go │ │ │ │ ├── matchcondition.go │ │ │ │ ├── matchresources.go │ │ │ │ ├── mutatingadmissionpolicy.go │ │ │ │ ├── mutatingadmissionpolicybinding.go │ │ │ │ ├── mutatingadmissionpolicybindingspec.go │ │ │ │ ├── mutatingadmissionpolicyspec.go │ │ │ │ ├── mutation.go │ │ │ │ ├── namedrulewithoperations.go │ │ │ │ ├── paramkind.go │ │ │ │ ├── paramref.go │ │ │ │ ├── typechecking.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ ├── validatingadmissionpolicybindingspec.go │ │ │ │ ├── validatingadmissionpolicyspec.go │ │ │ │ ├── validatingadmissionpolicystatus.go │ │ │ │ ├── validation.go │ │ │ │ └── variable.go │ │ │ └── v1beta1 │ │ │ │ ├── applyconfiguration.go │ │ │ │ ├── auditannotation.go │ │ │ │ ├── expressionwarning.go │ │ │ │ ├── jsonpatch.go │ │ │ │ ├── matchcondition.go │ │ │ │ ├── matchresources.go │ │ │ │ ├── mutatingadmissionpolicy.go │ │ │ │ ├── mutatingadmissionpolicybinding.go │ │ │ │ ├── mutatingadmissionpolicybindingspec.go │ │ │ │ ├── mutatingadmissionpolicyspec.go │ │ │ │ ├── mutatingwebhook.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ ├── mutation.go │ │ │ │ ├── namedrulewithoperations.go │ │ │ │ ├── paramkind.go │ │ │ │ ├── paramref.go │ │ │ │ ├── servicereference.go │ │ │ │ ├── typechecking.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ ├── validatingadmissionpolicybindingspec.go │ │ │ │ ├── validatingadmissionpolicyspec.go │ │ │ │ ├── validatingadmissionpolicystatus.go │ │ │ │ ├── validatingwebhook.go │ │ │ │ ├── validatingwebhookconfiguration.go │ │ │ │ ├── validation.go │ │ │ │ ├── variable.go │ │ │ │ └── webhookclientconfig.go │ │ ├── apiserverinternal │ │ │ └── v1alpha1 │ │ │ │ ├── serverstorageversion.go │ │ │ │ ├── storageversion.go │ │ │ │ ├── storageversioncondition.go │ │ │ │ └── storageversionstatus.go │ │ ├── apps │ │ │ ├── v1 │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── daemonsetcondition.go │ │ │ │ ├── daemonsetspec.go │ │ │ │ ├── daemonsetstatus.go │ │ │ │ ├── daemonsetupdatestrategy.go │ │ │ │ ├── deployment.go │ │ │ │ ├── deploymentcondition.go │ │ │ │ ├── deploymentspec.go │ │ │ │ ├── deploymentstatus.go │ │ │ │ ├── deploymentstrategy.go │ │ │ │ ├── replicaset.go │ │ │ │ ├── replicasetcondition.go │ │ │ │ ├── replicasetspec.go │ │ │ │ ├── replicasetstatus.go │ │ │ │ ├── rollingupdatedaemonset.go │ │ │ │ ├── rollingupdatedeployment.go │ │ │ │ ├── rollingupdatestatefulsetstrategy.go │ │ │ │ ├── statefulset.go │ │ │ │ ├── statefulsetcondition.go │ │ │ │ ├── statefulsetordinals.go │ │ │ │ ├── statefulsetpersistentvolumeclaimretentionpolicy.go │ │ │ │ ├── statefulsetspec.go │ │ │ │ ├── statefulsetstatus.go │ │ │ │ └── statefulsetupdatestrategy.go │ │ │ ├── v1beta1 │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── deployment.go │ │ │ │ ├── deploymentcondition.go │ │ │ │ ├── deploymentspec.go │ │ │ │ ├── deploymentstatus.go │ │ │ │ ├── deploymentstrategy.go │ │ │ │ ├── rollbackconfig.go │ │ │ │ ├── rollingupdatedeployment.go │ │ │ │ ├── rollingupdatestatefulsetstrategy.go │ │ │ │ ├── statefulset.go │ │ │ │ ├── statefulsetcondition.go │ │ │ │ ├── statefulsetordinals.go │ │ │ │ ├── statefulsetpersistentvolumeclaimretentionpolicy.go │ │ │ │ ├── statefulsetspec.go │ │ │ │ ├── statefulsetstatus.go │ │ │ │ └── statefulsetupdatestrategy.go │ │ │ └── v1beta2 │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── daemonsetcondition.go │ │ │ │ ├── daemonsetspec.go │ │ │ │ ├── daemonsetstatus.go │ │ │ │ ├── daemonsetupdatestrategy.go │ │ │ │ ├── deployment.go │ │ │ │ ├── deploymentcondition.go │ │ │ │ ├── deploymentspec.go │ │ │ │ ├── deploymentstatus.go │ │ │ │ ├── deploymentstrategy.go │ │ │ │ ├── replicaset.go │ │ │ │ ├── replicasetcondition.go │ │ │ │ ├── replicasetspec.go │ │ │ │ ├── replicasetstatus.go │ │ │ │ ├── rollingupdatedaemonset.go │ │ │ │ ├── rollingupdatedeployment.go │ │ │ │ ├── rollingupdatestatefulsetstrategy.go │ │ │ │ ├── scale.go │ │ │ │ ├── statefulset.go │ │ │ │ ├── statefulsetcondition.go │ │ │ │ ├── statefulsetordinals.go │ │ │ │ ├── statefulsetpersistentvolumeclaimretentionpolicy.go │ │ │ │ ├── statefulsetspec.go │ │ │ │ ├── statefulsetstatus.go │ │ │ │ └── statefulsetupdatestrategy.go │ │ ├── autoscaling │ │ │ ├── v1 │ │ │ │ ├── crossversionobjectreference.go │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ ├── horizontalpodautoscalerspec.go │ │ │ │ ├── horizontalpodautoscalerstatus.go │ │ │ │ ├── scale.go │ │ │ │ ├── scalespec.go │ │ │ │ └── scalestatus.go │ │ │ ├── v2 │ │ │ │ ├── containerresourcemetricsource.go │ │ │ │ ├── containerresourcemetricstatus.go │ │ │ │ ├── crossversionobjectreference.go │ │ │ │ ├── externalmetricsource.go │ │ │ │ ├── externalmetricstatus.go │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ ├── horizontalpodautoscalerbehavior.go │ │ │ │ ├── horizontalpodautoscalercondition.go │ │ │ │ ├── horizontalpodautoscalerspec.go │ │ │ │ ├── horizontalpodautoscalerstatus.go │ │ │ │ ├── hpascalingpolicy.go │ │ │ │ ├── hpascalingrules.go │ │ │ │ ├── metricidentifier.go │ │ │ │ ├── metricspec.go │ │ │ │ ├── metricstatus.go │ │ │ │ ├── metrictarget.go │ │ │ │ ├── metricvaluestatus.go │ │ │ │ ├── objectmetricsource.go │ │ │ │ ├── objectmetricstatus.go │ │ │ │ ├── podsmetricsource.go │ │ │ │ ├── podsmetricstatus.go │ │ │ │ ├── resourcemetricsource.go │ │ │ │ └── resourcemetricstatus.go │ │ │ ├── v2beta1 │ │ │ │ ├── containerresourcemetricsource.go │ │ │ │ ├── containerresourcemetricstatus.go │ │ │ │ ├── crossversionobjectreference.go │ │ │ │ ├── externalmetricsource.go │ │ │ │ ├── externalmetricstatus.go │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ ├── horizontalpodautoscalercondition.go │ │ │ │ ├── horizontalpodautoscalerspec.go │ │ │ │ ├── horizontalpodautoscalerstatus.go │ │ │ │ ├── metricspec.go │ │ │ │ ├── metricstatus.go │ │ │ │ ├── objectmetricsource.go │ │ │ │ ├── objectmetricstatus.go │ │ │ │ ├── podsmetricsource.go │ │ │ │ ├── podsmetricstatus.go │ │ │ │ ├── resourcemetricsource.go │ │ │ │ └── resourcemetricstatus.go │ │ │ └── v2beta2 │ │ │ │ ├── containerresourcemetricsource.go │ │ │ │ ├── containerresourcemetricstatus.go │ │ │ │ ├── crossversionobjectreference.go │ │ │ │ ├── externalmetricsource.go │ │ │ │ ├── externalmetricstatus.go │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ ├── horizontalpodautoscalerbehavior.go │ │ │ │ ├── horizontalpodautoscalercondition.go │ │ │ │ ├── horizontalpodautoscalerspec.go │ │ │ │ ├── horizontalpodautoscalerstatus.go │ │ │ │ ├── hpascalingpolicy.go │ │ │ │ ├── hpascalingrules.go │ │ │ │ ├── metricidentifier.go │ │ │ │ ├── metricspec.go │ │ │ │ ├── metricstatus.go │ │ │ │ ├── metrictarget.go │ │ │ │ ├── metricvaluestatus.go │ │ │ │ ├── objectmetricsource.go │ │ │ │ ├── objectmetricstatus.go │ │ │ │ ├── podsmetricsource.go │ │ │ │ ├── podsmetricstatus.go │ │ │ │ ├── resourcemetricsource.go │ │ │ │ └── resourcemetricstatus.go │ │ ├── batch │ │ │ ├── v1 │ │ │ │ ├── cronjob.go │ │ │ │ ├── cronjobspec.go │ │ │ │ ├── cronjobstatus.go │ │ │ │ ├── job.go │ │ │ │ ├── jobcondition.go │ │ │ │ ├── jobspec.go │ │ │ │ ├── jobstatus.go │ │ │ │ ├── jobtemplatespec.go │ │ │ │ ├── podfailurepolicy.go │ │ │ │ ├── podfailurepolicyonexitcodesrequirement.go │ │ │ │ ├── podfailurepolicyonpodconditionspattern.go │ │ │ │ ├── podfailurepolicyrule.go │ │ │ │ ├── successpolicy.go │ │ │ │ ├── successpolicyrule.go │ │ │ │ └── uncountedterminatedpods.go │ │ │ └── v1beta1 │ │ │ │ ├── cronjob.go │ │ │ │ ├── cronjobspec.go │ │ │ │ ├── cronjobstatus.go │ │ │ │ └── jobtemplatespec.go │ │ ├── certificates │ │ │ ├── v1 │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ ├── certificatesigningrequestcondition.go │ │ │ │ ├── certificatesigningrequestspec.go │ │ │ │ └── certificatesigningrequeststatus.go │ │ │ ├── v1alpha1 │ │ │ │ ├── clustertrustbundle.go │ │ │ │ ├── clustertrustbundlespec.go │ │ │ │ ├── podcertificaterequest.go │ │ │ │ ├── podcertificaterequestspec.go │ │ │ │ └── podcertificaterequeststatus.go │ │ │ └── v1beta1 │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ ├── certificatesigningrequestcondition.go │ │ │ │ ├── certificatesigningrequestspec.go │ │ │ │ ├── certificatesigningrequeststatus.go │ │ │ │ ├── clustertrustbundle.go │ │ │ │ └── clustertrustbundlespec.go │ │ ├── coordination │ │ │ ├── v1 │ │ │ │ ├── lease.go │ │ │ │ └── leasespec.go │ │ │ ├── v1alpha2 │ │ │ │ ├── leasecandidate.go │ │ │ │ └── leasecandidatespec.go │ │ │ └── v1beta1 │ │ │ │ ├── lease.go │ │ │ │ ├── leasecandidate.go │ │ │ │ ├── leasecandidatespec.go │ │ │ │ └── leasespec.go │ │ ├── core │ │ │ └── v1 │ │ │ │ ├── affinity.go │ │ │ │ ├── apparmorprofile.go │ │ │ │ ├── attachedvolume.go │ │ │ │ ├── awselasticblockstorevolumesource.go │ │ │ │ ├── azurediskvolumesource.go │ │ │ │ ├── azurefilepersistentvolumesource.go │ │ │ │ ├── azurefilevolumesource.go │ │ │ │ ├── capabilities.go │ │ │ │ ├── cephfspersistentvolumesource.go │ │ │ │ ├── cephfsvolumesource.go │ │ │ │ ├── cinderpersistentvolumesource.go │ │ │ │ ├── cindervolumesource.go │ │ │ │ ├── clientipconfig.go │ │ │ │ ├── clustertrustbundleprojection.go │ │ │ │ ├── componentcondition.go │ │ │ │ ├── componentstatus.go │ │ │ │ ├── configmap.go │ │ │ │ ├── configmapenvsource.go │ │ │ │ ├── configmapkeyselector.go │ │ │ │ ├── configmapnodeconfigsource.go │ │ │ │ ├── configmapprojection.go │ │ │ │ ├── configmapvolumesource.go │ │ │ │ ├── container.go │ │ │ │ ├── containerextendedresourcerequest.go │ │ │ │ ├── containerimage.go │ │ │ │ ├── containerport.go │ │ │ │ ├── containerresizepolicy.go │ │ │ │ ├── containerrestartrule.go │ │ │ │ ├── containerrestartruleonexitcodes.go │ │ │ │ ├── containerstate.go │ │ │ │ ├── containerstaterunning.go │ │ │ │ ├── containerstateterminated.go │ │ │ │ ├── containerstatewaiting.go │ │ │ │ ├── containerstatus.go │ │ │ │ ├── containeruser.go │ │ │ │ ├── csipersistentvolumesource.go │ │ │ │ ├── csivolumesource.go │ │ │ │ ├── daemonendpoint.go │ │ │ │ ├── downwardapiprojection.go │ │ │ │ ├── downwardapivolumefile.go │ │ │ │ ├── downwardapivolumesource.go │ │ │ │ ├── emptydirvolumesource.go │ │ │ │ ├── endpointaddress.go │ │ │ │ ├── endpointport.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── endpointsubset.go │ │ │ │ ├── envfromsource.go │ │ │ │ ├── envvar.go │ │ │ │ ├── envvarsource.go │ │ │ │ ├── ephemeralcontainer.go │ │ │ │ ├── ephemeralcontainercommon.go │ │ │ │ ├── ephemeralvolumesource.go │ │ │ │ ├── event.go │ │ │ │ ├── eventseries.go │ │ │ │ ├── eventsource.go │ │ │ │ ├── execaction.go │ │ │ │ ├── fcvolumesource.go │ │ │ │ ├── filekeyselector.go │ │ │ │ ├── flexpersistentvolumesource.go │ │ │ │ ├── flexvolumesource.go │ │ │ │ ├── flockervolumesource.go │ │ │ │ ├── gcepersistentdiskvolumesource.go │ │ │ │ ├── gitrepovolumesource.go │ │ │ │ ├── glusterfspersistentvolumesource.go │ │ │ │ ├── glusterfsvolumesource.go │ │ │ │ ├── grpcaction.go │ │ │ │ ├── hostalias.go │ │ │ │ ├── hostip.go │ │ │ │ ├── hostpathvolumesource.go │ │ │ │ ├── httpgetaction.go │ │ │ │ ├── httpheader.go │ │ │ │ ├── imagevolumesource.go │ │ │ │ ├── iscsipersistentvolumesource.go │ │ │ │ ├── iscsivolumesource.go │ │ │ │ ├── keytopath.go │ │ │ │ ├── lifecycle.go │ │ │ │ ├── lifecyclehandler.go │ │ │ │ ├── limitrange.go │ │ │ │ ├── limitrangeitem.go │ │ │ │ ├── limitrangespec.go │ │ │ │ ├── linuxcontaineruser.go │ │ │ │ ├── loadbalanceringress.go │ │ │ │ ├── loadbalancerstatus.go │ │ │ │ ├── localobjectreference.go │ │ │ │ ├── localvolumesource.go │ │ │ │ ├── modifyvolumestatus.go │ │ │ │ ├── namespace.go │ │ │ │ ├── namespacecondition.go │ │ │ │ ├── namespacespec.go │ │ │ │ ├── namespacestatus.go │ │ │ │ ├── nfsvolumesource.go │ │ │ │ ├── node.go │ │ │ │ ├── nodeaddress.go │ │ │ │ ├── nodeaffinity.go │ │ │ │ ├── nodecondition.go │ │ │ │ ├── nodeconfigsource.go │ │ │ │ ├── nodeconfigstatus.go │ │ │ │ ├── nodedaemonendpoints.go │ │ │ │ ├── nodefeatures.go │ │ │ │ ├── noderuntimehandler.go │ │ │ │ ├── noderuntimehandlerfeatures.go │ │ │ │ ├── nodeselector.go │ │ │ │ ├── nodeselectorrequirement.go │ │ │ │ ├── nodeselectorterm.go │ │ │ │ ├── nodespec.go │ │ │ │ ├── nodestatus.go │ │ │ │ ├── nodeswapstatus.go │ │ │ │ ├── nodesysteminfo.go │ │ │ │ ├── objectfieldselector.go │ │ │ │ ├── objectreference.go │ │ │ │ ├── persistentvolume.go │ │ │ │ ├── persistentvolumeclaim.go │ │ │ │ ├── persistentvolumeclaimcondition.go │ │ │ │ ├── persistentvolumeclaimspec.go │ │ │ │ ├── persistentvolumeclaimstatus.go │ │ │ │ ├── persistentvolumeclaimtemplate.go │ │ │ │ ├── persistentvolumeclaimvolumesource.go │ │ │ │ ├── persistentvolumesource.go │ │ │ │ ├── persistentvolumespec.go │ │ │ │ ├── persistentvolumestatus.go │ │ │ │ ├── photonpersistentdiskvolumesource.go │ │ │ │ ├── pod.go │ │ │ │ ├── podaffinity.go │ │ │ │ ├── podaffinityterm.go │ │ │ │ ├── podantiaffinity.go │ │ │ │ ├── podcertificateprojection.go │ │ │ │ ├── podcondition.go │ │ │ │ ├── poddnsconfig.go │ │ │ │ ├── poddnsconfigoption.go │ │ │ │ ├── podextendedresourceclaimstatus.go │ │ │ │ ├── podip.go │ │ │ │ ├── podos.go │ │ │ │ ├── podreadinessgate.go │ │ │ │ ├── podresourceclaim.go │ │ │ │ ├── podresourceclaimstatus.go │ │ │ │ ├── podschedulinggate.go │ │ │ │ ├── podsecuritycontext.go │ │ │ │ ├── podspec.go │ │ │ │ ├── podstatus.go │ │ │ │ ├── podtemplate.go │ │ │ │ ├── podtemplatespec.go │ │ │ │ ├── portstatus.go │ │ │ │ ├── portworxvolumesource.go │ │ │ │ ├── preferredschedulingterm.go │ │ │ │ ├── probe.go │ │ │ │ ├── probehandler.go │ │ │ │ ├── projectedvolumesource.go │ │ │ │ ├── quobytevolumesource.go │ │ │ │ ├── rbdpersistentvolumesource.go │ │ │ │ ├── rbdvolumesource.go │ │ │ │ ├── replicationcontroller.go │ │ │ │ ├── replicationcontrollercondition.go │ │ │ │ ├── replicationcontrollerspec.go │ │ │ │ ├── replicationcontrollerstatus.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourcefieldselector.go │ │ │ │ ├── resourcehealth.go │ │ │ │ ├── resourcequota.go │ │ │ │ ├── resourcequotaspec.go │ │ │ │ ├── resourcequotastatus.go │ │ │ │ ├── resourcerequirements.go │ │ │ │ ├── resourcestatus.go │ │ │ │ ├── scaleiopersistentvolumesource.go │ │ │ │ ├── scaleiovolumesource.go │ │ │ │ ├── scopedresourceselectorrequirement.go │ │ │ │ ├── scopeselector.go │ │ │ │ ├── seccompprofile.go │ │ │ │ ├── secret.go │ │ │ │ ├── secretenvsource.go │ │ │ │ ├── secretkeyselector.go │ │ │ │ ├── secretprojection.go │ │ │ │ ├── secretreference.go │ │ │ │ ├── secretvolumesource.go │ │ │ │ ├── securitycontext.go │ │ │ │ ├── selinuxoptions.go │ │ │ │ ├── service.go │ │ │ │ ├── serviceaccount.go │ │ │ │ ├── serviceaccounttokenprojection.go │ │ │ │ ├── serviceport.go │ │ │ │ ├── servicespec.go │ │ │ │ ├── servicestatus.go │ │ │ │ ├── sessionaffinityconfig.go │ │ │ │ ├── sleepaction.go │ │ │ │ ├── storageospersistentvolumesource.go │ │ │ │ ├── storageosvolumesource.go │ │ │ │ ├── sysctl.go │ │ │ │ ├── taint.go │ │ │ │ ├── tcpsocketaction.go │ │ │ │ ├── toleration.go │ │ │ │ ├── topologyselectorlabelrequirement.go │ │ │ │ ├── topologyselectorterm.go │ │ │ │ ├── topologyspreadconstraint.go │ │ │ │ ├── typedlocalobjectreference.go │ │ │ │ ├── typedobjectreference.go │ │ │ │ ├── volume.go │ │ │ │ ├── volumedevice.go │ │ │ │ ├── volumemount.go │ │ │ │ ├── volumemountstatus.go │ │ │ │ ├── volumenodeaffinity.go │ │ │ │ ├── volumeprojection.go │ │ │ │ ├── volumeresourcerequirements.go │ │ │ │ ├── volumesource.go │ │ │ │ ├── vspherevirtualdiskvolumesource.go │ │ │ │ ├── weightedpodaffinityterm.go │ │ │ │ └── windowssecuritycontextoptions.go │ │ ├── discovery │ │ │ ├── v1 │ │ │ │ ├── endpoint.go │ │ │ │ ├── endpointconditions.go │ │ │ │ ├── endpointhints.go │ │ │ │ ├── endpointport.go │ │ │ │ ├── endpointslice.go │ │ │ │ ├── fornode.go │ │ │ │ └── forzone.go │ │ │ └── v1beta1 │ │ │ │ ├── endpoint.go │ │ │ │ ├── endpointconditions.go │ │ │ │ ├── endpointhints.go │ │ │ │ ├── endpointport.go │ │ │ │ ├── endpointslice.go │ │ │ │ ├── fornode.go │ │ │ │ └── forzone.go │ │ ├── doc.go │ │ ├── events │ │ │ ├── v1 │ │ │ │ ├── event.go │ │ │ │ └── eventseries.go │ │ │ └── v1beta1 │ │ │ │ ├── event.go │ │ │ │ └── eventseries.go │ │ ├── extensions │ │ │ └── v1beta1 │ │ │ │ ├── daemonset.go │ │ │ │ ├── daemonsetcondition.go │ │ │ │ ├── daemonsetspec.go │ │ │ │ ├── daemonsetstatus.go │ │ │ │ ├── daemonsetupdatestrategy.go │ │ │ │ ├── deployment.go │ │ │ │ ├── deploymentcondition.go │ │ │ │ ├── deploymentspec.go │ │ │ │ ├── deploymentstatus.go │ │ │ │ ├── deploymentstrategy.go │ │ │ │ ├── httpingresspath.go │ │ │ │ ├── httpingressrulevalue.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressbackend.go │ │ │ │ ├── ingressloadbalanceringress.go │ │ │ │ ├── ingressloadbalancerstatus.go │ │ │ │ ├── ingressportstatus.go │ │ │ │ ├── ingressrule.go │ │ │ │ ├── ingressrulevalue.go │ │ │ │ ├── ingressspec.go │ │ │ │ ├── ingressstatus.go │ │ │ │ ├── ingresstls.go │ │ │ │ ├── ipblock.go │ │ │ │ ├── networkpolicy.go │ │ │ │ ├── networkpolicyegressrule.go │ │ │ │ ├── networkpolicyingressrule.go │ │ │ │ ├── networkpolicypeer.go │ │ │ │ ├── networkpolicyport.go │ │ │ │ ├── networkpolicyspec.go │ │ │ │ ├── replicaset.go │ │ │ │ ├── replicasetcondition.go │ │ │ │ ├── replicasetspec.go │ │ │ │ ├── replicasetstatus.go │ │ │ │ ├── rollbackconfig.go │ │ │ │ ├── rollingupdatedaemonset.go │ │ │ │ ├── rollingupdatedeployment.go │ │ │ │ └── scale.go │ │ ├── flowcontrol │ │ │ ├── v1 │ │ │ │ ├── exemptprioritylevelconfiguration.go │ │ │ │ ├── flowdistinguishermethod.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── flowschemacondition.go │ │ │ │ ├── flowschemaspec.go │ │ │ │ ├── flowschemastatus.go │ │ │ │ ├── groupsubject.go │ │ │ │ ├── limitedprioritylevelconfiguration.go │ │ │ │ ├── limitresponse.go │ │ │ │ ├── nonresourcepolicyrule.go │ │ │ │ ├── policyruleswithsubjects.go │ │ │ │ ├── prioritylevelconfiguration.go │ │ │ │ ├── prioritylevelconfigurationcondition.go │ │ │ │ ├── prioritylevelconfigurationreference.go │ │ │ │ ├── prioritylevelconfigurationspec.go │ │ │ │ ├── prioritylevelconfigurationstatus.go │ │ │ │ ├── queuingconfiguration.go │ │ │ │ ├── resourcepolicyrule.go │ │ │ │ ├── serviceaccountsubject.go │ │ │ │ ├── subject.go │ │ │ │ └── usersubject.go │ │ │ ├── v1beta1 │ │ │ │ ├── exemptprioritylevelconfiguration.go │ │ │ │ ├── flowdistinguishermethod.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── flowschemacondition.go │ │ │ │ ├── flowschemaspec.go │ │ │ │ ├── flowschemastatus.go │ │ │ │ ├── groupsubject.go │ │ │ │ ├── limitedprioritylevelconfiguration.go │ │ │ │ ├── limitresponse.go │ │ │ │ ├── nonresourcepolicyrule.go │ │ │ │ ├── policyruleswithsubjects.go │ │ │ │ ├── prioritylevelconfiguration.go │ │ │ │ ├── prioritylevelconfigurationcondition.go │ │ │ │ ├── prioritylevelconfigurationreference.go │ │ │ │ ├── prioritylevelconfigurationspec.go │ │ │ │ ├── prioritylevelconfigurationstatus.go │ │ │ │ ├── queuingconfiguration.go │ │ │ │ ├── resourcepolicyrule.go │ │ │ │ ├── serviceaccountsubject.go │ │ │ │ ├── subject.go │ │ │ │ └── usersubject.go │ │ │ ├── v1beta2 │ │ │ │ ├── exemptprioritylevelconfiguration.go │ │ │ │ ├── flowdistinguishermethod.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── flowschemacondition.go │ │ │ │ ├── flowschemaspec.go │ │ │ │ ├── flowschemastatus.go │ │ │ │ ├── groupsubject.go │ │ │ │ ├── limitedprioritylevelconfiguration.go │ │ │ │ ├── limitresponse.go │ │ │ │ ├── nonresourcepolicyrule.go │ │ │ │ ├── policyruleswithsubjects.go │ │ │ │ ├── prioritylevelconfiguration.go │ │ │ │ ├── prioritylevelconfigurationcondition.go │ │ │ │ ├── prioritylevelconfigurationreference.go │ │ │ │ ├── prioritylevelconfigurationspec.go │ │ │ │ ├── prioritylevelconfigurationstatus.go │ │ │ │ ├── queuingconfiguration.go │ │ │ │ ├── resourcepolicyrule.go │ │ │ │ ├── serviceaccountsubject.go │ │ │ │ ├── subject.go │ │ │ │ └── usersubject.go │ │ │ └── v1beta3 │ │ │ │ ├── exemptprioritylevelconfiguration.go │ │ │ │ ├── flowdistinguishermethod.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── flowschemacondition.go │ │ │ │ ├── flowschemaspec.go │ │ │ │ ├── flowschemastatus.go │ │ │ │ ├── groupsubject.go │ │ │ │ ├── limitedprioritylevelconfiguration.go │ │ │ │ ├── limitresponse.go │ │ │ │ ├── nonresourcepolicyrule.go │ │ │ │ ├── policyruleswithsubjects.go │ │ │ │ ├── prioritylevelconfiguration.go │ │ │ │ ├── prioritylevelconfigurationcondition.go │ │ │ │ ├── prioritylevelconfigurationreference.go │ │ │ │ ├── prioritylevelconfigurationspec.go │ │ │ │ ├── prioritylevelconfigurationstatus.go │ │ │ │ ├── queuingconfiguration.go │ │ │ │ ├── resourcepolicyrule.go │ │ │ │ ├── serviceaccountsubject.go │ │ │ │ ├── subject.go │ │ │ │ └── usersubject.go │ │ ├── imagepolicy │ │ │ └── v1alpha1 │ │ │ │ ├── imagereview.go │ │ │ │ ├── imagereviewcontainerspec.go │ │ │ │ ├── imagereviewspec.go │ │ │ │ └── imagereviewstatus.go │ │ ├── internal │ │ │ └── internal.go │ │ ├── meta │ │ │ └── v1 │ │ │ │ ├── condition.go │ │ │ │ ├── deleteoptions.go │ │ │ │ ├── labelselector.go │ │ │ │ ├── labelselectorrequirement.go │ │ │ │ ├── managedfieldsentry.go │ │ │ │ ├── objectmeta.go │ │ │ │ ├── ownerreference.go │ │ │ │ ├── preconditions.go │ │ │ │ ├── typemeta.go │ │ │ │ └── unstructured.go │ │ ├── networking │ │ │ ├── v1 │ │ │ │ ├── httpingresspath.go │ │ │ │ ├── httpingressrulevalue.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressbackend.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── ingressclassparametersreference.go │ │ │ │ ├── ingressclassspec.go │ │ │ │ ├── ingressloadbalanceringress.go │ │ │ │ ├── ingressloadbalancerstatus.go │ │ │ │ ├── ingressportstatus.go │ │ │ │ ├── ingressrule.go │ │ │ │ ├── ingressrulevalue.go │ │ │ │ ├── ingressservicebackend.go │ │ │ │ ├── ingressspec.go │ │ │ │ ├── ingressstatus.go │ │ │ │ ├── ingresstls.go │ │ │ │ ├── ipaddress.go │ │ │ │ ├── ipaddressspec.go │ │ │ │ ├── ipblock.go │ │ │ │ ├── networkpolicy.go │ │ │ │ ├── networkpolicyegressrule.go │ │ │ │ ├── networkpolicyingressrule.go │ │ │ │ ├── networkpolicypeer.go │ │ │ │ ├── networkpolicyport.go │ │ │ │ ├── networkpolicyspec.go │ │ │ │ ├── parentreference.go │ │ │ │ ├── servicebackendport.go │ │ │ │ ├── servicecidr.go │ │ │ │ ├── servicecidrspec.go │ │ │ │ └── servicecidrstatus.go │ │ │ └── v1beta1 │ │ │ │ ├── httpingresspath.go │ │ │ │ ├── httpingressrulevalue.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressbackend.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── ingressclassparametersreference.go │ │ │ │ ├── ingressclassspec.go │ │ │ │ ├── ingressloadbalanceringress.go │ │ │ │ ├── ingressloadbalancerstatus.go │ │ │ │ ├── ingressportstatus.go │ │ │ │ ├── ingressrule.go │ │ │ │ ├── ingressrulevalue.go │ │ │ │ ├── ingressspec.go │ │ │ │ ├── ingressstatus.go │ │ │ │ ├── ingresstls.go │ │ │ │ ├── ipaddress.go │ │ │ │ ├── ipaddressspec.go │ │ │ │ ├── parentreference.go │ │ │ │ ├── servicecidr.go │ │ │ │ ├── servicecidrspec.go │ │ │ │ └── servicecidrstatus.go │ │ ├── node │ │ │ ├── v1 │ │ │ │ ├── overhead.go │ │ │ │ ├── runtimeclass.go │ │ │ │ └── scheduling.go │ │ │ ├── v1alpha1 │ │ │ │ ├── overhead.go │ │ │ │ ├── runtimeclass.go │ │ │ │ ├── runtimeclassspec.go │ │ │ │ └── scheduling.go │ │ │ └── v1beta1 │ │ │ │ ├── overhead.go │ │ │ │ ├── runtimeclass.go │ │ │ │ └── scheduling.go │ │ ├── policy │ │ │ ├── v1 │ │ │ │ ├── eviction.go │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ ├── poddisruptionbudgetspec.go │ │ │ │ └── poddisruptionbudgetstatus.go │ │ │ └── v1beta1 │ │ │ │ ├── eviction.go │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ ├── poddisruptionbudgetspec.go │ │ │ │ └── poddisruptionbudgetstatus.go │ │ ├── rbac │ │ │ ├── v1 │ │ │ │ ├── aggregationrule.go │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── policyrule.go │ │ │ │ ├── role.go │ │ │ │ ├── rolebinding.go │ │ │ │ ├── roleref.go │ │ │ │ └── subject.go │ │ │ ├── v1alpha1 │ │ │ │ ├── aggregationrule.go │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── policyrule.go │ │ │ │ ├── role.go │ │ │ │ ├── rolebinding.go │ │ │ │ ├── roleref.go │ │ │ │ └── subject.go │ │ │ └── v1beta1 │ │ │ │ ├── aggregationrule.go │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── policyrule.go │ │ │ │ ├── role.go │ │ │ │ ├── rolebinding.go │ │ │ │ ├── roleref.go │ │ │ │ └── subject.go │ │ ├── resource │ │ │ ├── v1 │ │ │ │ ├── allocateddevicestatus.go │ │ │ │ ├── allocationresult.go │ │ │ │ ├── capacityrequestpolicy.go │ │ │ │ ├── capacityrequestpolicyrange.go │ │ │ │ ├── capacityrequirements.go │ │ │ │ ├── celdeviceselector.go │ │ │ │ ├── counter.go │ │ │ │ ├── counterset.go │ │ │ │ ├── device.go │ │ │ │ ├── deviceallocationconfiguration.go │ │ │ │ ├── deviceallocationresult.go │ │ │ │ ├── deviceattribute.go │ │ │ │ ├── devicecapacity.go │ │ │ │ ├── deviceclaim.go │ │ │ │ ├── deviceclaimconfiguration.go │ │ │ │ ├── deviceclass.go │ │ │ │ ├── deviceclassconfiguration.go │ │ │ │ ├── deviceclassspec.go │ │ │ │ ├── deviceconfiguration.go │ │ │ │ ├── deviceconstraint.go │ │ │ │ ├── devicecounterconsumption.go │ │ │ │ ├── devicerequest.go │ │ │ │ ├── devicerequestallocationresult.go │ │ │ │ ├── deviceselector.go │ │ │ │ ├── devicesubrequest.go │ │ │ │ ├── devicetaint.go │ │ │ │ ├── devicetoleration.go │ │ │ │ ├── exactdevicerequest.go │ │ │ │ ├── networkdevicedata.go │ │ │ │ ├── opaquedeviceconfiguration.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimconsumerreference.go │ │ │ │ ├── resourceclaimspec.go │ │ │ │ ├── resourceclaimstatus.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ ├── resourceclaimtemplatespec.go │ │ │ │ ├── resourcepool.go │ │ │ │ ├── resourceslice.go │ │ │ │ └── resourceslicespec.go │ │ │ ├── v1alpha3 │ │ │ │ ├── celdeviceselector.go │ │ │ │ ├── deviceselector.go │ │ │ │ ├── devicetaint.go │ │ │ │ ├── devicetaintrule.go │ │ │ │ ├── devicetaintrulespec.go │ │ │ │ └── devicetaintselector.go │ │ │ ├── v1beta1 │ │ │ │ ├── allocateddevicestatus.go │ │ │ │ ├── allocationresult.go │ │ │ │ ├── basicdevice.go │ │ │ │ ├── capacityrequestpolicy.go │ │ │ │ ├── capacityrequestpolicyrange.go │ │ │ │ ├── capacityrequirements.go │ │ │ │ ├── celdeviceselector.go │ │ │ │ ├── counter.go │ │ │ │ ├── counterset.go │ │ │ │ ├── device.go │ │ │ │ ├── deviceallocationconfiguration.go │ │ │ │ ├── deviceallocationresult.go │ │ │ │ ├── deviceattribute.go │ │ │ │ ├── devicecapacity.go │ │ │ │ ├── deviceclaim.go │ │ │ │ ├── deviceclaimconfiguration.go │ │ │ │ ├── deviceclass.go │ │ │ │ ├── deviceclassconfiguration.go │ │ │ │ ├── deviceclassspec.go │ │ │ │ ├── deviceconfiguration.go │ │ │ │ ├── deviceconstraint.go │ │ │ │ ├── devicecounterconsumption.go │ │ │ │ ├── devicerequest.go │ │ │ │ ├── devicerequestallocationresult.go │ │ │ │ ├── deviceselector.go │ │ │ │ ├── devicesubrequest.go │ │ │ │ ├── devicetaint.go │ │ │ │ ├── devicetoleration.go │ │ │ │ ├── networkdevicedata.go │ │ │ │ ├── opaquedeviceconfiguration.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimconsumerreference.go │ │ │ │ ├── resourceclaimspec.go │ │ │ │ ├── resourceclaimstatus.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ ├── resourceclaimtemplatespec.go │ │ │ │ ├── resourcepool.go │ │ │ │ ├── resourceslice.go │ │ │ │ └── resourceslicespec.go │ │ │ └── v1beta2 │ │ │ │ ├── allocateddevicestatus.go │ │ │ │ ├── allocationresult.go │ │ │ │ ├── capacityrequestpolicy.go │ │ │ │ ├── capacityrequestpolicyrange.go │ │ │ │ ├── capacityrequirements.go │ │ │ │ ├── celdeviceselector.go │ │ │ │ ├── counter.go │ │ │ │ ├── counterset.go │ │ │ │ ├── device.go │ │ │ │ ├── deviceallocationconfiguration.go │ │ │ │ ├── deviceallocationresult.go │ │ │ │ ├── deviceattribute.go │ │ │ │ ├── devicecapacity.go │ │ │ │ ├── deviceclaim.go │ │ │ │ ├── deviceclaimconfiguration.go │ │ │ │ ├── deviceclass.go │ │ │ │ ├── deviceclassconfiguration.go │ │ │ │ ├── deviceclassspec.go │ │ │ │ ├── deviceconfiguration.go │ │ │ │ ├── deviceconstraint.go │ │ │ │ ├── devicecounterconsumption.go │ │ │ │ ├── devicerequest.go │ │ │ │ ├── devicerequestallocationresult.go │ │ │ │ ├── deviceselector.go │ │ │ │ ├── devicesubrequest.go │ │ │ │ ├── devicetaint.go │ │ │ │ ├── devicetoleration.go │ │ │ │ ├── exactdevicerequest.go │ │ │ │ ├── networkdevicedata.go │ │ │ │ ├── opaquedeviceconfiguration.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimconsumerreference.go │ │ │ │ ├── resourceclaimspec.go │ │ │ │ ├── resourceclaimstatus.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ ├── resourceclaimtemplatespec.go │ │ │ │ ├── resourcepool.go │ │ │ │ ├── resourceslice.go │ │ │ │ └── resourceslicespec.go │ │ ├── scheduling │ │ │ ├── v1 │ │ │ │ └── priorityclass.go │ │ │ ├── v1alpha1 │ │ │ │ └── priorityclass.go │ │ │ └── v1beta1 │ │ │ │ └── priorityclass.go │ │ ├── storage │ │ │ ├── v1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csidriverspec.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csinodedriver.go │ │ │ │ ├── csinodespec.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── storageclass.go │ │ │ │ ├── tokenrequest.go │ │ │ │ ├── volumeattachment.go │ │ │ │ ├── volumeattachmentsource.go │ │ │ │ ├── volumeattachmentspec.go │ │ │ │ ├── volumeattachmentstatus.go │ │ │ │ ├── volumeattributesclass.go │ │ │ │ ├── volumeerror.go │ │ │ │ └── volumenoderesources.go │ │ │ ├── v1alpha1 │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── volumeattachment.go │ │ │ │ ├── volumeattachmentsource.go │ │ │ │ ├── volumeattachmentspec.go │ │ │ │ ├── volumeattachmentstatus.go │ │ │ │ ├── volumeattributesclass.go │ │ │ │ └── volumeerror.go │ │ │ └── v1beta1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csidriverspec.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csinodedriver.go │ │ │ │ ├── csinodespec.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── storageclass.go │ │ │ │ ├── tokenrequest.go │ │ │ │ ├── volumeattachment.go │ │ │ │ ├── volumeattachmentsource.go │ │ │ │ ├── volumeattachmentspec.go │ │ │ │ ├── volumeattachmentstatus.go │ │ │ │ ├── volumeattributesclass.go │ │ │ │ ├── volumeerror.go │ │ │ │ └── volumenoderesources.go │ │ ├── storagemigration │ │ │ └── v1alpha1 │ │ │ │ ├── groupversionresource.go │ │ │ │ ├── migrationcondition.go │ │ │ │ ├── storageversionmigration.go │ │ │ │ ├── storageversionmigrationspec.go │ │ │ │ └── storageversionmigrationstatus.go │ │ └── utils.go │ ├── discovery │ │ ├── aggregated_discovery.go │ │ ├── discovery_client.go │ │ ├── doc.go │ │ ├── fake │ │ │ └── discovery.go │ │ └── helper.go │ ├── dynamic │ │ ├── interface.go │ │ ├── scheme.go │ │ └── simple.go │ ├── features │ │ ├── envvar.go │ │ ├── features.go │ │ └── known_features.go │ ├── gentype │ │ ├── fake.go │ │ └── type.go │ ├── informers │ │ ├── admissionregistration │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── interface.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ ├── v1alpha1 │ │ │ │ ├── interface.go │ │ │ │ ├── mutatingadmissionpolicy.go │ │ │ │ ├── mutatingadmissionpolicybinding.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ └── validatingadmissionpolicybinding.go │ │ │ └── v1beta1 │ │ │ │ ├── interface.go │ │ │ │ ├── mutatingadmissionpolicy.go │ │ │ │ ├── mutatingadmissionpolicybinding.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ └── validatingwebhookconfiguration.go │ │ ├── apiserverinternal │ │ │ ├── interface.go │ │ │ └── v1alpha1 │ │ │ │ ├── interface.go │ │ │ │ └── storageversion.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 │ │ │ ├── v2 │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ └── interface.go │ │ │ ├── v2beta1 │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ └── interface.go │ │ │ └── v2beta2 │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ └── interface.go │ │ ├── batch │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── cronjob.go │ │ │ │ ├── interface.go │ │ │ │ └── job.go │ │ │ └── v1beta1 │ │ │ │ ├── cronjob.go │ │ │ │ └── interface.go │ │ ├── certificates │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ └── interface.go │ │ │ ├── v1alpha1 │ │ │ │ ├── clustertrustbundle.go │ │ │ │ ├── interface.go │ │ │ │ └── podcertificaterequest.go │ │ │ └── v1beta1 │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ ├── clustertrustbundle.go │ │ │ │ └── interface.go │ │ ├── coordination │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── interface.go │ │ │ │ └── lease.go │ │ │ ├── v1alpha2 │ │ │ │ ├── interface.go │ │ │ │ └── leasecandidate.go │ │ │ └── v1beta1 │ │ │ │ ├── interface.go │ │ │ │ ├── lease.go │ │ │ │ └── leasecandidate.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 │ │ ├── discovery │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── endpointslice.go │ │ │ │ └── interface.go │ │ │ └── v1beta1 │ │ │ │ ├── endpointslice.go │ │ │ │ └── interface.go │ │ ├── doc.go │ │ ├── events │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── event.go │ │ │ │ └── interface.go │ │ │ └── v1beta1 │ │ │ │ ├── event.go │ │ │ │ └── interface.go │ │ ├── extensions │ │ │ ├── interface.go │ │ │ └── v1beta1 │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── ingress.go │ │ │ │ ├── interface.go │ │ │ │ ├── networkpolicy.go │ │ │ │ └── replicaset.go │ │ ├── factory.go │ │ ├── flowcontrol │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── flowschema.go │ │ │ │ ├── interface.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ ├── v1beta1 │ │ │ │ ├── flowschema.go │ │ │ │ ├── interface.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ ├── v1beta2 │ │ │ │ ├── flowschema.go │ │ │ │ ├── interface.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ └── v1beta3 │ │ │ │ ├── flowschema.go │ │ │ │ ├── interface.go │ │ │ │ └── prioritylevelconfiguration.go │ │ ├── generic.go │ │ ├── internalinterfaces │ │ │ └── factory_interfaces.go │ │ ├── networking │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── interface.go │ │ │ │ ├── ipaddress.go │ │ │ │ ├── networkpolicy.go │ │ │ │ └── servicecidr.go │ │ │ └── v1beta1 │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── interface.go │ │ │ │ ├── ipaddress.go │ │ │ │ └── servicecidr.go │ │ ├── node │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── interface.go │ │ │ │ └── runtimeclass.go │ │ │ ├── v1alpha1 │ │ │ │ ├── interface.go │ │ │ │ └── runtimeclass.go │ │ │ └── v1beta1 │ │ │ │ ├── interface.go │ │ │ │ └── runtimeclass.go │ │ ├── policy │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── interface.go │ │ │ │ └── poddisruptionbudget.go │ │ │ └── v1beta1 │ │ │ │ ├── interface.go │ │ │ │ └── poddisruptionbudget.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 │ │ ├── resource │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── interface.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ │ ├── v1alpha3 │ │ │ │ ├── devicetaintrule.go │ │ │ │ └── interface.go │ │ │ ├── v1beta1 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── interface.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ │ └── v1beta2 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── interface.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ ├── scheduling │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── interface.go │ │ │ │ └── priorityclass.go │ │ │ ├── v1alpha1 │ │ │ │ ├── interface.go │ │ │ │ └── priorityclass.go │ │ │ └── v1beta1 │ │ │ │ ├── interface.go │ │ │ │ └── priorityclass.go │ │ ├── storage │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── interface.go │ │ │ │ ├── storageclass.go │ │ │ │ ├── volumeattachment.go │ │ │ │ └── volumeattributesclass.go │ │ │ ├── v1alpha1 │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── interface.go │ │ │ │ ├── volumeattachment.go │ │ │ │ └── volumeattributesclass.go │ │ │ └── v1beta1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── interface.go │ │ │ │ ├── storageclass.go │ │ │ │ ├── volumeattachment.go │ │ │ │ └── volumeattributesclass.go │ │ └── storagemigration │ │ │ ├── interface.go │ │ │ └── v1alpha1 │ │ │ ├── interface.go │ │ │ └── storageversionmigration.go │ ├── kubernetes │ │ ├── clientset.go │ │ ├── doc.go │ │ ├── fake │ │ │ ├── clientset_generated.go │ │ │ ├── doc.go │ │ │ └── register.go │ │ ├── import.go │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ └── typed │ │ │ ├── admissionregistration │ │ │ ├── v1 │ │ │ │ ├── admissionregistration_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_admissionregistration_client.go │ │ │ │ │ ├── fake_mutatingwebhookconfiguration.go │ │ │ │ │ ├── fake_validatingadmissionpolicy.go │ │ │ │ │ ├── fake_validatingadmissionpolicybinding.go │ │ │ │ │ └── fake_validatingwebhookconfiguration.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ ├── v1alpha1 │ │ │ │ ├── admissionregistration_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_admissionregistration_client.go │ │ │ │ │ ├── fake_mutatingadmissionpolicy.go │ │ │ │ │ ├── fake_mutatingadmissionpolicybinding.go │ │ │ │ │ ├── fake_validatingadmissionpolicy.go │ │ │ │ │ └── fake_validatingadmissionpolicybinding.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── mutatingadmissionpolicy.go │ │ │ │ ├── mutatingadmissionpolicybinding.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ └── validatingadmissionpolicybinding.go │ │ │ └── v1beta1 │ │ │ │ ├── admissionregistration_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_admissionregistration_client.go │ │ │ │ ├── fake_mutatingadmissionpolicy.go │ │ │ │ ├── fake_mutatingadmissionpolicybinding.go │ │ │ │ ├── fake_mutatingwebhookconfiguration.go │ │ │ │ ├── fake_validatingadmissionpolicy.go │ │ │ │ ├── fake_validatingadmissionpolicybinding.go │ │ │ │ └── fake_validatingwebhookconfiguration.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── mutatingadmissionpolicy.go │ │ │ │ ├── mutatingadmissionpolicybinding.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ ├── apiserverinternal │ │ │ └── v1alpha1 │ │ │ │ ├── apiserverinternal_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_apiserverinternal_client.go │ │ │ │ └── fake_storageversion.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── storageversion.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_statefulset.go │ │ │ │ ├── generated_expansion.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_statefulset.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── replicaset.go │ │ │ │ └── statefulset.go │ │ │ ├── authentication │ │ │ ├── v1 │ │ │ │ ├── authentication_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_authentication_client.go │ │ │ │ │ ├── fake_selfsubjectreview.go │ │ │ │ │ └── fake_tokenreview.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── selfsubjectreview.go │ │ │ │ └── tokenreview.go │ │ │ ├── v1alpha1 │ │ │ │ ├── authentication_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_authentication_client.go │ │ │ │ │ └── fake_selfsubjectreview.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── selfsubjectreview.go │ │ │ └── v1beta1 │ │ │ │ ├── authentication_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_authentication_client.go │ │ │ │ ├── fake_selfsubjectreview.go │ │ │ │ └── fake_tokenreview.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── selfsubjectreview.go │ │ │ │ └── tokenreview.go │ │ │ ├── authorization │ │ │ ├── v1 │ │ │ │ ├── authorization_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_authorization_client.go │ │ │ │ │ ├── fake_localsubjectaccessreview.go │ │ │ │ │ ├── fake_selfsubjectaccessreview.go │ │ │ │ │ ├── fake_selfsubjectrulesreview.go │ │ │ │ │ └── fake_subjectaccessreview.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ └── subjectaccessreview.go │ │ │ └── v1beta1 │ │ │ │ ├── authorization_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_authorization_client.go │ │ │ │ ├── fake_localsubjectaccessreview.go │ │ │ │ ├── fake_selfsubjectaccessreview.go │ │ │ │ ├── fake_selfsubjectrulesreview.go │ │ │ │ └── fake_subjectaccessreview.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ └── subjectaccessreview.go │ │ │ ├── autoscaling │ │ │ ├── v1 │ │ │ │ ├── autoscaling_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_autoscaling_client.go │ │ │ │ │ └── fake_horizontalpodautoscaler.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ ├── v2 │ │ │ │ ├── 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 │ │ │ └── v2beta2 │ │ │ │ ├── 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 │ │ │ │ ├── cronjob.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_batch_client.go │ │ │ │ │ ├── fake_cronjob.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 │ │ │ ├── certificates │ │ │ ├── v1 │ │ │ │ ├── certificates_client.go │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_certificates_client.go │ │ │ │ │ └── fake_certificatesigningrequest.go │ │ │ │ └── generated_expansion.go │ │ │ ├── v1alpha1 │ │ │ │ ├── certificates_client.go │ │ │ │ ├── clustertrustbundle.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_certificates_client.go │ │ │ │ │ ├── fake_clustertrustbundle.go │ │ │ │ │ └── fake_podcertificaterequest.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── podcertificaterequest.go │ │ │ └── v1beta1 │ │ │ │ ├── certificates_client.go │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ ├── certificatesigningrequest_expansion.go │ │ │ │ ├── clustertrustbundle.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_certificates_client.go │ │ │ │ ├── fake_certificatesigningrequest.go │ │ │ │ ├── fake_certificatesigningrequest_expansion.go │ │ │ │ └── fake_clustertrustbundle.go │ │ │ │ └── generated_expansion.go │ │ │ ├── coordination │ │ │ ├── v1 │ │ │ │ ├── coordination_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_coordination_client.go │ │ │ │ │ └── fake_lease.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── lease.go │ │ │ ├── v1alpha2 │ │ │ │ ├── coordination_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_coordination_client.go │ │ │ │ │ └── fake_leasecandidate.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── leasecandidate.go │ │ │ └── v1beta1 │ │ │ │ ├── coordination_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_coordination_client.go │ │ │ │ ├── fake_lease.go │ │ │ │ └── fake_leasecandidate.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── lease.go │ │ │ │ └── leasecandidate.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 │ │ │ │ ├── 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 │ │ │ ├── discovery │ │ │ ├── v1 │ │ │ │ ├── discovery_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpointslice.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_discovery_client.go │ │ │ │ │ └── fake_endpointslice.go │ │ │ │ └── generated_expansion.go │ │ │ └── v1beta1 │ │ │ │ ├── discovery_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpointslice.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_discovery_client.go │ │ │ │ └── fake_endpointslice.go │ │ │ │ └── generated_expansion.go │ │ │ ├── events │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── event.go │ │ │ │ ├── events_client.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_event.go │ │ │ │ │ └── fake_events_client.go │ │ │ │ └── generated_expansion.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── event.go │ │ │ │ ├── event_expansion.go │ │ │ │ ├── events_client.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_event.go │ │ │ │ ├── fake_event_expansion.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_networkpolicy.go │ │ │ │ └── fake_replicaset.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── ingress.go │ │ │ │ ├── networkpolicy.go │ │ │ │ └── replicaset.go │ │ │ ├── flowcontrol │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_flowcontrol_client.go │ │ │ │ │ ├── fake_flowschema.go │ │ │ │ │ └── fake_prioritylevelconfiguration.go │ │ │ │ ├── flowcontrol_client.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ ├── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_flowcontrol_client.go │ │ │ │ │ ├── fake_flowschema.go │ │ │ │ │ └── fake_prioritylevelconfiguration.go │ │ │ │ ├── flowcontrol_client.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ ├── v1beta2 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_flowcontrol_client.go │ │ │ │ │ ├── fake_flowschema.go │ │ │ │ │ └── fake_prioritylevelconfiguration.go │ │ │ │ ├── flowcontrol_client.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ └── v1beta3 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_flowcontrol_client.go │ │ │ │ ├── fake_flowschema.go │ │ │ │ └── fake_prioritylevelconfiguration.go │ │ │ │ ├── flowcontrol_client.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ ├── networking │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_ingress.go │ │ │ │ │ ├── fake_ingressclass.go │ │ │ │ │ ├── fake_ipaddress.go │ │ │ │ │ ├── fake_networking_client.go │ │ │ │ │ ├── fake_networkpolicy.go │ │ │ │ │ └── fake_servicecidr.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── ipaddress.go │ │ │ │ ├── networking_client.go │ │ │ │ ├── networkpolicy.go │ │ │ │ └── servicecidr.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_ingress.go │ │ │ │ ├── fake_ingressclass.go │ │ │ │ ├── fake_ipaddress.go │ │ │ │ ├── fake_networking_client.go │ │ │ │ └── fake_servicecidr.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── ipaddress.go │ │ │ │ ├── networking_client.go │ │ │ │ └── servicecidr.go │ │ │ ├── node │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_node_client.go │ │ │ │ │ └── fake_runtimeclass.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── node_client.go │ │ │ │ └── runtimeclass.go │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_node_client.go │ │ │ │ │ └── fake_runtimeclass.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── node_client.go │ │ │ │ └── runtimeclass.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_node_client.go │ │ │ │ └── fake_runtimeclass.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── node_client.go │ │ │ │ └── runtimeclass.go │ │ │ ├── policy │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── eviction.go │ │ │ │ ├── eviction_expansion.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_eviction.go │ │ │ │ │ ├── fake_eviction_expansion.go │ │ │ │ │ ├── fake_poddisruptionbudget.go │ │ │ │ │ └── fake_policy_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ └── policy_client.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── eviction.go │ │ │ │ ├── eviction_expansion.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_eviction.go │ │ │ │ ├── fake_eviction_expansion.go │ │ │ │ ├── fake_poddisruptionbudget.go │ │ │ │ └── fake_policy_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── poddisruptionbudget.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 │ │ │ ├── resource │ │ │ ├── v1 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_deviceclass.go │ │ │ │ │ ├── fake_resource_client.go │ │ │ │ │ ├── fake_resourceclaim.go │ │ │ │ │ ├── fake_resourceclaimtemplate.go │ │ │ │ │ └── fake_resourceslice.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── resource_client.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ │ ├── v1alpha3 │ │ │ │ ├── devicetaintrule.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_devicetaintrule.go │ │ │ │ │ └── fake_resource_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── resource_client.go │ │ │ ├── v1beta1 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_deviceclass.go │ │ │ │ │ ├── fake_resource_client.go │ │ │ │ │ ├── fake_resourceclaim.go │ │ │ │ │ ├── fake_resourceclaimtemplate.go │ │ │ │ │ └── fake_resourceslice.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── resource_client.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ │ └── v1beta2 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_deviceclass.go │ │ │ │ ├── fake_resource_client.go │ │ │ │ ├── fake_resourceclaim.go │ │ │ │ ├── fake_resourceclaimtemplate.go │ │ │ │ └── fake_resourceslice.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── resource_client.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ │ ├── scheduling │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_priorityclass.go │ │ │ │ │ └── fake_scheduling_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── priorityclass.go │ │ │ │ └── scheduling_client.go │ │ │ ├── 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 │ │ │ ├── storage │ │ │ ├── v1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_csidriver.go │ │ │ │ │ ├── fake_csinode.go │ │ │ │ │ ├── fake_csistoragecapacity.go │ │ │ │ │ ├── fake_storage_client.go │ │ │ │ │ ├── fake_storageclass.go │ │ │ │ │ ├── fake_volumeattachment.go │ │ │ │ │ └── fake_volumeattributesclass.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── storage_client.go │ │ │ │ ├── storageclass.go │ │ │ │ ├── volumeattachment.go │ │ │ │ └── volumeattributesclass.go │ │ │ ├── v1alpha1 │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_csistoragecapacity.go │ │ │ │ │ ├── fake_storage_client.go │ │ │ │ │ ├── fake_volumeattachment.go │ │ │ │ │ └── fake_volumeattributesclass.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── storage_client.go │ │ │ │ ├── volumeattachment.go │ │ │ │ └── volumeattributesclass.go │ │ │ └── v1beta1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_csidriver.go │ │ │ │ ├── fake_csinode.go │ │ │ │ ├── fake_csistoragecapacity.go │ │ │ │ ├── fake_storage_client.go │ │ │ │ ├── fake_storageclass.go │ │ │ │ ├── fake_volumeattachment.go │ │ │ │ └── fake_volumeattributesclass.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── storage_client.go │ │ │ │ ├── storageclass.go │ │ │ │ ├── volumeattachment.go │ │ │ │ └── volumeattributesclass.go │ │ │ └── storagemigration │ │ │ └── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_storagemigration_client.go │ │ │ └── fake_storageversionmigration.go │ │ │ ├── generated_expansion.go │ │ │ ├── storagemigration_client.go │ │ │ └── storageversionmigration.go │ ├── listers │ │ ├── admissionregistration │ │ │ ├── v1 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ ├── v1alpha1 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── mutatingadmissionpolicy.go │ │ │ │ ├── mutatingadmissionpolicybinding.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ └── validatingadmissionpolicybinding.go │ │ │ └── v1beta1 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── mutatingadmissionpolicy.go │ │ │ │ ├── mutatingadmissionpolicybinding.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ └── validatingwebhookconfiguration.go │ │ ├── apiserverinternal │ │ │ └── v1alpha1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── storageversion.go │ │ ├── apps │ │ │ ├── v1 │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── daemonset_expansion.go │ │ │ │ ├── deployment.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── replicaset.go │ │ │ │ ├── replicaset_expansion.go │ │ │ │ ├── statefulset.go │ │ │ │ └── statefulset_expansion.go │ │ │ ├── v1beta1 │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── deployment.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── statefulset.go │ │ │ │ └── statefulset_expansion.go │ │ │ └── v1beta2 │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── daemonset_expansion.go │ │ │ │ ├── deployment.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── replicaset.go │ │ │ │ ├── replicaset_expansion.go │ │ │ │ ├── statefulset.go │ │ │ │ └── statefulset_expansion.go │ │ ├── autoscaling │ │ │ ├── v1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ ├── v2 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ ├── v2beta1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ └── v2beta2 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── horizontalpodautoscaler.go │ │ ├── batch │ │ │ ├── v1 │ │ │ │ ├── cronjob.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── job.go │ │ │ │ └── job_expansion.go │ │ │ └── v1beta1 │ │ │ │ ├── cronjob.go │ │ │ │ └── expansion_generated.go │ │ ├── certificates │ │ │ ├── v1 │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ └── expansion_generated.go │ │ │ ├── v1alpha1 │ │ │ │ ├── clustertrustbundle.go │ │ │ │ ├── expansion_generated.go │ │ │ │ └── podcertificaterequest.go │ │ │ └── v1beta1 │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ ├── clustertrustbundle.go │ │ │ │ └── expansion_generated.go │ │ ├── coordination │ │ │ ├── v1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── lease.go │ │ │ ├── v1alpha2 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── leasecandidate.go │ │ │ └── v1beta1 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── lease.go │ │ │ │ └── leasecandidate.go │ │ ├── core │ │ │ └── v1 │ │ │ │ ├── componentstatus.go │ │ │ │ ├── configmap.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── event.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── limitrange.go │ │ │ │ ├── namespace.go │ │ │ │ ├── node.go │ │ │ │ ├── persistentvolume.go │ │ │ │ ├── persistentvolumeclaim.go │ │ │ │ ├── pod.go │ │ │ │ ├── podtemplate.go │ │ │ │ ├── replicationcontroller.go │ │ │ │ ├── replicationcontroller_expansion.go │ │ │ │ ├── resourcequota.go │ │ │ │ ├── secret.go │ │ │ │ ├── service.go │ │ │ │ └── serviceaccount.go │ │ ├── discovery │ │ │ ├── v1 │ │ │ │ ├── endpointslice.go │ │ │ │ └── expansion_generated.go │ │ │ └── v1beta1 │ │ │ │ ├── endpointslice.go │ │ │ │ └── expansion_generated.go │ │ ├── doc.go │ │ ├── events │ │ │ ├── v1 │ │ │ │ ├── event.go │ │ │ │ └── expansion_generated.go │ │ │ └── v1beta1 │ │ │ │ ├── event.go │ │ │ │ └── expansion_generated.go │ │ ├── extensions │ │ │ └── v1beta1 │ │ │ │ ├── daemonset.go │ │ │ │ ├── daemonset_expansion.go │ │ │ │ ├── deployment.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── ingress.go │ │ │ │ ├── networkpolicy.go │ │ │ │ ├── replicaset.go │ │ │ │ └── replicaset_expansion.go │ │ ├── flowcontrol │ │ │ ├── v1 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── flowschema.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ ├── v1beta1 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── flowschema.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ ├── v1beta2 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── flowschema.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ └── v1beta3 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── flowschema.go │ │ │ │ └── prioritylevelconfiguration.go │ │ ├── generic_helpers.go │ │ ├── networking │ │ │ ├── v1 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── ipaddress.go │ │ │ │ ├── networkpolicy.go │ │ │ │ └── servicecidr.go │ │ │ └── v1beta1 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── ipaddress.go │ │ │ │ └── servicecidr.go │ │ ├── node │ │ │ ├── v1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── runtimeclass.go │ │ │ ├── v1alpha1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── runtimeclass.go │ │ │ └── v1beta1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── runtimeclass.go │ │ ├── policy │ │ │ ├── v1 │ │ │ │ ├── eviction.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ └── poddisruptionbudget_expansion.go │ │ │ └── v1beta1 │ │ │ │ ├── eviction.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ └── poddisruptionbudget_expansion.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 │ │ ├── resource │ │ │ ├── v1 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ │ ├── v1alpha3 │ │ │ │ ├── devicetaintrule.go │ │ │ │ └── expansion_generated.go │ │ │ ├── v1beta1 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ │ └── v1beta2 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ ├── scheduling │ │ │ ├── v1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── priorityclass.go │ │ │ ├── v1alpha1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── priorityclass.go │ │ │ └── v1beta1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── priorityclass.go │ │ ├── storage │ │ │ ├── v1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── storageclass.go │ │ │ │ ├── volumeattachment.go │ │ │ │ └── volumeattributesclass.go │ │ │ ├── v1alpha1 │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── volumeattachment.go │ │ │ │ └── volumeattributesclass.go │ │ │ └── v1beta1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── storageclass.go │ │ │ │ ├── volumeattachment.go │ │ │ │ └── volumeattributesclass.go │ │ └── storagemigration │ │ │ └── v1alpha1 │ │ │ ├── expansion_generated.go │ │ │ └── storageversionmigration.go │ ├── openapi │ │ ├── client.go │ │ ├── groupversion.go │ │ └── typeconverter.go │ ├── pkg │ │ ├── apis │ │ │ └── clientauthentication │ │ │ │ ├── doc.go │ │ │ │ ├── install │ │ │ │ └── install.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.defaults.go │ │ │ │ ├── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.defaults.go │ │ │ │ └── zz_generated.deepcopy.go │ │ └── version │ │ │ ├── base.go │ │ │ ├── doc.go │ │ │ └── version.go │ ├── plugin │ │ └── pkg │ │ │ └── client │ │ │ └── auth │ │ │ ├── exec │ │ │ ├── exec.go │ │ │ └── metrics.go │ │ │ ├── gcp │ │ │ └── gcp_stub.go │ │ │ └── oidc │ │ │ └── oidc.go │ ├── rest │ │ ├── .mockery.yaml │ │ ├── client.go │ │ ├── config.go │ │ ├── exec.go │ │ ├── fake │ │ │ └── fake.go │ │ ├── plugin.go │ │ ├── request.go │ │ ├── transport.go │ │ ├── url_utils.go │ │ ├── urlbackoff.go │ │ ├── warnings.go │ │ ├── watch │ │ │ ├── decoder.go │ │ │ └── encoder.go │ │ ├── with_retry.go │ │ └── zz_generated.deepcopy.go │ ├── testing │ │ ├── actions.go │ │ ├── fake.go │ │ ├── fixture.go │ │ └── interface.go │ ├── tools │ │ ├── auth │ │ │ └── clientauth.go │ │ ├── cache │ │ │ ├── controller.go │ │ │ ├── delta_fifo.go │ │ │ ├── doc.go │ │ │ ├── expiration_cache.go │ │ │ ├── expiration_cache_fakes.go │ │ │ ├── fake_custom_store.go │ │ │ ├── fifo.go │ │ │ ├── heap.go │ │ │ ├── index.go │ │ │ ├── listers.go │ │ │ ├── listwatch.go │ │ │ ├── mutation_cache.go │ │ │ ├── mutation_detector.go │ │ │ ├── object-names.go │ │ │ ├── reflector.go │ │ │ ├── reflector_data_consistency_detector.go │ │ │ ├── reflector_metrics.go │ │ │ ├── retry_with_deadline.go │ │ │ ├── shared_informer.go │ │ │ ├── store.go │ │ │ ├── synctrack │ │ │ │ ├── lazy.go │ │ │ │ └── synctrack.go │ │ │ ├── the_real_fifo.go │ │ │ ├── thread_safe_store.go │ │ │ └── undelta_store.go │ │ ├── clientcmd │ │ │ ├── api │ │ │ │ ├── doc.go │ │ │ │ ├── helpers.go │ │ │ │ ├── latest │ │ │ │ │ └── latest.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── v1 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── auth_loaders.go │ │ │ ├── client_config.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── flag.go │ │ │ ├── helpers.go │ │ │ ├── loader.go │ │ │ ├── merge.go │ │ │ ├── merged_client_builder.go │ │ │ ├── overrides.go │ │ │ └── validation.go │ │ ├── internal │ │ │ └── events │ │ │ │ └── interfaces.go │ │ ├── leaderelection │ │ │ ├── healthzadaptor.go │ │ │ ├── leaderelection.go │ │ │ ├── leasecandidate.go │ │ │ ├── metrics.go │ │ │ └── resourcelock │ │ │ │ ├── interface.go │ │ │ │ ├── leaselock.go │ │ │ │ └── multilock.go │ │ ├── metrics │ │ │ └── metrics.go │ │ ├── pager │ │ │ └── pager.go │ │ ├── record │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── events_cache.go │ │ │ ├── fake.go │ │ │ └── util │ │ │ │ └── util.go │ │ └── reference │ │ │ └── ref.go │ ├── transport │ │ ├── cache.go │ │ ├── cache_go118.go │ │ ├── cert_rotation.go │ │ ├── config.go │ │ ├── round_trippers.go │ │ ├── token_source.go │ │ └── transport.go │ └── util │ │ ├── apply │ │ └── apply.go │ │ ├── cert │ │ ├── cert.go │ │ ├── csr.go │ │ ├── io.go │ │ ├── pem.go │ │ └── server_inspection.go │ │ ├── connrotation │ │ └── connrotation.go │ │ ├── consistencydetector │ │ └── data_consistency_detector.go │ │ ├── flowcontrol │ │ ├── backoff.go │ │ └── throttle.go │ │ ├── homedir │ │ └── homedir.go │ │ ├── keyutil │ │ └── key.go │ │ ├── retry │ │ └── util.go │ │ └── workqueue │ │ ├── default_rate_limiters.go │ │ ├── delaying_queue.go │ │ ├── doc.go │ │ ├── metrics.go │ │ ├── parallelizer.go │ │ ├── queue.go │ │ └── rate_limiting_queue.go ├── code-generator │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── SECURITY_CONTACTS │ ├── cmd │ │ ├── applyconfiguration-gen │ │ │ ├── args │ │ │ │ ├── args.go │ │ │ │ └── externaltypes.go │ │ │ ├── generators │ │ │ │ ├── applyconfiguration.go │ │ │ │ ├── internal.go │ │ │ │ ├── jsontagutil.go │ │ │ │ ├── openapi.go │ │ │ │ ├── refgraph.go │ │ │ │ ├── targets.go │ │ │ │ ├── types.go │ │ │ │ └── util.go │ │ │ └── main.go │ │ ├── client-gen │ │ │ ├── README.md │ │ │ ├── args │ │ │ │ ├── args.go │ │ │ │ ├── gvpackages.go │ │ │ │ └── gvtype.go │ │ │ ├── generators │ │ │ │ ├── client_generator.go │ │ │ │ ├── fake │ │ │ │ │ ├── fake_client_generator.go │ │ │ │ │ ├── generator_fake_for_clientset.go │ │ │ │ │ ├── generator_fake_for_group.go │ │ │ │ │ └── generator_fake_for_type.go │ │ │ │ ├── generator_for_clientset.go │ │ │ │ ├── generator_for_expansion.go │ │ │ │ ├── generator_for_group.go │ │ │ │ ├── generator_for_type.go │ │ │ │ ├── scheme │ │ │ │ │ └── generator_for_scheme.go │ │ │ │ └── util │ │ │ │ │ ├── gvpackages.go │ │ │ │ │ └── tags.go │ │ │ ├── main.go │ │ │ └── types │ │ │ │ ├── helpers.go │ │ │ │ └── types.go │ │ ├── conversion-gen │ │ │ ├── args │ │ │ │ └── args.go │ │ │ ├── generators │ │ │ │ └── conversion.go │ │ │ └── main.go │ │ ├── deepcopy-gen │ │ │ ├── args │ │ │ │ └── args.go │ │ │ ├── generators │ │ │ │ └── deepcopy.go │ │ │ └── main.go │ │ ├── defaulter-gen │ │ │ ├── args │ │ │ │ └── args.go │ │ │ ├── generators │ │ │ │ └── defaulter.go │ │ │ └── main.go │ │ ├── go-to-protobuf │ │ │ ├── .gitignore │ │ │ ├── main.go │ │ │ └── protobuf │ │ │ │ ├── cmd.go │ │ │ │ ├── generator.go │ │ │ │ ├── import_tracker.go │ │ │ │ ├── namer.go │ │ │ │ ├── package.go │ │ │ │ ├── parser.go │ │ │ │ └── tags.go │ │ ├── informer-gen │ │ │ ├── args │ │ │ │ └── args.go │ │ │ ├── generators │ │ │ │ ├── factory.go │ │ │ │ ├── factoryinterface.go │ │ │ │ ├── generic.go │ │ │ │ ├── groupinterface.go │ │ │ │ ├── informer.go │ │ │ │ ├── targets.go │ │ │ │ ├── types.go │ │ │ │ └── versioninterface.go │ │ │ └── main.go │ │ ├── lister-gen │ │ │ ├── args │ │ │ │ └── args.go │ │ │ ├── generators │ │ │ │ ├── expansion.go │ │ │ │ └── lister.go │ │ │ └── main.go │ │ └── register-gen │ │ │ ├── args │ │ │ └── args.go │ │ │ ├── generators │ │ │ ├── register_external.go │ │ │ └── targets.go │ │ │ └── main.go │ ├── code-of-conduct.md │ ├── doc.go │ ├── generate-groups.sh │ ├── generate-internal-groups.sh │ ├── kube_codegen.sh │ ├── pkg │ │ ├── namer │ │ │ └── tag-override.go │ │ └── util │ │ │ ├── comments.go │ │ │ └── plural_exceptions.go │ ├── third_party │ │ └── forked │ │ │ └── golang │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ └── reflect │ │ │ └── type.go │ └── tools.go ├── gengo │ └── v2 │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── codetags │ │ ├── extractor.go │ │ ├── parser.go │ │ ├── scanner.go │ │ └── types.go │ │ ├── comments.go │ │ ├── execute.go │ │ ├── generator │ │ ├── doc.go │ │ ├── error_tracker.go │ │ ├── execute.go │ │ ├── generator.go │ │ ├── go_generator.go │ │ ├── import_tracker.go │ │ ├── simple_target.go │ │ └── snippet_writer.go │ │ ├── namer │ │ ├── doc.go │ │ ├── import_tracker.go │ │ ├── namer.go │ │ ├── order.go │ │ └── plural_namer.go │ │ ├── parser │ │ ├── doc.go │ │ ├── parse.go │ │ ├── parse_122.go │ │ └── parse_pre_122.go │ │ └── types │ │ ├── doc.go │ │ └── types.go ├── klog │ └── v2 │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── RELEASE.md │ │ ├── SECURITY.md │ │ ├── SECURITY_CONTACTS │ │ ├── code-of-conduct.md │ │ ├── contextual.go │ │ ├── contextual_slog.go │ │ ├── exit.go │ │ ├── format.go │ │ ├── imports.go │ │ ├── internal │ │ ├── buffer │ │ │ └── buffer.go │ │ ├── clock │ │ │ ├── README.md │ │ │ └── clock.go │ │ ├── dbg │ │ │ └── dbg.go │ │ ├── serialize │ │ │ ├── keyvalues.go │ │ │ ├── keyvalues_no_slog.go │ │ │ └── keyvalues_slog.go │ │ ├── severity │ │ │ └── severity.go │ │ └── sloghandler │ │ │ └── sloghandler_slog.go │ │ ├── k8s_references.go │ │ ├── k8s_references_slog.go │ │ ├── klog.go │ │ ├── klog_file.go │ │ ├── klog_file_others.go │ │ ├── klog_file_windows.go │ │ ├── klogr.go │ │ ├── klogr_slog.go │ │ └── safeptr.go ├── kube-openapi │ ├── LICENSE │ ├── cmd │ │ └── openapi-gen │ │ │ ├── args │ │ │ └── args.go │ │ │ └── openapi-gen.go │ └── pkg │ │ ├── cached │ │ └── cache.go │ │ ├── common │ │ ├── common.go │ │ ├── doc.go │ │ └── interfaces.go │ │ ├── generators │ │ ├── README.md │ │ ├── api_linter.go │ │ ├── config.go │ │ ├── enum.go │ │ ├── extension.go │ │ ├── markers.go │ │ ├── openapi.go │ │ ├── rules │ │ │ ├── doc.go │ │ │ ├── idl_tag.go │ │ │ ├── list_type_streaming_tags.go │ │ │ ├── names_match.go │ │ │ └── omitempty_match_case.go │ │ └── union.go │ │ ├── handler3 │ │ └── handler.go │ │ ├── internal │ │ ├── flags.go │ │ ├── serialization.go │ │ └── third_party │ │ │ └── go-json-experiment │ │ │ └── json │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── arshal.go │ │ │ ├── arshal_any.go │ │ │ ├── arshal_default.go │ │ │ ├── arshal_funcs.go │ │ │ ├── arshal_inlined.go │ │ │ ├── arshal_methods.go │ │ │ ├── arshal_time.go │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ ├── encode.go │ │ │ ├── errors.go │ │ │ ├── fields.go │ │ │ ├── fold.go │ │ │ ├── intern.go │ │ │ ├── pools.go │ │ │ ├── state.go │ │ │ ├── token.go │ │ │ └── value.go │ │ ├── schemaconv │ │ ├── openapi.go │ │ ├── proto_models.go │ │ └── smd.go │ │ ├── spec3 │ │ ├── component.go │ │ ├── encoding.go │ │ ├── example.go │ │ ├── external_documentation.go │ │ ├── fuzz.go │ │ ├── header.go │ │ ├── media_type.go │ │ ├── operation.go │ │ ├── parameter.go │ │ ├── path.go │ │ ├── request_body.go │ │ ├── response.go │ │ ├── security_scheme.go │ │ ├── server.go │ │ └── spec.go │ │ ├── util │ │ ├── proto │ │ │ ├── doc.go │ │ │ ├── document.go │ │ │ ├── document_v3.go │ │ │ └── openapi.go │ │ ├── sets │ │ │ ├── empty.go │ │ │ └── string.go │ │ ├── trie.go │ │ └── util.go │ │ └── validation │ │ └── spec │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── contact_info.go │ │ ├── external_docs.go │ │ ├── gnostic.go │ │ ├── header.go │ │ ├── info.go │ │ ├── items.go │ │ ├── license.go │ │ ├── operation.go │ │ ├── parameter.go │ │ ├── path_item.go │ │ ├── paths.go │ │ ├── ref.go │ │ ├── response.go │ │ ├── responses.go │ │ ├── schema.go │ │ ├── security_scheme.go │ │ ├── swagger.go │ │ └── tag.go └── utils │ ├── LICENSE │ ├── buffer │ └── ring_growing.go │ ├── clock │ ├── README.md │ └── clock.go │ ├── internal │ └── third_party │ │ └── forked │ │ └── golang │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── golang-lru │ │ └── lru.go │ │ └── net │ │ ├── ip.go │ │ └── parse.go │ ├── lru │ └── lru.go │ ├── net │ ├── ipfamily.go │ ├── ipnet.go │ ├── multi_listen.go │ ├── net.go │ ├── parse.go │ └── port.go │ ├── ptr │ ├── README.md │ └── ptr.go │ └── trace │ ├── README.md │ └── trace.go ├── knative.dev ├── hack │ ├── CODE-OF-CONDUCT.md │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── boilerplate.go.txt │ ├── codegen-library.sh │ ├── e2e-tests.sh │ ├── embed.go │ ├── go.work │ ├── go.work.sum │ ├── infra-library.sh │ ├── library.sh │ ├── microbenchmarks.sh │ ├── performance-tests.sh │ ├── presubmit-tests.sh │ ├── release.sh │ └── shellcheck-presubmit.sh ├── networking │ ├── LICENSE │ ├── config │ │ ├── certificate.yaml │ │ ├── config-network.yaml │ │ ├── domain-claim.yaml │ │ ├── ingress.yaml │ │ ├── placeholder.go │ │ └── serverlessservice.yaml │ ├── pkg │ │ ├── apis │ │ │ └── networking │ │ │ │ ├── fieldmask.go │ │ │ │ ├── generic_types.go │ │ │ │ ├── k8s_validation.go │ │ │ │ ├── metadata_validation.go │ │ │ │ ├── ports.go │ │ │ │ ├── register.go │ │ │ │ └── v1alpha1 │ │ │ │ ├── certificate_defaults.go │ │ │ │ ├── certificate_lifecycle.go │ │ │ │ ├── certificate_types.go │ │ │ │ ├── certificate_validation.go │ │ │ │ ├── doc.go │ │ │ │ ├── domainclaim_lifecycle.go │ │ │ │ ├── domainclaim_types.go │ │ │ │ ├── ingress_defaults.go │ │ │ │ ├── ingress_helpers.go │ │ │ │ ├── ingress_lifecycle.go │ │ │ │ ├── ingress_types.go │ │ │ │ ├── ingress_validation.go │ │ │ │ ├── register.go │ │ │ │ ├── serverlessservice_defaults.go │ │ │ │ ├── serverlessservice_lifecycle.go │ │ │ │ ├── serverlessservice_types.go │ │ │ │ ├── serverlessservice_validation.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── client │ │ │ ├── clientset │ │ │ │ └── versioned │ │ │ │ │ ├── clientset.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── clientset_generated.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ │ ├── scheme │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ │ └── typed │ │ │ │ │ └── networking │ │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── certificate.go │ │ │ │ │ ├── clusterdomainclaim.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_certificate.go │ │ │ │ │ ├── fake_clusterdomainclaim.go │ │ │ │ │ ├── fake_ingress.go │ │ │ │ │ ├── fake_networking_client.go │ │ │ │ │ └── fake_serverlessservice.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── networking_client.go │ │ │ │ │ └── serverlessservice.go │ │ │ ├── informers │ │ │ │ └── externalversions │ │ │ │ │ ├── factory.go │ │ │ │ │ ├── generic.go │ │ │ │ │ ├── internalinterfaces │ │ │ │ │ └── factory_interfaces.go │ │ │ │ │ └── networking │ │ │ │ │ ├── interface.go │ │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── certificate.go │ │ │ │ │ ├── clusterdomainclaim.go │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── interface.go │ │ │ │ │ └── serverlessservice.go │ │ │ ├── injection │ │ │ │ ├── client │ │ │ │ │ ├── client.go │ │ │ │ │ └── fake │ │ │ │ │ │ └── fake.go │ │ │ │ ├── informers │ │ │ │ │ ├── factory │ │ │ │ │ │ ├── factory.go │ │ │ │ │ │ └── fake │ │ │ │ │ │ │ └── fake.go │ │ │ │ │ └── networking │ │ │ │ │ │ └── v1alpha1 │ │ │ │ │ │ └── ingress │ │ │ │ │ │ ├── fake │ │ │ │ │ │ └── fake.go │ │ │ │ │ │ └── ingress.go │ │ │ │ └── reconciler │ │ │ │ │ └── networking │ │ │ │ │ └── v1alpha1 │ │ │ │ │ └── ingress │ │ │ │ │ ├── controller.go │ │ │ │ │ ├── reconciler.go │ │ │ │ │ └── state.go │ │ │ └── listers │ │ │ │ └── networking │ │ │ │ └── v1alpha1 │ │ │ │ ├── certificate.go │ │ │ │ ├── clusterdomainclaim.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── ingress.go │ │ │ │ └── serverlessservice.go │ │ ├── config │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── http │ │ │ ├── constants.go │ │ │ ├── error.go │ │ │ ├── header │ │ │ │ └── header.go │ │ │ └── probe │ │ │ │ └── handler.go │ │ ├── ingress │ │ │ ├── doc.go │ │ │ └── ingress.go │ │ └── prober │ │ │ ├── doc.go │ │ │ └── prober.go │ └── test │ │ ├── cleanup.go │ │ ├── clients.go │ │ ├── conformance │ │ └── ingress │ │ │ ├── README.md │ │ │ ├── basic.go │ │ │ ├── class.go │ │ │ ├── grpc.go │ │ │ ├── headers.go │ │ │ ├── hosts.go │ │ │ ├── httpoption.go │ │ │ ├── path.go │ │ │ ├── percentage.go │ │ │ ├── retry.go │ │ │ ├── rewrite.go │ │ │ ├── rule.go │ │ │ ├── run.go │ │ │ ├── timeout.go │ │ │ ├── tls.go │ │ │ ├── update.go │ │ │ ├── util.go │ │ │ ├── visibility.go │ │ │ └── websocket.go │ │ ├── defaultsystem │ │ └── system.go │ │ ├── e2e_constants.go │ │ ├── e2e_flags.go │ │ ├── ingress.go │ │ ├── presubmit-tests.sh │ │ ├── prober.go │ │ ├── test_images │ │ ├── grpc-ping │ │ │ ├── main.go │ │ │ ├── proto │ │ │ │ ├── ping.pb.go │ │ │ │ └── ping.proto │ │ │ └── service.yaml │ │ ├── httpproxy │ │ │ ├── httpproxy.go │ │ │ └── service.yaml │ │ ├── retry │ │ │ ├── main.go │ │ │ └── service.yaml │ │ ├── runtime │ │ │ ├── handlers │ │ │ │ ├── args.go │ │ │ │ ├── cgroup.go │ │ │ │ ├── env.go │ │ │ │ ├── file.go │ │ │ │ ├── file_access_attempt.go │ │ │ │ ├── handler.go │ │ │ │ ├── mount.go │ │ │ │ ├── proc.go │ │ │ │ ├── request.go │ │ │ │ ├── runtime.go │ │ │ │ └── user.go │ │ │ ├── main.go │ │ │ └── service.yaml │ │ ├── timeout │ │ │ ├── service.yaml │ │ │ └── timeout.go │ │ └── wsserver │ │ │ ├── echo.go │ │ │ └── service.yaml │ │ ├── types │ │ └── runtime.go │ │ ├── upload-test-images.sh │ │ └── util.go └── pkg │ ├── LICENSE │ ├── apis │ ├── condition_set.go │ ├── condition_types.go │ ├── contexts.go │ ├── convert.go │ ├── deprecated.go │ ├── doc.go │ ├── duck │ │ ├── ABOUT.md │ │ ├── README.md │ │ ├── cached.go │ │ ├── const.go │ │ ├── doc.go │ │ ├── ducktypes │ │ │ └── ducktypes.go │ │ ├── enqueue.go │ │ ├── interface.go │ │ ├── patch.go │ │ ├── register.go │ │ ├── typed.go │ │ ├── unstructured.go │ │ ├── v1 │ │ │ ├── addressable_types.go │ │ │ ├── auth_types.go │ │ │ ├── binding_types.go │ │ │ ├── cronjob_defaults.go │ │ │ ├── cronjob_types.go │ │ │ ├── cronjob_validation.go │ │ │ ├── destination.go │ │ │ ├── doc.go │ │ │ ├── knative_reference.go │ │ │ ├── kresource_type.go │ │ │ ├── podspec_defaults.go │ │ │ ├── podspec_types.go │ │ │ ├── podspec_validation.go │ │ │ ├── register.go │ │ │ ├── source_types.go │ │ │ ├── status_types.go │ │ │ └── zz_generated.deepcopy.go │ │ └── verify.go │ ├── field_error.go │ ├── interfaces.go │ ├── kind2resource.go │ ├── metadata_validation.go │ ├── url.go │ ├── volatile_time.go │ └── zz_generated.deepcopy.go │ ├── changeset │ ├── commit.go │ └── doc.go │ ├── client │ └── injection │ │ └── kube │ │ ├── client │ │ ├── client.go │ │ └── fake │ │ │ └── fake.go │ │ └── informers │ │ ├── admissionregistration │ │ └── v1 │ │ │ └── validatingwebhookconfiguration │ │ │ └── validatingwebhookconfiguration.go │ │ ├── core │ │ └── v1 │ │ │ ├── endpoints │ │ │ ├── endpoints.go │ │ │ └── fake │ │ │ │ └── fake.go │ │ │ └── pod │ │ │ ├── fake │ │ │ └── fake.go │ │ │ └── pod.go │ │ └── factory │ │ ├── factory.go │ │ └── fake │ │ └── fake.go │ ├── codegen │ └── cmd │ │ └── injection-gen │ │ ├── args │ │ └── args.go │ │ ├── generators │ │ ├── client │ │ │ ├── client.go │ │ │ ├── fake.go │ │ │ └── targets.go │ │ ├── duck │ │ │ ├── duck.go │ │ │ ├── fake_duck.go │ │ │ └── targets.go │ │ ├── factory │ │ │ ├── factory.go │ │ │ ├── fake_factory.go │ │ │ ├── fake_filtered_factory.go │ │ │ ├── filtered_factory.go │ │ │ └── targets.go │ │ ├── informers │ │ │ ├── fake_filtered_informer.go │ │ │ ├── fake_informer.go │ │ │ ├── filtered_informer.go │ │ │ ├── informer.go │ │ │ └── targets.go │ │ ├── packages.go │ │ └── reconciler │ │ │ ├── reconciler_controller.go │ │ │ ├── reconciler_controller_stub.go │ │ │ ├── reconciler_reconciler.go │ │ │ ├── reconciler_reconciler_stub.go │ │ │ ├── reconciler_state.go │ │ │ └── targets.go │ │ ├── main.go │ │ ├── namer │ │ ├── namer.go │ │ └── namesystems.go │ │ └── tags │ │ ├── comment_parser.go │ │ └── tags.go │ ├── configmap │ ├── doc.go │ ├── example.go │ ├── filter.go │ ├── informer │ │ ├── informed_watcher.go │ │ └── synced_callback.go │ ├── load.go │ ├── manual_watcher.go │ ├── parse.go │ ├── parser │ │ └── parse.go │ ├── static_watcher.go │ ├── store.go │ ├── testing │ │ └── configmap.go │ └── watcher.go │ ├── controller │ ├── controller.go │ ├── helper.go │ ├── options.go │ ├── queue_metrics.go │ └── two_lane_queue.go │ ├── environment │ └── client_config.go │ ├── hack │ ├── format-code.sh │ ├── generate-knative.sh │ ├── tools.go │ ├── update-codegen.sh │ ├── update-deps.sh │ └── verify-codegen.sh │ ├── hash │ ├── bucketer.go │ ├── doc.go │ └── hash.go │ ├── injection │ ├── README.md │ ├── clients.go │ ├── clients │ │ └── namespacedkube │ │ │ └── informers │ │ │ ├── core │ │ │ └── v1 │ │ │ │ └── secret │ │ │ │ └── secret.go │ │ │ └── factory │ │ │ └── factory.go │ ├── config.go │ ├── context.go │ ├── doc.go │ ├── ducks.go │ ├── factories.go │ ├── health_check.go │ ├── informers.go │ ├── injection.go │ ├── interface.go │ └── sharedmain │ │ ├── main.go │ │ └── options.go │ ├── kflag │ ├── doc.go │ └── set.go │ ├── kmap │ ├── lookup.go │ └── map.go │ ├── kmeta │ ├── accessor.go │ ├── doc.go │ ├── labels.go │ ├── map.go │ ├── names.go │ ├── owner_references.go │ └── ownerrefable_accessor.go │ ├── kmp │ ├── diff.go │ ├── doc.go │ └── reporters.go │ ├── leaderelection │ ├── chaosduck │ │ └── main.go │ ├── config.go │ ├── context.go │ └── doc.go │ ├── logging │ ├── config.go │ ├── logger.go │ ├── logkey │ │ └── constants.go │ ├── object_encoders.go │ ├── testing │ │ └── util.go │ ├── warning_handler.go │ └── zz_generated.deepcopy.go │ ├── network │ ├── doc.go │ ├── domain.go │ ├── error_handler.go │ ├── h2c.go │ ├── handlers │ │ ├── doc.go │ │ ├── drain.go │ │ └── error.go │ ├── network.go │ └── transports.go │ ├── observability │ ├── attributekey │ │ └── key.go │ ├── config.go │ ├── configmap │ │ └── parse.go │ ├── metrics │ │ ├── config.go │ │ ├── k8s │ │ │ ├── instruments.go │ │ │ ├── noop.go │ │ │ ├── tools.go │ │ │ └── workqueue.go │ │ ├── prometheus │ │ │ └── server.go │ │ ├── prometheus_disabled.go │ │ ├── prometheus_enabled.go │ │ └── provider.go │ ├── resource │ │ └── default.go │ ├── runtime │ │ ├── config.go │ │ ├── doc.go │ │ ├── k8s │ │ │ └── pprof.go │ │ └── pprof.go │ ├── semconv │ │ ├── httpconv │ │ │ └── httpconv.go │ │ └── semconv.go │ └── tracing │ │ ├── config.go │ │ └── provider.go │ ├── ptr │ ├── doc.go │ ├── ptr.go │ └── value.go │ ├── reconciler │ ├── configstore.go │ ├── deletion.go │ ├── events.go │ ├── filter.go │ ├── leader.go │ ├── reconcile_common.go │ ├── retry.go │ └── testing │ │ ├── actions.go │ │ ├── context.go │ │ ├── events.go │ │ ├── generate_name_reactor.go │ │ ├── hooks.go │ │ ├── reactions.go │ │ ├── sorter.go │ │ ├── table.go │ │ ├── tracker.go │ │ └── util.go │ ├── signals │ ├── signal.go │ ├── signal_posix.go │ └── signal_windows.go │ ├── system │ ├── env.go │ └── testing │ │ └── names.go │ ├── test │ ├── README.md │ ├── cleanup.go │ ├── clients.go │ ├── crd.go │ ├── e2e_flags.go │ ├── environment │ │ └── config.go │ ├── ha │ │ └── ha.go │ ├── helpers │ │ ├── dir.go │ │ ├── dryrun.go │ │ ├── error.go │ │ └── name.go │ ├── ingress │ │ └── ingress.go │ ├── kube_checks.go │ ├── logging │ │ └── logging.go │ ├── logstream │ │ ├── README.md │ │ ├── doc.go │ │ ├── interface.go │ │ ├── null.go │ │ └── v2 │ │ │ ├── interface.go │ │ │ └── stream.go │ ├── presubmit-tests.sh │ ├── request.go │ ├── spoof │ │ ├── error_checks.go │ │ ├── request.go │ │ ├── response_checks.go │ │ └── spoof.go │ ├── test-reconciler-codegen.sh │ └── tinterface.go │ ├── tracker │ ├── doc.go │ ├── enqueue.go │ ├── interface.go │ └── zz_generated.deepcopy.go │ ├── version │ └── version.go │ └── webhook │ ├── README.md │ ├── admission.go │ ├── certificates │ ├── certificates.go │ ├── controller.go │ └── resources │ │ ├── certs.go │ │ └── secret.go │ ├── configmaps │ ├── configmaps.go │ └── controller.go │ ├── context.go │ ├── conversion.go │ ├── env.go │ ├── helper.go │ ├── metrics.go │ └── webhook.go ├── modules.txt └── sigs.k8s.io ├── gateway-api ├── LICENSE ├── apis │ ├── v1 │ │ ├── backendtlspolicy_types.go │ │ ├── doc.go │ │ ├── gateway_types.go │ │ ├── gatewayclass_types.go │ │ ├── gatewayclass_types_overrides.go │ │ ├── grpcroute_types.go │ │ ├── httproute_types.go │ │ ├── object_reference_types.go │ │ ├── policy_types.go │ │ ├── shared_types.go │ │ ├── zz_generated.deepcopy.go │ │ └── zz_generated.register.go │ ├── v1alpha2 │ │ ├── doc.go │ │ ├── grpcroute_types.go │ │ ├── object_reference_types.go │ │ ├── policy_types.go │ │ ├── referencegrant_types.go │ │ ├── shared_types.go │ │ ├── tcproute_types.go │ │ ├── tlsroute_types.go │ │ ├── udproute_types.go │ │ ├── zz_generated.deepcopy.go │ │ └── zz_generated.register.go │ ├── v1alpha3 │ │ ├── backendtlspolicy_types.go │ │ ├── doc.go │ │ ├── shared_types.go │ │ ├── tlsroute_types.go │ │ ├── zz_generated.deepcopy.go │ │ └── zz_generated.register.go │ └── v1beta1 │ │ ├── doc.go │ │ ├── gateway_types.go │ │ ├── gatewayclass_types.go │ │ ├── httproute_types.go │ │ ├── object_reference_types.go │ │ ├── referencegrant_types.go │ │ ├── shared_types.go │ │ ├── zz_generated.deepcopy.go │ │ └── zz_generated.register.go ├── apisx │ └── v1alpha1 │ │ ├── doc.go │ │ ├── shared_types.go │ │ ├── xbackendtrafficpolicy_types.go │ │ ├── xlistenerset_types.go │ │ ├── xmesh_types.go │ │ ├── zz_generated.deepcopy.go │ │ └── zz_generated.register.go ├── applyconfiguration │ ├── apis │ │ ├── v1 │ │ │ ├── allowedlisteners.go │ │ │ ├── allowedroutes.go │ │ │ ├── backendobjectreference.go │ │ │ ├── backendref.go │ │ │ ├── backendtlspolicy.go │ │ │ ├── backendtlspolicyspec.go │ │ │ ├── backendtlspolicyvalidation.go │ │ │ ├── commonroutespec.go │ │ │ ├── cookieconfig.go │ │ │ ├── forwardbodyconfig.go │ │ │ ├── fraction.go │ │ │ ├── frontendtlsconfig.go │ │ │ ├── frontendtlsvalidation.go │ │ │ ├── gateway.go │ │ │ ├── gatewaybackendtls.go │ │ │ ├── gatewayclass.go │ │ │ ├── gatewayclassspec.go │ │ │ ├── gatewayclassstatus.go │ │ │ ├── gatewayinfrastructure.go │ │ │ ├── gatewayspec.go │ │ │ ├── gatewayspecaddress.go │ │ │ ├── gatewaystatus.go │ │ │ ├── gatewaystatusaddress.go │ │ │ ├── gatewaytlsconfig.go │ │ │ ├── grpcauthconfig.go │ │ │ ├── grpcbackendref.go │ │ │ ├── grpcheadermatch.go │ │ │ ├── grpcmethodmatch.go │ │ │ ├── grpcroute.go │ │ │ ├── grpcroutefilter.go │ │ │ ├── grpcroutematch.go │ │ │ ├── grpcrouterule.go │ │ │ ├── grpcroutespec.go │ │ │ ├── grpcroutestatus.go │ │ │ ├── httpauthconfig.go │ │ │ ├── httpbackendref.go │ │ │ ├── httpcorsfilter.go │ │ │ ├── httpexternalauthfilter.go │ │ │ ├── httpheader.go │ │ │ ├── httpheaderfilter.go │ │ │ ├── httpheadermatch.go │ │ │ ├── httppathmatch.go │ │ │ ├── httppathmodifier.go │ │ │ ├── httpqueryparammatch.go │ │ │ ├── httprequestmirrorfilter.go │ │ │ ├── httprequestredirectfilter.go │ │ │ ├── httproute.go │ │ │ ├── httproutefilter.go │ │ │ ├── httproutematch.go │ │ │ ├── httprouteretry.go │ │ │ ├── httprouterule.go │ │ │ ├── httproutespec.go │ │ │ ├── httproutestatus.go │ │ │ ├── httproutetimeouts.go │ │ │ ├── httpurlrewritefilter.go │ │ │ ├── listener.go │ │ │ ├── listenernamespaces.go │ │ │ ├── listenerstatus.go │ │ │ ├── listenertlsconfig.go │ │ │ ├── localobjectreference.go │ │ │ ├── localparametersreference.go │ │ │ ├── localpolicytargetreference.go │ │ │ ├── localpolicytargetreferencewithsectionname.go │ │ │ ├── objectreference.go │ │ │ ├── parametersreference.go │ │ │ ├── parentreference.go │ │ │ ├── policyancestorstatus.go │ │ │ ├── policystatus.go │ │ │ ├── routegroupkind.go │ │ │ ├── routenamespaces.go │ │ │ ├── routeparentstatus.go │ │ │ ├── routestatus.go │ │ │ ├── secretobjectreference.go │ │ │ ├── sessionpersistence.go │ │ │ ├── subjectaltname.go │ │ │ ├── supportedfeature.go │ │ │ ├── tlsconfig.go │ │ │ └── tlsportconfig.go │ │ ├── v1alpha2 │ │ │ ├── grpcroute.go │ │ │ ├── localpolicytargetreference.go │ │ │ ├── localpolicytargetreferencewithsectionname.go │ │ │ ├── policyancestorstatus.go │ │ │ ├── policystatus.go │ │ │ ├── referencegrant.go │ │ │ ├── tcproute.go │ │ │ ├── tcprouterule.go │ │ │ ├── tcproutespec.go │ │ │ ├── tcproutestatus.go │ │ │ ├── tlsroute.go │ │ │ ├── tlsrouterule.go │ │ │ ├── tlsroutespec.go │ │ │ ├── tlsroutestatus.go │ │ │ ├── udproute.go │ │ │ ├── udprouterule.go │ │ │ ├── udproutespec.go │ │ │ └── udproutestatus.go │ │ ├── v1alpha3 │ │ │ ├── backendtlspolicy.go │ │ │ ├── backendtlspolicyspec.go │ │ │ ├── backendtlspolicyvalidation.go │ │ │ ├── subjectaltname.go │ │ │ ├── tlsroute.go │ │ │ ├── tlsrouterule.go │ │ │ ├── tlsroutespec.go │ │ │ └── tlsroutestatus.go │ │ └── v1beta1 │ │ │ ├── gateway.go │ │ │ ├── gatewayclass.go │ │ │ ├── httproute.go │ │ │ ├── referencegrant.go │ │ │ ├── referencegrantfrom.go │ │ │ ├── referencegrantspec.go │ │ │ └── referencegrantto.go │ ├── apisx │ │ └── v1alpha1 │ │ │ ├── backendtrafficpolicyspec.go │ │ │ ├── budgetdetails.go │ │ │ ├── listenerentry.go │ │ │ ├── listenerentrystatus.go │ │ │ ├── listenersetspec.go │ │ │ ├── listenersetstatus.go │ │ │ ├── meshspec.go │ │ │ ├── meshstatus.go │ │ │ ├── parentgatewayreference.go │ │ │ ├── requestrate.go │ │ │ ├── retryconstraint.go │ │ │ ├── xbackendtrafficpolicy.go │ │ │ ├── xlistenerset.go │ │ │ └── xmesh.go │ ├── internal │ │ └── internal.go │ └── utils.go └── pkg │ ├── client │ ├── clientset │ │ └── versioned │ │ │ ├── clientset.go │ │ │ ├── fake │ │ │ ├── clientset_generated.go │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ └── typed │ │ │ ├── apis │ │ │ ├── v1 │ │ │ │ ├── apis_client.go │ │ │ │ ├── backendtlspolicy.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_apis_client.go │ │ │ │ │ ├── fake_backendtlspolicy.go │ │ │ │ │ ├── fake_gateway.go │ │ │ │ │ ├── fake_gatewayclass.go │ │ │ │ │ ├── fake_grpcroute.go │ │ │ │ │ └── fake_httproute.go │ │ │ │ ├── gateway.go │ │ │ │ ├── gatewayclass.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── grpcroute.go │ │ │ │ └── httproute.go │ │ │ ├── v1alpha2 │ │ │ │ ├── apis_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_apis_client.go │ │ │ │ │ ├── fake_grpcroute.go │ │ │ │ │ ├── fake_referencegrant.go │ │ │ │ │ ├── fake_tcproute.go │ │ │ │ │ ├── fake_tlsroute.go │ │ │ │ │ └── fake_udproute.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── grpcroute.go │ │ │ │ ├── referencegrant.go │ │ │ │ ├── tcproute.go │ │ │ │ ├── tlsroute.go │ │ │ │ └── udproute.go │ │ │ ├── v1alpha3 │ │ │ │ ├── apis_client.go │ │ │ │ ├── backendtlspolicy.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_apis_client.go │ │ │ │ │ ├── fake_backendtlspolicy.go │ │ │ │ │ └── fake_tlsroute.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── tlsroute.go │ │ │ └── v1beta1 │ │ │ │ ├── apis_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_apis_client.go │ │ │ │ ├── fake_gateway.go │ │ │ │ ├── fake_gatewayclass.go │ │ │ │ ├── fake_httproute.go │ │ │ │ └── fake_referencegrant.go │ │ │ │ ├── gateway.go │ │ │ │ ├── gatewayclass.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── httproute.go │ │ │ │ └── referencegrant.go │ │ │ └── apisx │ │ │ └── v1alpha1 │ │ │ ├── apisx_client.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_apisx_client.go │ │ │ ├── fake_xbackendtrafficpolicy.go │ │ │ ├── fake_xlistenerset.go │ │ │ └── fake_xmesh.go │ │ │ ├── generated_expansion.go │ │ │ ├── xbackendtrafficpolicy.go │ │ │ ├── xlistenerset.go │ │ │ └── xmesh.go │ ├── informers │ │ └── externalversions │ │ │ ├── apis │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── backendtlspolicy.go │ │ │ │ ├── gateway.go │ │ │ │ ├── gatewayclass.go │ │ │ │ ├── grpcroute.go │ │ │ │ ├── httproute.go │ │ │ │ └── interface.go │ │ │ ├── v1alpha2 │ │ │ │ ├── grpcroute.go │ │ │ │ ├── interface.go │ │ │ │ ├── referencegrant.go │ │ │ │ ├── tcproute.go │ │ │ │ ├── tlsroute.go │ │ │ │ └── udproute.go │ │ │ ├── v1alpha3 │ │ │ │ ├── backendtlspolicy.go │ │ │ │ ├── interface.go │ │ │ │ └── tlsroute.go │ │ │ └── v1beta1 │ │ │ │ ├── gateway.go │ │ │ │ ├── gatewayclass.go │ │ │ │ ├── httproute.go │ │ │ │ ├── interface.go │ │ │ │ └── referencegrant.go │ │ │ ├── apisx │ │ │ ├── interface.go │ │ │ └── v1alpha1 │ │ │ │ ├── interface.go │ │ │ │ ├── xbackendtrafficpolicy.go │ │ │ │ ├── xlistenerset.go │ │ │ │ └── xmesh.go │ │ │ ├── factory.go │ │ │ ├── generic.go │ │ │ └── internalinterfaces │ │ │ └── factory_interfaces.go │ └── listers │ │ ├── apis │ │ ├── v1 │ │ │ ├── backendtlspolicy.go │ │ │ ├── expansion_generated.go │ │ │ ├── gateway.go │ │ │ ├── gatewayclass.go │ │ │ ├── grpcroute.go │ │ │ └── httproute.go │ │ ├── v1alpha2 │ │ │ ├── expansion_generated.go │ │ │ ├── grpcroute.go │ │ │ ├── referencegrant.go │ │ │ ├── tcproute.go │ │ │ ├── tlsroute.go │ │ │ └── udproute.go │ │ ├── v1alpha3 │ │ │ ├── backendtlspolicy.go │ │ │ ├── expansion_generated.go │ │ │ └── tlsroute.go │ │ └── v1beta1 │ │ │ ├── expansion_generated.go │ │ │ ├── gateway.go │ │ │ ├── gatewayclass.go │ │ │ ├── httproute.go │ │ │ └── referencegrant.go │ │ └── apisx │ │ └── v1alpha1 │ │ ├── expansion_generated.go │ │ ├── xbackendtrafficpolicy.go │ │ ├── xlistenerset.go │ │ └── xmesh.go │ └── features │ ├── backendtlspolicy.go │ ├── features.go │ ├── gateway.go │ ├── grpcroute.go │ ├── httproute.go │ ├── mesh.go │ ├── referencegrant.go │ ├── tlsroute.go │ └── udproute.go ├── json ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── SECURITY.md ├── SECURITY_CONTACTS ├── code-of-conduct.md ├── doc.go ├── internal │ └── golang │ │ └── encoding │ │ └── json │ │ ├── decode.go │ │ ├── encode.go │ │ ├── fold.go │ │ ├── fuzz.go │ │ ├── indent.go │ │ ├── kubernetes_patch.go │ │ ├── scanner.go │ │ ├── stream.go │ │ ├── tables.go │ │ └── tags.go └── json.go ├── randfill ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── SECURITY_CONTACTS ├── bytesource │ └── bytesource.go ├── code-of-conduct.md └── randfill.go ├── structured-merge-diff └── v6 │ ├── LICENSE │ ├── fieldpath │ ├── doc.go │ ├── element.go │ ├── fromvalue.go │ ├── managers.go │ ├── path.go │ ├── pathelementmap.go │ ├── serialize-pe.go │ ├── serialize.go │ └── set.go │ ├── merge │ ├── conflict.go │ └── update.go │ ├── schema │ ├── doc.go │ ├── elements.go │ ├── equals.go │ └── schemaschema.go │ ├── typed │ ├── compare.go │ ├── doc.go │ ├── helpers.go │ ├── merge.go │ ├── parser.go │ ├── reconcile_schema.go │ ├── remove.go │ ├── tofieldset.go │ ├── typed.go │ └── validate.go │ └── value │ ├── allocator.go │ ├── doc.go │ ├── fields.go │ ├── jsontagutil.go │ ├── list.go │ ├── listreflect.go │ ├── listunstructured.go │ ├── map.go │ ├── mapreflect.go │ ├── mapunstructured.go │ ├── reflectcache.go │ ├── scalar.go │ ├── structreflect.go │ ├── value.go │ ├── valuereflect.go │ └── valueunstructured.go └── yaml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── RELEASE.md ├── SECURITY_CONTACTS ├── code-of-conduct.md ├── fields.go └── yaml.go /.codecov.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/.codecov.yaml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/kind-e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/.github/workflows/kind-e2e.yaml -------------------------------------------------------------------------------- /.github/workflows/knative-dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/.github/workflows/knative-dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/knative-go-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/.github/workflows/knative-go-build.yaml -------------------------------------------------------------------------------- /.github/workflows/knative-go-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/.github/workflows/knative-go-test.yaml -------------------------------------------------------------------------------- /.github/workflows/knative-security.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/.github/workflows/knative-security.yaml -------------------------------------------------------------------------------- /.github/workflows/knative-stale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/.github/workflows/knative-stale.yaml -------------------------------------------------------------------------------- /.github/workflows/knative-style.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/.github/workflows/knative-style.yaml -------------------------------------------------------------------------------- /.github/workflows/knative-verify.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/.github/workflows/knative-verify.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/.golangci.yaml -------------------------------------------------------------------------------- /.ko.yaml: -------------------------------------------------------------------------------- 1 | defaultBaseImage: ghcr.io/wolfi-dev/static:alpine 2 | -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/LICENSE -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/OWNERS -------------------------------------------------------------------------------- /OWNERS_ALIASES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/OWNERS_ALIASES -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/SECURITY.md -------------------------------------------------------------------------------- /cmd/controller/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/cmd/controller/main.go -------------------------------------------------------------------------------- /cmd/webhook/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/cmd/webhook/main.go -------------------------------------------------------------------------------- /config/200-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/config/200-clusterrole.yaml -------------------------------------------------------------------------------- /config/300-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/config/300-controller.yaml -------------------------------------------------------------------------------- /config/400-webhook-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/config/400-webhook-deployment.yaml -------------------------------------------------------------------------------- /config/400-webhook-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/config/400-webhook-secret.yaml -------------------------------------------------------------------------------- /config/400-webhook-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/config/400-webhook-service.yaml -------------------------------------------------------------------------------- /config/500-validating-webhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/config/500-validating-webhook.yaml -------------------------------------------------------------------------------- /config/config-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/config/config-gateway.yaml -------------------------------------------------------------------------------- /docs/.test-version.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/docs/.test-version.template -------------------------------------------------------------------------------- /docs/test-version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/docs/test-version.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/go.sum -------------------------------------------------------------------------------- /hack/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/hack/OWNERS -------------------------------------------------------------------------------- /hack/boilerplate/add-boilerplate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/hack/boilerplate/add-boilerplate.sh -------------------------------------------------------------------------------- /hack/boilerplate/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/hack/boilerplate/boilerplate.go.txt -------------------------------------------------------------------------------- /hack/boilerplate/boilerplate.sh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/hack/boilerplate/boilerplate.sh.txt -------------------------------------------------------------------------------- /hack/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/hack/release.sh -------------------------------------------------------------------------------- /hack/test-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/hack/test-env.sh -------------------------------------------------------------------------------- /hack/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/hack/tools.go -------------------------------------------------------------------------------- /hack/update-codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/hack/update-codegen.sh -------------------------------------------------------------------------------- /hack/update-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/hack/update-deps.sh -------------------------------------------------------------------------------- /hack/verify-codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/hack/verify-codegen.sh -------------------------------------------------------------------------------- /pkg/client/injection/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/pkg/client/injection/client/client.go -------------------------------------------------------------------------------- /pkg/client/injection/client/fake/fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/pkg/client/injection/client/fake/fake.go -------------------------------------------------------------------------------- /pkg/reconciler/ingress/config/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/pkg/reconciler/ingress/config/doc.go -------------------------------------------------------------------------------- /pkg/reconciler/ingress/config/gateway.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/pkg/reconciler/ingress/config/gateway.go -------------------------------------------------------------------------------- /pkg/reconciler/ingress/config/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/pkg/reconciler/ingress/config/store.go -------------------------------------------------------------------------------- /pkg/reconciler/ingress/config/testdata/config-gateway.yaml: -------------------------------------------------------------------------------- 1 | ../../../../../config/config-gateway.yaml -------------------------------------------------------------------------------- /pkg/reconciler/ingress/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/pkg/reconciler/ingress/controller.go -------------------------------------------------------------------------------- /pkg/reconciler/ingress/controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/pkg/reconciler/ingress/controller_test.go -------------------------------------------------------------------------------- /pkg/reconciler/ingress/fixtures_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/pkg/reconciler/ingress/fixtures_test.go -------------------------------------------------------------------------------- /pkg/reconciler/ingress/ingress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/pkg/reconciler/ingress/ingress.go -------------------------------------------------------------------------------- /pkg/reconciler/ingress/ingress_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/pkg/reconciler/ingress/ingress_test.go -------------------------------------------------------------------------------- /pkg/reconciler/ingress/lister.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/pkg/reconciler/ingress/lister.go -------------------------------------------------------------------------------- /pkg/reconciler/ingress/lister_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/pkg/reconciler/ingress/lister_test.go -------------------------------------------------------------------------------- /pkg/reconciler/ingress/resources/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/pkg/reconciler/ingress/resources/helpers.go -------------------------------------------------------------------------------- /pkg/reconciler/testing/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/pkg/reconciler/testing/factory.go -------------------------------------------------------------------------------- /pkg/reconciler/testing/listers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/pkg/reconciler/testing/listers.go -------------------------------------------------------------------------------- /pkg/status/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/pkg/status/status.go -------------------------------------------------------------------------------- /pkg/status/status_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/pkg/status/status_test.go -------------------------------------------------------------------------------- /test/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/test/OWNERS -------------------------------------------------------------------------------- /test/clients.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/test/clients.go -------------------------------------------------------------------------------- /test/config/100-serving-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/test/config/100-serving-namespace.yaml -------------------------------------------------------------------------------- /test/config/100-test-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/test/config/100-test-namespace.yaml -------------------------------------------------------------------------------- /test/config/200-ingress.yaml: -------------------------------------------------------------------------------- 1 | ../../vendor/knative.dev/networking/config/ingress.yaml -------------------------------------------------------------------------------- /test/config/200-service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/test/config/200-service-account.yaml -------------------------------------------------------------------------------- /test/config/201-clusterrole-core.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/test/config/201-clusterrole-core.yaml -------------------------------------------------------------------------------- /test/config/config-network.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/test/config/config-network.yaml -------------------------------------------------------------------------------- /test/config/leader-election.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/test/config/leader-election.yaml -------------------------------------------------------------------------------- /test/conformance/ingress_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/test/conformance/ingress_test.go -------------------------------------------------------------------------------- /test/e2e-common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/test/e2e-common.sh -------------------------------------------------------------------------------- /test/e2e-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/test/e2e-tests.sh -------------------------------------------------------------------------------- /test/e2e/gateway_config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/test/e2e/gateway_config_test.go -------------------------------------------------------------------------------- /test/e2e/testdata/istio-no-service-vis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/test/e2e/testdata/istio-no-service-vis.yaml -------------------------------------------------------------------------------- /test/e2e_constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/test/e2e_constants.go -------------------------------------------------------------------------------- /test/gatewayapi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/test/gatewayapi/README.md -------------------------------------------------------------------------------- /test/gatewayapi/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/test/gatewayapi/go.mod -------------------------------------------------------------------------------- /test/gatewayapi/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/test/gatewayapi/go.sum -------------------------------------------------------------------------------- /test/gatewayapi/knative_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/test/gatewayapi/knative_test.go -------------------------------------------------------------------------------- /test/ha/controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/test/ha/controller_test.go -------------------------------------------------------------------------------- /test/ha/ha.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/test/ha/ha.go -------------------------------------------------------------------------------- /test/presubmit-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/test/presubmit-tests.sh -------------------------------------------------------------------------------- /test/upload-test-images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/test/upload-test-images.sh -------------------------------------------------------------------------------- /test/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/test/util.go -------------------------------------------------------------------------------- /third_party/contour/config-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/third_party/contour/config-gateway.yaml -------------------------------------------------------------------------------- /third_party/contour/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/third_party/contour/config_test.go -------------------------------------------------------------------------------- /third_party/contour/gateway-external.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/third_party/contour/gateway-external.yaml -------------------------------------------------------------------------------- /third_party/contour/gateway-internal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/third_party/contour/gateway-internal.yaml -------------------------------------------------------------------------------- /third_party/envoy-gateway/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/third_party/envoy-gateway/config_test.go -------------------------------------------------------------------------------- /third_party/envoy-gateway/external.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/third_party/envoy-gateway/external.yaml -------------------------------------------------------------------------------- /third_party/envoy-gateway/internal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/third_party/envoy-gateway/internal.yaml -------------------------------------------------------------------------------- /third_party/gateway-api/gateway-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/third_party/gateway-api/gateway-api.yaml -------------------------------------------------------------------------------- /third_party/istio/203-local-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/third_party/istio/203-local-gateway.yaml -------------------------------------------------------------------------------- /third_party/istio/300-gateway-local.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/third_party/istio/300-gateway-local.yaml -------------------------------------------------------------------------------- /third_party/istio/300-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/third_party/istio/300-gateway.yaml -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/beorn7/perks/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/v4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/blang/semver/v4/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/v4/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/blang/semver/v4/json.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/v4/range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/blang/semver/v4/range.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/v4/semver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/blang/semver/v4/semver.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/v4/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/blang/semver/v4/sort.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/v4/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/blang/semver/v4/sql.go -------------------------------------------------------------------------------- /vendor/github.com/blendle/zapdriver/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/blendle/zapdriver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/blendle/zapdriver/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/blendle/zapdriver/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/blendle/zapdriver/core.go -------------------------------------------------------------------------------- /vendor/github.com/blendle/zapdriver/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/blendle/zapdriver/http.go -------------------------------------------------------------------------------- /vendor/github.com/blendle/zapdriver/label.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/blendle/zapdriver/label.go -------------------------------------------------------------------------------- /vendor/github.com/blendle/zapdriver/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/blendle/zapdriver/trace.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/davecgh/go-spew/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/v3/.goconvey: -------------------------------------------------------------------------------- 1 | ignore -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/v3/Srcfile: -------------------------------------------------------------------------------- 1 | {"SkipDirs": ["examples"]} 2 | -------------------------------------------------------------------------------- /vendor/github.com/felixge/httpsnoop/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/felixge/httpsnoop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/felixge/httpsnoop/Makefile -------------------------------------------------------------------------------- /vendor/github.com/felixge/httpsnoop/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/felixge/httpsnoop/docs.go -------------------------------------------------------------------------------- /vendor/github.com/fxamacker/cbor/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/fxamacker/cbor/v2/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/fxamacker/cbor/v2/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/fxamacker/cbor/v2/cache.go -------------------------------------------------------------------------------- /vendor/github.com/fxamacker/cbor/v2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/fxamacker/cbor/v2/doc.go -------------------------------------------------------------------------------- /vendor/github.com/fxamacker/cbor/v2/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/fxamacker/cbor/v2/tag.go -------------------------------------------------------------------------------- /vendor/github.com/fxamacker/cbor/v2/valid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/fxamacker/cbor/v2/valid.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/go-logr/logr/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/go-logr/logr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/go-logr/logr/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/go-logr/logr/SECURITY.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/go-logr/logr/context.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/discard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/go-logr/logr/discard.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/logr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/go-logr/logr/logr.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/slogr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/go-logr/logr/slogr.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/slogsink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/go-logr/logr/slogsink.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/go-logr/stdr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/go-logr/stdr/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/stdr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/go-logr/stdr/stdr.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/zapr/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.swp 3 | -------------------------------------------------------------------------------- /vendor/github.com/go-logr/zapr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/go-logr/zapr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/zapr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/go-logr/zapr/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/zapr/slogzapr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/go-logr/zapr/slogzapr.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/zapr/zapr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/go-logr/zapr/zapr.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/zapr/zapr_slog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/go-logr/zapr/zapr_slog.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/jsonpointer/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/jsonreference/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | vendor 3 | Godeps 4 | .idea 5 | *.out 6 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/go-openapi/swag/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/go-openapi/swag/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/go-openapi/swag/convert.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/go-openapi/swag/doc.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/go-openapi/swag/errors.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/go-openapi/swag/file.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/go-openapi/swag/json.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/loading.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/go-openapi/swag/loading.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/go-openapi/swag/net.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/go-openapi/swag/path.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/split.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/go-openapi/swag/split.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/go-openapi/swag/util.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/go-openapi/swag/yaml.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/gogo/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/gogo/protobuf/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/gogo/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/gogo/protobuf/proto/lib.go -------------------------------------------------------------------------------- /vendor/github.com/google/go-cmp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/google/go-cmp/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/go-cmp/cmp/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/google/go-cmp/cmp/path.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/google/uuid/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/google/uuid/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/google/uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/google/uuid/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/google/uuid/dce.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/google/uuid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/google/uuid/hash.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/google/uuid/marshal.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/google/uuid/node.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node_js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/google/uuid/node_js.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node_net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/google/uuid/node_net.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/null.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/google/uuid/null.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/google/uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/google/uuid/time.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/google/uuid/util.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/google/uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/google/uuid/version1.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/google/uuid/version4.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/google/uuid/version6.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version7.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/google/uuid/version7.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/gorilla/websocket/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/gorilla/websocket/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/gorilla/websocket/conn.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/gorilla/websocket/doc.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/join.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/gorilla/websocket/join.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/gorilla/websocket/json.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/mask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/gorilla/websocket/mask.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/gorilla/websocket/proxy.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/gorilla/websocket/util.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/golang-lru/2q.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/hashicorp/golang-lru/2q.go -------------------------------------------------------------------------------- /vendor/github.com/josharian/intern/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/josharian/intern/README.md -------------------------------------------------------------------------------- /vendor/github.com/josharian/intern/intern.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/josharian/intern/intern.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/knative-extensions/net-gateway-api/HEAD/vendor/github.com/json-iterator/go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/json-iterator/go/README.md -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/json-iterator/go/any.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/json-iterator/go/build.sh -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/json-iterator/go/config.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/json-iterator/go/iter.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/json-iterator/go/pool.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/json-iterator/go/stream.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/json-iterator/go/test.sh -------------------------------------------------------------------------------- /vendor/github.com/mailru/easyjson/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/mailru/easyjson/LICENSE -------------------------------------------------------------------------------- /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/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/modern-go/reflect2/LICENSE -------------------------------------------------------------------------------- /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/munnerz/goautoneg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/munnerz/goautoneg/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/munnerz/goautoneg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/munnerz/goautoneg/Makefile -------------------------------------------------------------------------------- /vendor/github.com/pmezard/go-difflib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/pmezard/go-difflib/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_golang/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | command-line-arguments.test 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/prometheus/common/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/prometheus/common/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/prometheus/procfs/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/prometheus/procfs/Makefile -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/prometheus/procfs/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/arp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/prometheus/procfs/arp.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/prometheus/procfs/doc.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/prometheus/procfs/fs.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/ipvs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/prometheus/procfs/ipvs.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/proc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/prometheus/procfs/proc.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/slab.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/prometheus/procfs/slab.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/prometheus/procfs/stat.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/swaps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/prometheus/procfs/swaps.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/ttar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/prometheus/procfs/ttar -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/prometheus/procfs/vm.go -------------------------------------------------------------------------------- /vendor/github.com/rs/dnscache/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/rs/dnscache/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/rs/dnscache/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/rs/dnscache/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/rs/dnscache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/rs/dnscache/README.md -------------------------------------------------------------------------------- /vendor/github.com/rs/dnscache/dnscache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/rs/dnscache/dnscache.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/spf13/pflag/.editorconfig -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/spf13/pflag/.golangci.yaml -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/spf13/pflag/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/spf13/pflag/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool_func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/spf13/pflag/bool_func.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/spf13/pflag/bool_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/spf13/pflag/bytes.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/spf13/pflag/duration.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/spf13/pflag/errors.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/spf13/pflag/float32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/spf13/pflag/float64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/spf13/pflag/func.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/golangflag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/spf13/pflag/golangflag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/spf13/pflag/int16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int32_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/spf13/pflag/int32_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int64_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/spf13/pflag/int64_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/spf13/pflag/int_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/spf13/pflag/ip_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipmask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/spf13/pflag/ipmask.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipnet_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/spf13/pflag/ipnet_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/spf13/pflag/string.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/spf13/pflag/text.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/spf13/pflag/time.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/spf13/pflag/uint16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/spf13/pflag/uint32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/spf13/pflag/uint64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /vendor/github.com/x448/float16/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/x448/float16/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/x448/float16/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/x448/float16/README.md -------------------------------------------------------------------------------- /vendor/github.com/x448/float16/float16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/github.com/x448/float16/float16.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.opentelemetry.io/otel/LICENSE -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.opentelemetry.io/otel/Makefile -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.opentelemetry.io/otel/README.md -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.opentelemetry.io/otel/doc.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.opentelemetry.io/otel/metric.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/requirements.txt: -------------------------------------------------------------------------------- 1 | codespell==2.4.1 2 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.opentelemetry.io/otel/trace.go -------------------------------------------------------------------------------- /vendor/go.uber.org/automaxprocs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/automaxprocs/LICENSE -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/multierr/.codecov.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/multierr/.gitignore -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/multierr/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/multierr/LICENSE.txt -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/multierr/Makefile -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/multierr/README.md -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/multierr/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/.codecov.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/.gitignore -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/.golangci.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.readme.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/.readme.tmpl -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/FAQ.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/LICENSE -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/Makefile -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/README.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/array.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/buffer/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/buffer/buffer.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/buffer/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/buffer/pool.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/checklicense.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/checklicense.sh -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/config.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/encoder.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/field.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/flag.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/glide.yaml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/global.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/http_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/http_handler.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/level.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/logger.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/options.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/sink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/sink.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/sugar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/sugar.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/time.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/writer.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/clock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/zapcore/clock.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/zapcore/core.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/zapcore/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/zapcore/encoder.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/zapcore/entry.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/zapcore/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/zapcore/field.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/zapcore/hook.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/zapcore/level.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/sampler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/zapcore/sampler.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/tee.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/zapcore/tee.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zaptest/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/zaptest/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zaptest/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/zaptest/logger.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zaptest/timeout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/zaptest/timeout.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zaptest/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.uber.org/zap/zaptest/writer.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.yaml.in/yaml/v2/.travis.yml -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.yaml.in/yaml/v2/LICENSE -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.yaml.in/yaml/v2/LICENSE.libyaml -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.yaml.in/yaml/v2/NOTICE -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.yaml.in/yaml/v2/README.md -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.yaml.in/yaml/v2/apic.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.yaml.in/yaml/v2/decode.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.yaml.in/yaml/v2/emitterc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.yaml.in/yaml/v2/encode.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.yaml.in/yaml/v2/parserc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.yaml.in/yaml/v2/readerc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.yaml.in/yaml/v2/resolve.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.yaml.in/yaml/v2/scannerc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.yaml.in/yaml/v2/sorter.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.yaml.in/yaml/v2/writerc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.yaml.in/yaml/v2/yaml.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.yaml.in/yaml/v2/yamlh.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.yaml.in/yaml/v2/yamlprivateh.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.yaml.in/yaml/v3/LICENSE -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.yaml.in/yaml/v3/NOTICE -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.yaml.in/yaml/v3/README.md -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.yaml.in/yaml/v3/apic.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.yaml.in/yaml/v3/decode.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.yaml.in/yaml/v3/emitterc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.yaml.in/yaml/v3/encode.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.yaml.in/yaml/v3/parserc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.yaml.in/yaml/v3/readerc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.yaml.in/yaml/v3/resolve.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.yaml.in/yaml/v3/scannerc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.yaml.in/yaml/v3/sorter.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.yaml.in/yaml/v3/writerc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.yaml.in/yaml/v3/yaml.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.yaml.in/yaml/v3/yamlh.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/go.yaml.in/yaml/v3/yamlprivateh.go -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/mod/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/mod/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/module/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/mod/module/module.go -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/module/pseudo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/mod/module/pseudo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/semver/semver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/mod/semver/semver.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/ascii.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/net/http2/ascii.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/ciphers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/net/http2/ciphers.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/net/http2/config.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/gotrack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/net/http2/gotrack.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2c/h2c.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/net/http2/h2c/h2c.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/go118.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/net/idna/go118.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/idna9.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/net/idna/idna9.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/pre_go118.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/net/idna/pre_go118.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/punycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/net/idna/punycode.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/dial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/net/proxy/dial.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/direct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/net/proxy/direct.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/per_host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/net/proxy/per_host.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/net/proxy/proxy.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/socks5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/net/proxy/socks5.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/net/trace/events.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/oauth2/.travis.yml -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/oauth2/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/oauth2/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/deviceauth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/oauth2/deviceauth.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/oauth2/oauth2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/pkce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/oauth2/pkce.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/oauth2/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/oauth2/transport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/sync/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/sync/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/sys/plan9/asm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/sys/plan9/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/sys/plan9/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/sys/plan9/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/sys/plan9/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/sys/plan9/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/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/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/sys/unix/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/auxv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/sys/unix/auxv.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/bpxsvc_zos.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/sys/unix/bpxsvc_zos.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/sys/unix/dev_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/sys/unix/dev_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fdset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/sys/unix/fdset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ioctl_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/sys/unix/ioctl_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mremap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/sys/unix/mremap.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/xattr_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/sys/unix/xattr_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/term/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/term/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/term/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/term/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/term/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/term/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/term/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/term/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/term/term.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/term/term_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/term/term_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term_unix_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/term/term_unix_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/term/term_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/terminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/term/terminal.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/cases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/text/cases/cases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/text/cases/context.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/fold.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/text/cases/fold.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/icu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/text/cases/icu.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/text/cases/info.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/text/cases/map.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/text/cases/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/text/language/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/text/language/tags.go -------------------------------------------------------------------------------- /vendor/golang.org/x/time/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/time/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/time/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/time/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/rate/rate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/time/rate/rate.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/tools/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/golang.org/x/tools/PATENTS -------------------------------------------------------------------------------- /vendor/gomodules.xyz/jsonpatch/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/gomodules.xyz/jsonpatch/v2/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/google.golang.org/grpc/Makefile -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/google.golang.org/grpc/NOTICE.txt -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/google.golang.org/grpc/README.md -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/google.golang.org/grpc/SECURITY.md -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/backoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/google.golang.org/grpc/backoff.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/google.golang.org/grpc/call.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/google.golang.org/grpc/codec.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/google.golang.org/grpc/doc.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/rpc_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/google.golang.org/grpc/rpc_util.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/google.golang.org/grpc/server.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/google.golang.org/grpc/stream.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/tap/tap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/google.golang.org/grpc/tap/tap.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/google.golang.org/grpc/trace.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/google.golang.org/grpc/version.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/google.golang.org/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/google.golang.org/protobuf/PATENTS -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/gopkg.in/inf.v0/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/dec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/gopkg.in/inf.v0/dec.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/rounder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/gopkg.in/inf.v0/rounder.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/gopkg.in/yaml.v2/LICENSE.libyaml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/gopkg.in/yaml.v2/yamlprivateh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/gopkg.in/yaml.v3/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/gopkg.in/yaml.v3/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/gopkg.in/yaml.v3/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/gopkg.in/yaml.v3/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/gopkg.in/yaml.v3/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/gopkg.in/yaml.v3/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/gopkg.in/yaml.v3/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/gopkg.in/yaml.v3/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/gopkg.in/yaml.v3/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/gopkg.in/yaml.v3/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/gopkg.in/yaml.v3/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/gopkg.in/yaml.v3/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/gopkg.in/yaml.v3/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/gopkg.in/yaml.v3/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/gopkg.in/yaml.v3/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/gopkg.in/yaml.v3/yamlprivateh.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/api/admission/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/admission/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/admission/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/admission/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apidiscovery/v2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/apidiscovery/v2/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/apps/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/apps/v1/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/apps/v1/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/apps/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/apps/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/apps/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/apps/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/apps/v1beta2/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta2/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/apps/v1beta2/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/authorization/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/authorization/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/autoscaling/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/autoscaling/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/autoscaling/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/autoscaling/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/autoscaling/v2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/autoscaling/v2/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/autoscaling/v2/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/autoscaling/v2/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/batch/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/batch/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/batch/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/batch/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/batch/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/certificates/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/certificates/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/coordination/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/coordination/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/core/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/core/v1/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/core/v1/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/lifecycle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/core/v1/lifecycle.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/core/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/core/v1/resource.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/taint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/core/v1/taint.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/toleration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/core/v1/toleration.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/core/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/discovery/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/discovery/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/discovery/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/discovery/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/events/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/events/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/events/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/events/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/events/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/flowcontrol/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/flowcontrol/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/flowcontrol/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/flowcontrol/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/networking/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/networking/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/networking/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/networking/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/node/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/node/v1/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/node/v1/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/node/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/node/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/node/v1alpha1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1alpha1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/node/v1alpha1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/node/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/node/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/policy/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/policy/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/policy/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/policy/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/policy/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/rbac/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/rbac/v1/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/rbac/v1/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/rbac/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/rbac/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/rbac/v1alpha1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1alpha1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/rbac/v1alpha1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/rbac/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/rbac/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/resource/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/resource/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/resource/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/resource/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/resource/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/resource/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/resource/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/resource/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/resource/v1beta2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/resource/v1beta2/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/scheduling/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/scheduling/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/scheduling/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/scheduling/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/storage/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/storage/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/storage/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/storage/v1alpha1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/api/storage/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/apimachinery/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/client-go/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/discovery/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/client-go/discovery/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/dynamic/scheme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/client-go/dynamic/scheme.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/dynamic/simple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/client-go/dynamic/simple.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/gentype/fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/client-go/gentype/fake.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/gentype/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/client-go/gentype/type.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/informers/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/client-go/informers/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/kubernetes/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/client-go/kubernetes/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/listers/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/client-go/listers/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/openapi/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/client-go/openapi/client.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/client-go/rest/client.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/client-go/rest/config.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/client-go/rest/exec.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/fake/fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/client-go/rest/fake/fake.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/client-go/rest/plugin.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/client-go/rest/request.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/client-go/rest/transport.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/url_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/client-go/rest/url_utils.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/warnings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/client-go/rest/warnings.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/testing/fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/client-go/testing/fake.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/cert/cert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/client-go/util/cert/cert.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/cert/csr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/client-go/util/cert/csr.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/cert/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/client-go/util/cert/io.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/cert/pem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/client-go/util/cert/pem.go -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/code-generator/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/code-generator/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/cmd/go-to-protobuf/.gitignore: -------------------------------------------------------------------------------- 1 | go-to-protobuf 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/code-generator/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/code-generator/tools.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/gengo/v2/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/gengo/v2/Makefile -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/gengo/v2/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/codetags/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/gengo/v2/codetags/parser.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/codetags/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/gengo/v2/codetags/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/comments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/gengo/v2/comments.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/execute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/gengo/v2/execute.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/generator/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/gengo/v2/generator/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/namer/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/gengo/v2/namer/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/namer/namer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/gengo/v2/namer/namer.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/namer/order.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/gengo/v2/namer/order.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/parser/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/gengo/v2/parser/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/parser/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/gengo/v2/parser/parse.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/types/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/gengo/v2/types/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/gengo/v2/types/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/klog/v2/.gitignore -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/klog/v2/.golangci.yaml -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/klog/v2/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/klog/v2/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/klog/v2/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/klog/v2/RELEASE.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/klog/v2/SECURITY.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/SECURITY_CONTACTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/klog/v2/SECURITY_CONTACTS -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/klog/v2/code-of-conduct.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/contextual.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/klog/v2/contextual.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/contextual_slog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/klog/v2/contextual_slog.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/exit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/klog/v2/exit.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/klog/v2/format.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/imports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/klog/v2/imports.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/internal/dbg/dbg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/klog/v2/internal/dbg/dbg.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/k8s_references.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/klog/v2/k8s_references.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/klog/v2/klog.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/klog/v2/klog_file.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog_file_others.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/klog/v2/klog_file_others.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klogr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/klog/v2/klogr.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klogr_slog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/klog/v2/klogr_slog.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/safeptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/klog/v2/safeptr.go -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/kube-openapi/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/pkg/validation/spec/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/utils/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/utils/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/utils/clock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/utils/clock/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/clock/clock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/utils/clock/clock.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/lru/lru.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/utils/lru/lru.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/ipfamily.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/utils/net/ipfamily.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/utils/net/ipnet.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/multi_listen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/utils/net/multi_listen.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/utils/net/net.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/utils/net/parse.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/port.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/utils/net/port.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/ptr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/utils/ptr/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/ptr/ptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/utils/ptr/ptr.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/trace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/utils/trace/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/k8s.io/utils/trace/trace.go -------------------------------------------------------------------------------- /vendor/knative.dev/hack/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/hack/LICENSE -------------------------------------------------------------------------------- /vendor/knative.dev/hack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/hack/README.md -------------------------------------------------------------------------------- /vendor/knative.dev/hack/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/hack/SECURITY.md -------------------------------------------------------------------------------- /vendor/knative.dev/hack/e2e-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/hack/e2e-tests.sh -------------------------------------------------------------------------------- /vendor/knative.dev/hack/embed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/hack/embed.go -------------------------------------------------------------------------------- /vendor/knative.dev/hack/go.work: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/hack/go.work -------------------------------------------------------------------------------- /vendor/knative.dev/hack/go.work.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/hack/go.work.sum -------------------------------------------------------------------------------- /vendor/knative.dev/hack/infra-library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/hack/infra-library.sh -------------------------------------------------------------------------------- /vendor/knative.dev/hack/library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/hack/library.sh -------------------------------------------------------------------------------- /vendor/knative.dev/hack/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/hack/release.sh -------------------------------------------------------------------------------- /vendor/knative.dev/networking/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/networking/LICENSE -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/LICENSE -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/apis/contexts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/apis/contexts.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/apis/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/apis/convert.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/apis/deprecated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/apis/deprecated.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/apis/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/apis/doc.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/apis/duck/ABOUT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/apis/duck/ABOUT.md -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/apis/duck/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/apis/duck/const.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/apis/duck/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/apis/duck/doc.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/apis/duck/patch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/apis/duck/patch.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/apis/duck/typed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/apis/duck/typed.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/apis/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/apis/interfaces.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/apis/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/apis/url.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/changeset/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/changeset/doc.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/configmap/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/configmap/doc.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/configmap/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/configmap/load.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/configmap/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/configmap/parse.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/configmap/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/configmap/store.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/hack/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/hack/tools.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/hash/bucketer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/hash/bucketer.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/hash/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/hash/doc.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/hash/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/hash/hash.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/injection/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/injection/doc.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/injection/ducks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/injection/ducks.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/kflag/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/kflag/doc.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/kflag/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/kflag/set.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/kmap/lookup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/kmap/lookup.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/kmap/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/kmap/map.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/kmeta/accessor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/kmeta/accessor.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/kmeta/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/kmeta/doc.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/kmeta/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/kmeta/labels.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/kmeta/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/kmeta/map.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/kmeta/names.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/kmeta/names.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/kmp/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/kmp/diff.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/kmp/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/kmp/doc.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/kmp/reporters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/kmp/reporters.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/logging/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/logging/config.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/logging/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/logging/logger.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/network/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/network/doc.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/network/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/network/domain.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/network/h2c.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/network/h2c.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/network/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/network/network.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/ptr/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/ptr/doc.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/ptr/ptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/ptr/ptr.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/ptr/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/ptr/value.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/signals/signal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/signals/signal.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/system/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/system/env.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/test/README.md -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/test/cleanup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/test/cleanup.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/test/clients.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/test/clients.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/test/crd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/test/crd.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/test/e2e_flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/test/e2e_flags.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/test/ha/ha.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/test/ha/ha.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/test/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/test/request.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/test/tinterface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/test/tinterface.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/tracker/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/tracker/doc.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/tracker/enqueue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/tracker/enqueue.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/version/version.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/webhook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/webhook/README.md -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/webhook/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/webhook/context.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/webhook/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/webhook/env.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/webhook/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/webhook/helper.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/webhook/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/webhook/metrics.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/webhook/webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/knative.dev/pkg/webhook/webhook.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/modules.txt -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/gateway-api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/sigs.k8s.io/gateway-api/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/sigs.k8s.io/json/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/sigs.k8s.io/json/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/sigs.k8s.io/json/Makefile -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/sigs.k8s.io/json/README.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/sigs.k8s.io/json/SECURITY.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/SECURITY_CONTACTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/sigs.k8s.io/json/SECURITY_CONTACTS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/sigs.k8s.io/json/doc.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/sigs.k8s.io/json/json.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/randfill/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/sigs.k8s.io/randfill/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/randfill/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/sigs.k8s.io/randfill/NOTICE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/randfill/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/sigs.k8s.io/randfill/README.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/randfill/randfill.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/sigs.k8s.io/randfill/randfill.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/sigs.k8s.io/yaml/.gitignore -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/sigs.k8s.io/yaml/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/sigs.k8s.io/yaml/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/sigs.k8s.io/yaml/README.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/sigs.k8s.io/yaml/RELEASE.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/SECURITY_CONTACTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/sigs.k8s.io/yaml/SECURITY_CONTACTS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/sigs.k8s.io/yaml/fields.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative-extensions/net-gateway-api/HEAD/vendor/sigs.k8s.io/yaml/yaml.go --------------------------------------------------------------------------------