├── .dockerignore ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── ci.yaml │ ├── codeql.yml │ ├── develop.yaml │ ├── e2e.yaml │ ├── images.yaml │ ├── latest.yaml │ ├── release.yaml │ └── versions.yaml ├── .gitignore ├── .golangci.yml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── Makefile ├── README.md ├── SECURITY.md ├── charts └── terranetes-controller │ ├── Chart.yaml │ ├── crds │ ├── terraform.appvia.io_cloudresources.yaml │ ├── terraform.appvia.io_configurations.yaml │ ├── terraform.appvia.io_contexts.yaml │ ├── terraform.appvia.io_plans.yaml │ ├── terraform.appvia.io_policies.yaml │ ├── terraform.appvia.io_providers.yaml │ └── terraform.appvia.io_revisions.yaml │ ├── templates │ ├── _helpers.tpl │ ├── backend.yaml │ ├── ca.yaml │ ├── deployment.yaml │ ├── network.yaml │ ├── policies.yaml │ ├── providers.yaml │ ├── rbac.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ └── webhooks.yaml │ └── values.yaml ├── cmd ├── controller │ └── main.go ├── preload │ └── main.go ├── source │ ├── source.go │ └── source_test.go ├── step │ ├── main.go │ └── types.go └── tnctl │ └── main.go ├── docs ├── development.md └── images │ ├── logo-blue.png │ ├── logo-white.png │ └── terranetes-controller-arch.png ├── examples ├── checkov-all.yaml ├── cloudresource.yaml ├── configuration.yaml ├── contexts.yaml ├── policy.yaml ├── provider-secrets.yaml ├── provider.yaml └── revision.yaml ├── go.mod ├── go.sum ├── hack ├── boilerplate.go.txt ├── create-development.sh ├── gofmt.sh ├── install-trivy.sh ├── patch-crd-gen.sh ├── replace_modtime.sh ├── retry.sh └── verify-codegen.sh ├── images ├── Dockerfile.cli ├── Dockerfile.controller ├── Dockerfile.executor └── assets │ ├── ssh_config │ └── watch_logs.sh ├── pkg ├── apis │ ├── core │ │ └── v1alpha1 │ │ │ ├── condition_types.go │ │ │ ├── doc.go │ │ │ ├── status_types.go │ │ │ └── zz_generated.deepcopy.go │ └── terraform │ │ └── v1alpha1 │ │ ├── cloudresource_conditions.go │ │ ├── cloudresource_types.go │ │ ├── configuration_conditions.go │ │ ├── configuration_types.go │ │ ├── constraint_types.go │ │ ├── context_conditions.go │ │ ├── context_types.go │ │ ├── doc.go │ │ ├── plan_conditions.go │ │ ├── plan_types.go │ │ ├── policy_types.go │ │ ├── provider_types.go │ │ ├── providers_conditions.go │ │ ├── revision_conditions.go │ │ ├── revision_types.go │ │ ├── zz_generated.deepcopy.go │ │ └── zz_generated_register.go ├── apiserver │ ├── handlers.go │ ├── logging │ │ ├── filter.go │ │ ├── filter_test.go │ │ └── metrics.go │ ├── recovery │ │ ├── filter.go │ │ └── filter_test.go │ ├── server.go │ └── server_test.go ├── assets │ ├── assets.go │ ├── assets_test.go │ ├── job.yaml.tpl │ └── preload.yaml.tpl ├── cmd │ ├── config.go │ ├── config_test.go │ ├── errors.go │ ├── errors_test.go │ ├── factory.go │ ├── factory_test.go │ ├── helper.go │ ├── icons.go │ ├── option.go │ ├── preload │ │ ├── command.go │ │ ├── context.go │ │ ├── preload.go │ │ └── types.go │ ├── search │ │ ├── github │ │ │ └── github.go │ │ ├── terraform │ │ │ ├── registry.go │ │ │ ├── registry_test.go │ │ │ └── types.go │ │ └── types.go │ ├── tnctl │ │ ├── apply │ │ │ └── apply.go │ │ ├── approve │ │ │ ├── approve.go │ │ │ ├── approve_test.go │ │ │ ├── cloudresource.go │ │ │ └── configuration.go │ │ ├── config │ │ │ ├── config.go │ │ │ ├── config_test.go │ │ │ ├── sources.go │ │ │ ├── sources_add.go │ │ │ ├── sources_list.go │ │ │ ├── sources_remove.go │ │ │ ├── sources_test.go │ │ │ ├── view.go │ │ │ └── view_test.go │ │ ├── convert │ │ │ ├── cloudresource.go │ │ │ ├── configuration.go │ │ │ ├── configuration_test.go │ │ │ ├── convert.go │ │ │ ├── convert_test.go │ │ │ └── revision.go │ │ ├── create │ │ │ ├── assets │ │ │ │ ├── assets.go │ │ │ │ ├── assets_test.go │ │ │ │ └── tnctl.revision.yaml.tpl │ │ │ ├── cloudresource.go │ │ │ ├── cloudresource_test.go │ │ │ ├── configuration │ │ │ │ └── build.go │ │ │ ├── create.go │ │ │ ├── helper.go │ │ │ ├── revision.go │ │ │ ├── types.go │ │ │ └── workflow │ │ │ │ └── workflow.go │ │ ├── delete │ │ │ └── delete.go │ │ ├── describe │ │ │ ├── assets │ │ │ │ ├── assets.go │ │ │ │ ├── assets_test.go │ │ │ │ └── describe.yaml.tpl │ │ │ ├── cloudresource.go │ │ │ ├── configuration.go │ │ │ └── describe.go │ │ ├── generate │ │ │ ├── docs.go │ │ │ └── generate.go │ │ ├── get │ │ │ ├── generic.go │ │ │ └── get.go │ │ ├── kubectl │ │ │ ├── kubectl.go │ │ │ ├── kubectl_test.go │ │ │ ├── plugin.go │ │ │ ├── plugin_test.go │ │ │ └── suite_test.go │ │ ├── logs │ │ │ ├── cloudresource.go │ │ │ ├── configuration.go │ │ │ ├── logs.go │ │ │ └── logs_test.go │ │ ├── retry │ │ │ ├── cloudresource.go │ │ │ ├── configuration.go │ │ │ ├── retry.go │ │ │ └── retry_test.go │ │ ├── search │ │ │ └── search.go │ │ ├── state │ │ │ ├── clean.go │ │ │ ├── get.go │ │ │ ├── helper.go │ │ │ ├── list.go │ │ │ ├── list_test.go │ │ │ ├── state.go │ │ │ └── suite_test.go │ │ ├── tnctl.go │ │ ├── tnctl_test.go │ │ └── verify │ │ │ ├── checks.go │ │ │ ├── revision.go │ │ │ └── verify.go │ ├── types.go │ └── types_test.go ├── controller │ ├── cloudresource │ │ ├── controller.go │ │ ├── delete.go │ │ ├── delete_test.go │ │ ├── ensure.go │ │ ├── metrics.go │ │ ├── reconcile.go │ │ └── reconcile_test.go │ ├── conditions.go │ ├── configuration │ │ ├── controller.go │ │ ├── delete.go │ │ ├── delete_test.go │ │ ├── detect_errors.go │ │ ├── ensure.go │ │ ├── helper.go │ │ ├── helper_test.go │ │ ├── metrics.go │ │ ├── reconcile.go │ │ └── reconcile_test.go │ ├── context │ │ └── controller.go │ ├── drift │ │ ├── controller.go │ │ ├── ensure.go │ │ ├── reconcile.go │ │ └── reconcile_test.go │ ├── ensure.go │ ├── ensure_test.go │ ├── expire │ │ ├── controller.go │ │ ├── ensure.go │ │ ├── reconcile.go │ │ └── reconcile_test.go │ ├── finalizers.go │ ├── namespace │ │ └── controller.go │ ├── plan │ │ ├── controller.go │ │ ├── ensure.go │ │ ├── reconcile.go │ │ └── reconcile_test.go │ ├── policy │ │ └── controller.go │ ├── predicate.go │ ├── predicate_test.go │ ├── preload │ │ ├── controller.go │ │ ├── ensure.go │ │ ├── metrics.go │ │ ├── reconcile.go │ │ └── reconcile_test.go │ ├── provider │ │ ├── controller.go │ │ ├── ensure.go │ │ ├── reconcile.go │ │ └── reconcile_test.go │ ├── revision │ │ ├── controller.go │ │ ├── delete.go │ │ ├── delete_test.go │ │ ├── ensure.go │ │ ├── metrics.go │ │ ├── reconcile.go │ │ └── reconcile_test.go │ ├── status.go │ ├── status_test.go │ └── types.go ├── handlers │ ├── cloudresources │ │ ├── mutation.go │ │ ├── mutation_test.go │ │ ├── validation.go │ │ └── validation_test.go │ ├── configurations │ │ ├── mutation.go │ │ ├── mutation_test.go │ │ ├── validation.go │ │ └── validation_test.go │ ├── contexts │ │ ├── validation.go │ │ └── validation_test.go │ ├── namespaces │ │ ├── validation.go │ │ └── validation_test.go │ ├── policies │ │ ├── validation.go │ │ └── validation_test.go │ ├── providers │ │ ├── validation.go │ │ └── validation_test.go │ └── revisions │ │ ├── mutation.go │ │ ├── mutation_test.go │ │ ├── validation.go │ │ └── validation_test.go ├── register │ └── assets.go ├── schema │ ├── decode.go │ ├── decode_test.go │ ├── schema.go │ └── schema_test.go ├── server │ ├── server.go │ ├── types.go │ └── webhooks.go ├── utils │ ├── convert.go │ ├── convert_test.go │ ├── download.go │ ├── env.go │ ├── env_test.go │ ├── file.go │ ├── file_test.go │ ├── filters │ │ ├── jobs.go │ │ └── jobs_test.go │ ├── jobs │ │ ├── helper.go │ │ ├── jobs.go │ │ └── jobs_test.go │ ├── kubernetes │ │ ├── clients.go │ │ ├── crds.go │ │ ├── delete.go │ │ ├── delete_test.go │ │ ├── get.go │ │ ├── get_test.go │ │ ├── labels.go │ │ ├── labels_test.go │ │ ├── pods.go │ │ ├── pods_test.go │ │ ├── time.go │ │ ├── time_test.go │ │ ├── update.go │ │ └── update_test.go │ ├── maps.go │ ├── maps_test.go │ ├── policies │ │ ├── find.go │ │ └── find_test.go │ ├── preload │ │ ├── data.go │ │ ├── data_test.go │ │ ├── eks │ │ │ ├── helper.go │ │ │ ├── helper_test.go │ │ │ ├── loader.go │ │ │ ├── loader_test.go │ │ │ ├── mocks │ │ │ │ ├── ec2_zz.go │ │ │ │ └── eks_zz.go │ │ │ └── types.go │ │ └── types.go │ ├── random.go │ ├── random_test.go │ ├── retry.go │ ├── retry_test.go │ ├── semvar.go │ ├── semvar_test.go │ ├── semver.go │ ├── semver_test.go │ ├── similarity │ │ ├── similarity.go │ │ ├── similarity_test.go │ │ ├── tokenize.go │ │ └── tokenize_test.go │ ├── slices.go │ ├── slices_test.go │ ├── template │ │ ├── templates.go │ │ └── templates_test.go │ ├── terraform │ │ ├── errors.go │ │ ├── errors_test.go │ │ ├── logs.go │ │ ├── logs_test.go │ │ ├── template.go │ │ ├── template_test.go │ │ ├── types.go │ │ ├── utils.go │ │ └── utils_test.go │ ├── wait.go │ ├── wait_test.go │ ├── weights │ │ ├── weights.go │ │ └── weights_test.go │ ├── yaml.go │ └── yaml_test.go └── version │ ├── version.go │ └── version_test.go ├── test ├── controller.go ├── e2e │ ├── assets │ │ ├── checkov │ │ │ └── external.yaml │ │ └── terraform │ │ │ ├── azure │ │ │ ├── bucket.tf │ │ │ ├── outputs.tf │ │ │ └── variables.tf │ │ │ ├── dummy-zero │ │ │ └── main.tf │ │ │ ├── dummy │ │ │ └── main.tf │ │ │ └── google │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ └── variables.tf │ ├── check-suite.sh │ ├── integration │ │ ├── apply.bats │ │ ├── checkov.bats │ │ ├── clean-protection.bats │ │ ├── cloud │ │ │ ├── aws │ │ │ │ ├── confirm.bats │ │ │ │ ├── costs.bats │ │ │ │ ├── destroy.bats │ │ │ │ ├── infracost.bats │ │ │ │ ├── plan.bats │ │ │ │ └── provider.bats │ │ │ ├── azurerm │ │ │ │ ├── confirm.bats │ │ │ │ ├── destroy.bats │ │ │ │ ├── plan.bats │ │ │ │ └── provider.bats │ │ │ └── google │ │ │ │ ├── confirm.bats │ │ │ │ ├── destroy.bats │ │ │ │ ├── plan.bats │ │ │ │ └── provider.bats │ │ ├── cloudresource.bats │ │ ├── constraints │ │ │ ├── modules.bats │ │ │ └── setup.bats │ │ ├── contexts.bats │ │ ├── custom-state-backend.bats │ │ ├── destroy.bats │ │ ├── drift.bats │ │ ├── error-handler.bats │ │ ├── infracost.bats │ │ ├── plan.bats │ │ ├── private.bats │ │ ├── protection.bats │ │ ├── provider-state-backend.bats │ │ ├── revisions.bats │ │ └── setup.bats │ └── lib │ │ └── helper.bash ├── events.go └── fixtures │ ├── configurations.go │ ├── context.go │ ├── factory.go │ ├── jobs.go │ ├── namespaces.go │ ├── plan.go │ ├── policy.go │ ├── providers.go │ ├── revision.go │ ├── state.go │ └── template.go ├── tools └── tools.go └── vendor ├── 4d63.com ├── gocheckcompilerdirectives │ ├── LICENSE │ └── checkcompilerdirectives │ │ └── checkcompilerdirectives.go └── gochecknoglobals │ ├── LICENSE │ └── checknoglobals │ └── check_no_globals.go ├── cel.dev └── expr │ ├── .bazelversion │ ├── .gitattributes │ ├── .gitignore │ ├── BUILD.bazel │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── GOVERNANCE.md │ ├── LICENSE │ ├── MAINTAINERS.md │ ├── MODULE.bazel │ ├── README.md │ ├── WORKSPACE │ ├── WORKSPACE.bzlmod │ ├── checked.pb.go │ ├── cloudbuild.yaml │ ├── eval.pb.go │ ├── explain.pb.go │ ├── regen_go_proto.sh │ ├── regen_go_proto_canonical_protos.sh │ ├── syntax.pb.go │ └── value.pb.go ├── cloud.google.com └── go │ ├── LICENSE │ ├── auth │ ├── CHANGES.md │ ├── LICENSE │ ├── README.md │ ├── auth.go │ ├── credentials │ │ ├── compute.go │ │ ├── detect.go │ │ ├── doc.go │ │ ├── filetypes.go │ │ ├── internal │ │ │ ├── externalaccount │ │ │ │ ├── aws_provider.go │ │ │ │ ├── executable_provider.go │ │ │ │ ├── externalaccount.go │ │ │ │ ├── file_provider.go │ │ │ │ ├── info.go │ │ │ │ ├── programmatic_provider.go │ │ │ │ ├── url_provider.go │ │ │ │ └── x509_provider.go │ │ │ ├── externalaccountuser │ │ │ │ └── externalaccountuser.go │ │ │ ├── gdch │ │ │ │ └── gdch.go │ │ │ ├── impersonate │ │ │ │ ├── idtoken.go │ │ │ │ └── impersonate.go │ │ │ └── stsexchange │ │ │ │ └── sts_exchange.go │ │ └── selfsignedjwt.go │ ├── grpctransport │ │ ├── dial_socketopt.go │ │ ├── directpath.go │ │ ├── grpctransport.go │ │ └── pool.go │ ├── httptransport │ │ ├── httptransport.go │ │ └── transport.go │ ├── internal │ │ ├── compute │ │ │ ├── compute.go │ │ │ ├── manufacturer.go │ │ │ ├── manufacturer_linux.go │ │ │ └── manufacturer_windows.go │ │ ├── credsfile │ │ │ ├── credsfile.go │ │ │ ├── filetype.go │ │ │ └── parse.go │ │ ├── internal.go │ │ ├── jwt │ │ │ └── jwt.go │ │ └── transport │ │ │ ├── cba.go │ │ │ ├── cert │ │ │ ├── default_cert.go │ │ │ ├── enterprise_cert.go │ │ │ ├── secureconnect_cert.go │ │ │ └── workload_cert.go │ │ │ ├── s2a.go │ │ │ └── transport.go │ ├── oauth2adapt │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ └── oauth2adapt.go │ └── threelegged.go │ ├── compute │ └── metadata │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── log.go │ │ ├── metadata.go │ │ ├── retry.go │ │ ├── retry_linux.go │ │ ├── syscheck.go │ │ ├── syscheck_linux.go │ │ └── syscheck_windows.go │ ├── iam │ ├── CHANGES.md │ ├── LICENSE │ ├── README.md │ ├── apiv1 │ │ └── iampb │ │ │ ├── iam_policy.pb.go │ │ │ ├── options.pb.go │ │ │ └── policy.pb.go │ └── iam.go │ ├── internal │ ├── .repo-metadata-full.json │ ├── README.md │ ├── annotate.go │ ├── gen_info.sh │ ├── optional │ │ └── optional.go │ ├── retry.go │ ├── trace │ │ └── trace.go │ └── version │ │ ├── update_version.sh │ │ └── version.go │ ├── monitoring │ ├── LICENSE │ ├── apiv3 │ │ └── v2 │ │ │ ├── alert_policy_client.go │ │ │ ├── auxiliary.go │ │ │ ├── auxiliary_go123.go │ │ │ ├── doc.go │ │ │ ├── gapic_metadata.json │ │ │ ├── group_client.go │ │ │ ├── metric_client.go │ │ │ ├── monitoringpb │ │ │ ├── alert.pb.go │ │ │ ├── alert_service.pb.go │ │ │ ├── common.pb.go │ │ │ ├── dropped_labels.pb.go │ │ │ ├── group.pb.go │ │ │ ├── group_service.pb.go │ │ │ ├── metric.pb.go │ │ │ ├── metric_service.pb.go │ │ │ ├── mutation_record.pb.go │ │ │ ├── notification.pb.go │ │ │ ├── notification_service.pb.go │ │ │ ├── query_service.pb.go │ │ │ ├── service.pb.go │ │ │ ├── service_service.pb.go │ │ │ ├── snooze.pb.go │ │ │ ├── snooze_service.pb.go │ │ │ ├── span_context.pb.go │ │ │ ├── uptime.pb.go │ │ │ └── uptime_service.pb.go │ │ │ ├── notification_channel_client.go │ │ │ ├── query_client.go │ │ │ ├── service_monitoring_client.go │ │ │ ├── snooze_client.go │ │ │ ├── uptime_check_client.go │ │ │ └── version.go │ └── internal │ │ └── version.go │ └── storage │ ├── CHANGES.md │ ├── LICENSE │ ├── README.md │ ├── acl.go │ ├── bucket.go │ ├── client.go │ ├── copy.go │ ├── doc.go │ ├── dynamic_delay.go │ ├── emulator_test.sh │ ├── experimental │ └── experimental.go │ ├── grpc_client.go │ ├── grpc_dp.go │ ├── grpc_metrics.go │ ├── hmac.go │ ├── http_client.go │ ├── iam.go │ ├── internal │ ├── apiv2 │ │ ├── auxiliary.go │ │ ├── auxiliary_go123.go │ │ ├── doc.go │ │ ├── gapic_metadata.json │ │ ├── helpers.go │ │ ├── storage_client.go │ │ ├── storagepb │ │ │ └── storage.pb.go │ │ └── version.go │ ├── experimental.go │ └── version.go │ ├── invoke.go │ ├── notifications.go │ ├── option.go │ ├── post_policy_v4.go │ ├── reader.go │ ├── storage.go │ ├── storage.replay │ └── writer.go ├── dario.cat └── mergo │ ├── .deepsource.toml │ ├── .gitignore │ ├── .travis.yml │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── doc.go │ ├── map.go │ ├── merge.go │ └── mergo.go ├── github.com ├── 4meepo │ └── tagalign │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .goreleaser.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── options.go │ │ └── tagalign.go ├── Abirdcfly │ └── dupword │ │ ├── .gitignore │ │ ├── .goreleaser.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dupword.go │ │ └── version.go ├── AlecAivazis │ └── survey │ │ └── v2 │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── confirm.go │ │ ├── core │ │ ├── template.go │ │ └── write.go │ │ ├── editor.go │ │ ├── filter.go │ │ ├── input.go │ │ ├── multiline.go │ │ ├── multiselect.go │ │ ├── password.go │ │ ├── renderer.go │ │ ├── select.go │ │ ├── survey.go │ │ ├── terminal │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── buffered_reader.go │ │ ├── cursor.go │ │ ├── cursor_windows.go │ │ ├── display.go │ │ ├── display_posix.go │ │ ├── display_windows.go │ │ ├── error.go │ │ ├── output.go │ │ ├── output_windows.go │ │ ├── runereader.go │ │ ├── runereader_bsd.go │ │ ├── runereader_linux.go │ │ ├── runereader_posix.go │ │ ├── runereader_ppc64le.go │ │ ├── runereader_windows.go │ │ ├── sequences.go │ │ ├── stdio.go │ │ ├── syscall_windows.go │ │ └── terminal.go │ │ ├── transform.go │ │ └── validate.go ├── Antonboom │ ├── errname │ │ ├── LICENSE │ │ └── pkg │ │ │ └── analyzer │ │ │ ├── analyzer.go │ │ │ └── facts.go │ ├── nilnil │ │ ├── LICENSE │ │ └── pkg │ │ │ └── analyzer │ │ │ ├── analyzer.go │ │ │ ├── config.go │ │ │ └── func_type_stack.go │ └── testifylint │ │ ├── LICENSE │ │ ├── analyzer │ │ ├── analyzer.go │ │ └── checkers_factory.go │ │ └── internal │ │ ├── analysisutil │ │ ├── doc.go │ │ ├── encoded.go │ │ ├── file.go │ │ ├── format.go │ │ ├── object.go │ │ └── pkg.go │ │ ├── checkers │ │ ├── blank_import.go │ │ ├── bool_compare.go │ │ ├── call_meta.go │ │ ├── checker.go │ │ ├── checkers_registry.go │ │ ├── compares.go │ │ ├── contains.go │ │ ├── empty.go │ │ ├── encoded_compare.go │ │ ├── error_is_as.go │ │ ├── error_nil.go │ │ ├── expected_actual.go │ │ ├── float_compare.go │ │ ├── formatter.go │ │ ├── go_require.go │ │ ├── helpers.go │ │ ├── helpers_basic_type.go │ │ ├── helpers_bool.go │ │ ├── helpers_comparison.go │ │ ├── helpers_context.go │ │ ├── helpers_diagnostic.go │ │ ├── helpers_encoded.go │ │ ├── helpers_error.go │ │ ├── helpers_format.go │ │ ├── helpers_http.go │ │ ├── helpers_interface.go │ │ ├── helpers_len.go │ │ ├── helpers_naming.go │ │ ├── helpers_nil.go │ │ ├── helpers_pkg_func.go │ │ ├── helpers_suite.go │ │ ├── helpers_testing.go │ │ ├── len.go │ │ ├── negative_positive.go │ │ ├── nil_compare.go │ │ ├── printf │ │ │ ├── LICENSE │ │ │ ├── doc.go │ │ │ └── printf.go │ │ ├── regexp.go │ │ ├── require_error.go │ │ ├── suite_broken_parallel.go │ │ ├── suite_dont_use_pkg.go │ │ ├── suite_extra_assert_call.go │ │ ├── suite_subtest_run.go │ │ ├── suite_thelper.go │ │ └── useless_assert.go │ │ ├── config │ │ ├── config.go │ │ └── flag_value_types.go │ │ └── testify │ │ └── const.go ├── Azure │ └── go-ansiterm │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── constants.go │ │ ├── context.go │ │ ├── csi_entry_state.go │ │ ├── csi_param_state.go │ │ ├── escape_intermediate_state.go │ │ ├── escape_state.go │ │ ├── event_handler.go │ │ ├── ground_state.go │ │ ├── osc_string_state.go │ │ ├── parser.go │ │ ├── parser_action_helpers.go │ │ ├── parser_actions.go │ │ ├── states.go │ │ ├── utilities.go │ │ └── winterm │ │ ├── ansi.go │ │ ├── api.go │ │ ├── attr_translation.go │ │ ├── cursor_helpers.go │ │ ├── erase_helpers.go │ │ ├── scroll_helper.go │ │ ├── utilities.go │ │ └── win_event_handler.go ├── BurntSushi │ └── toml │ │ ├── .gitignore │ │ ├── COPYING │ │ ├── README.md │ │ ├── decode.go │ │ ├── deprecated.go │ │ ├── doc.go │ │ ├── encode.go │ │ ├── error.go │ │ ├── internal │ │ └── tz.go │ │ ├── lex.go │ │ ├── meta.go │ │ ├── parse.go │ │ ├── type_fields.go │ │ └── type_toml.go ├── Crocmagnon │ └── fatcontext │ │ ├── LICENSE │ │ └── pkg │ │ └── analyzer │ │ └── analyzer.go ├── Djarvur │ └── go-err113 │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.adoc │ │ ├── comparison.go │ │ ├── definition.go │ │ └── err113.go ├── GaijinEntertainment │ └── go-exhaustruct │ │ └── v3 │ │ ├── LICENSE │ │ ├── analyzer │ │ └── analyzer.go │ │ └── internal │ │ ├── comment │ │ ├── cache.go │ │ └── directive.go │ │ ├── pattern │ │ └── list.go │ │ └── structure │ │ ├── fields-cache.go │ │ └── fields.go ├── GoogleCloudPlatform │ └── opentelemetry-operations-go │ │ ├── detectors │ │ └── gcp │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── app_engine.go │ │ │ ├── bms.go │ │ │ ├── detector.go │ │ │ ├── faas.go │ │ │ ├── gce.go │ │ │ └── gke.go │ │ ├── exporter │ │ └── metric │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cloudmonitoring.go │ │ │ ├── constants.go │ │ │ ├── error.go │ │ │ ├── metric.go │ │ │ ├── option.go │ │ │ └── version.go │ │ └── internal │ │ └── resourcemapping │ │ ├── LICENSE │ │ └── resourcemapping.go ├── Masterminds │ ├── goutils │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── cryptorandomstringutils.go │ │ ├── randomstringutils.go │ │ ├── stringutils.go │ │ └── wordutils.go │ ├── semver │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── collection.go │ │ ├── constraints.go │ │ ├── doc.go │ │ ├── v3 │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── collection.go │ │ │ ├── constraints.go │ │ │ ├── doc.go │ │ │ └── version.go │ │ ├── version.go │ │ └── version_fuzz.go │ └── sprig │ │ └── v3 │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── crypto.go │ │ ├── date.go │ │ ├── defaults.go │ │ ├── dict.go │ │ ├── doc.go │ │ ├── functions.go │ │ ├── list.go │ │ ├── network.go │ │ ├── numeric.go │ │ ├── reflect.go │ │ ├── regex.go │ │ ├── semver.go │ │ ├── strings.go │ │ └── url.go ├── OpenPeeDeeP │ └── depguard │ │ └── v2 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── depguard.go │ │ ├── internal │ │ └── utils │ │ │ ├── errors.go │ │ │ └── variables.go │ │ └── settings.go ├── Songmu │ └── retry │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ └── retry.go ├── agext │ └── levenshtein │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── DCO │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── NOTICE │ │ ├── README.md │ │ ├── levenshtein.go │ │ ├── params.go │ │ └── test.sh ├── alecthomas │ └── go-check-sumtype │ │ ├── .golangci.yml │ │ ├── .goreleaser.yml │ │ ├── COPYING │ │ ├── LICENSE-MIT │ │ ├── README.md │ │ ├── UNLICENSE │ │ ├── check.go │ │ ├── config.go │ │ ├── decl.go │ │ ├── def.go │ │ ├── doc.go │ │ ├── renovate.json5 │ │ └── run.go ├── alexkohler │ ├── nakedret │ │ └── v2 │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── import.go │ │ │ └── nakedret.go │ └── prealloc │ │ ├── LICENSE │ │ └── pkg │ │ └── prealloc.go ├── alingse │ ├── asasalint │ │ ├── .gitignore │ │ ├── .goreleaser.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ └── asasalint.go │ └── nilnesserr │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── internal │ │ └── typeparams │ │ │ ├── coretype.go │ │ │ ├── normalize.go │ │ │ ├── termlist.go │ │ │ └── typeterm.go │ │ ├── linter.go │ │ ├── nilerr.go │ │ └── nilness.go ├── apparentlymart │ └── go-textseg │ │ └── v15 │ │ ├── LICENSE │ │ └── textseg │ │ ├── all_tokens.go │ │ ├── emoji_table.rl │ │ ├── generate.go │ │ ├── grapheme_clusters.go │ │ ├── grapheme_clusters.rl │ │ ├── grapheme_clusters_table.rl │ │ ├── tables.go │ │ ├── unicode2ragel.rb │ │ └── utf8_seqs.go ├── asaskevich │ └── govalidator │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── arrays.go │ │ ├── converter.go │ │ ├── doc.go │ │ ├── error.go │ │ ├── numerics.go │ │ ├── patterns.go │ │ ├── types.go │ │ ├── utils.go │ │ ├── validator.go │ │ └── wercker.yml ├── ashanbrown │ ├── forbidigo │ │ ├── LICENSE │ │ └── forbidigo │ │ │ ├── config_options.go │ │ │ ├── forbidigo.go │ │ │ └── patterns.go │ └── makezero │ │ ├── LICENSE │ │ └── makezero │ │ └── makezero.go ├── aws │ └── aws-sdk-go │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ ├── aws │ │ ├── arn │ │ │ └── arn.go │ │ ├── auth │ │ │ └── bearer │ │ │ │ └── token.go │ │ ├── awserr │ │ │ ├── error.go │ │ │ └── types.go │ │ ├── awsutil │ │ │ ├── copy.go │ │ │ ├── equal.go │ │ │ ├── path_value.go │ │ │ ├── prettify.go │ │ │ └── string_value.go │ │ ├── client │ │ │ ├── client.go │ │ │ ├── default_retryer.go │ │ │ ├── logger.go │ │ │ ├── metadata │ │ │ │ └── client_info.go │ │ │ └── no_op_retryer.go │ │ ├── config.go │ │ ├── context_1_5.go │ │ ├── context_1_9.go │ │ ├── context_background_1_5.go │ │ ├── context_background_1_7.go │ │ ├── context_sleep.go │ │ ├── convert_types.go │ │ ├── corehandlers │ │ │ ├── awsinternal.go │ │ │ ├── handlers.go │ │ │ ├── param_validator.go │ │ │ └── user_agent.go │ │ ├── credentials │ │ │ ├── chain_provider.go │ │ │ ├── context_background_go1.5.go │ │ │ ├── context_background_go1.7.go │ │ │ ├── context_go1.5.go │ │ │ ├── context_go1.9.go │ │ │ ├── credentials.go │ │ │ ├── ec2rolecreds │ │ │ │ └── ec2_role_provider.go │ │ │ ├── endpointcreds │ │ │ │ └── provider.go │ │ │ ├── env_provider.go │ │ │ ├── example.ini │ │ │ ├── processcreds │ │ │ │ └── provider.go │ │ │ ├── shared_credentials_provider.go │ │ │ ├── ssocreds │ │ │ │ ├── doc.go │ │ │ │ ├── os.go │ │ │ │ ├── os_windows.go │ │ │ │ ├── provider.go │ │ │ │ ├── sso_cached_token.go │ │ │ │ └── token_provider.go │ │ │ ├── static_provider.go │ │ │ └── stscreds │ │ │ │ ├── assume_role_provider.go │ │ │ │ └── web_identity_provider.go │ │ ├── csm │ │ │ ├── doc.go │ │ │ ├── enable.go │ │ │ ├── metric.go │ │ │ ├── metric_chan.go │ │ │ ├── metric_exception.go │ │ │ └── reporter.go │ │ ├── defaults │ │ │ ├── defaults.go │ │ │ └── shared_config.go │ │ ├── doc.go │ │ ├── ec2metadata │ │ │ ├── api.go │ │ │ ├── service.go │ │ │ └── token_provider.go │ │ ├── endpoints │ │ │ ├── decode.go │ │ │ ├── defaults.go │ │ │ ├── dep_service_ids.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── legacy_regions.go │ │ │ ├── v3model.go │ │ │ └── v3model_codegen.go │ │ ├── errors.go │ │ ├── jsonvalue.go │ │ ├── logger.go │ │ ├── request │ │ │ ├── connection_reset_error.go │ │ │ ├── handlers.go │ │ │ ├── http_request.go │ │ │ ├── offset_reader.go │ │ │ ├── request.go │ │ │ ├── request_1_7.go │ │ │ ├── request_1_8.go │ │ │ ├── request_context.go │ │ │ ├── request_context_1_6.go │ │ │ ├── request_pagination.go │ │ │ ├── retryer.go │ │ │ ├── timeout_read_closer.go │ │ │ ├── validation.go │ │ │ └── waiter.go │ │ ├── session │ │ │ ├── credentials.go │ │ │ ├── custom_transport.go │ │ │ ├── custom_transport_go1.12.go │ │ │ ├── custom_transport_go1.5.go │ │ │ ├── custom_transport_go1.6.go │ │ │ ├── doc.go │ │ │ ├── env_config.go │ │ │ ├── session.go │ │ │ └── shared_config.go │ │ ├── signer │ │ │ └── v4 │ │ │ │ ├── header_rules.go │ │ │ │ ├── options.go │ │ │ │ ├── request_context_go1.5.go │ │ │ │ ├── request_context_go1.7.go │ │ │ │ ├── stream.go │ │ │ │ ├── uri_path.go │ │ │ │ └── v4.go │ │ ├── types.go │ │ ├── url.go │ │ ├── url_1_7.go │ │ └── version.go │ │ ├── internal │ │ ├── context │ │ │ └── background_go1.5.go │ │ ├── ini │ │ │ ├── ast.go │ │ │ ├── comma_token.go │ │ │ ├── comment_token.go │ │ │ ├── doc.go │ │ │ ├── empty_token.go │ │ │ ├── expression.go │ │ │ ├── fuzz.go │ │ │ ├── ini.go │ │ │ ├── ini_lexer.go │ │ │ ├── ini_parser.go │ │ │ ├── literal_tokens.go │ │ │ ├── newline_token.go │ │ │ ├── number_helper.go │ │ │ ├── op_tokens.go │ │ │ ├── parse_error.go │ │ │ ├── parse_stack.go │ │ │ ├── sep_tokens.go │ │ │ ├── skipper.go │ │ │ ├── statement.go │ │ │ ├── value_util.go │ │ │ ├── visitor.go │ │ │ ├── walker.go │ │ │ └── ws_token.go │ │ ├── s3shared │ │ │ ├── arn │ │ │ │ ├── accesspoint_arn.go │ │ │ │ ├── arn.go │ │ │ │ ├── outpost_arn.go │ │ │ │ └── s3_object_lambda_arn.go │ │ │ ├── endpoint_errors.go │ │ │ ├── resource_request.go │ │ │ └── s3err │ │ │ │ └── error.go │ │ ├── sdkio │ │ │ ├── byte.go │ │ │ ├── io_go1.6.go │ │ │ └── io_go1.7.go │ │ ├── sdkmath │ │ │ ├── floor.go │ │ │ └── floor_go1.9.go │ │ ├── sdkrand │ │ │ ├── locked_source.go │ │ │ ├── read.go │ │ │ └── read_1_5.go │ │ ├── sdkuri │ │ │ └── path.go │ │ ├── shareddefaults │ │ │ ├── ecs_container.go │ │ │ ├── shared_config.go │ │ │ ├── shared_config_resolve_home.go │ │ │ └── shared_config_resolve_home_go1.12.go │ │ ├── strings │ │ │ └── strings.go │ │ └── sync │ │ │ └── singleflight │ │ │ ├── LICENSE │ │ │ └── singleflight.go │ │ ├── private │ │ ├── checksum │ │ │ └── content_md5.go │ │ └── protocol │ │ │ ├── ec2query │ │ │ ├── build.go │ │ │ └── unmarshal.go │ │ │ ├── eventstream │ │ │ ├── debug.go │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── error.go │ │ │ ├── eventstreamapi │ │ │ │ ├── error.go │ │ │ │ ├── reader.go │ │ │ │ ├── shared.go │ │ │ │ ├── signer.go │ │ │ │ ├── stream_writer.go │ │ │ │ ├── transport.go │ │ │ │ ├── transport_go1.17.go │ │ │ │ └── writer.go │ │ │ ├── header.go │ │ │ ├── header_value.go │ │ │ └── message.go │ │ │ ├── host.go │ │ │ ├── host_prefix.go │ │ │ ├── idempotency.go │ │ │ ├── json │ │ │ └── jsonutil │ │ │ │ ├── build.go │ │ │ │ └── unmarshal.go │ │ │ ├── jsonrpc │ │ │ ├── jsonrpc.go │ │ │ └── unmarshal_error.go │ │ │ ├── jsonvalue.go │ │ │ ├── payload.go │ │ │ ├── protocol.go │ │ │ ├── query │ │ │ ├── build.go │ │ │ ├── queryutil │ │ │ │ └── queryutil.go │ │ │ ├── unmarshal.go │ │ │ └── unmarshal_error.go │ │ │ ├── rest │ │ │ ├── build.go │ │ │ ├── payload.go │ │ │ └── unmarshal.go │ │ │ ├── restjson │ │ │ ├── restjson.go │ │ │ └── unmarshal_error.go │ │ │ ├── restxml │ │ │ └── restxml.go │ │ │ ├── timestamp.go │ │ │ ├── unmarshal.go │ │ │ ├── unmarshal_error.go │ │ │ └── xml │ │ │ └── xmlutil │ │ │ ├── build.go │ │ │ ├── sort.go │ │ │ ├── unmarshal.go │ │ │ └── xml_to_struct.go │ │ └── service │ │ ├── ec2 │ │ ├── api.go │ │ ├── customizations.go │ │ ├── doc.go │ │ ├── ec2iface │ │ │ └── interface.go │ │ ├── errors.go │ │ ├── service.go │ │ └── waiters.go │ │ ├── eks │ │ ├── api.go │ │ ├── doc.go │ │ ├── eksiface │ │ │ └── interface.go │ │ ├── errors.go │ │ ├── service.go │ │ └── waiters.go │ │ ├── s3 │ │ ├── api.go │ │ ├── body_hash.go │ │ ├── bucket_location.go │ │ ├── customizations.go │ │ ├── doc.go │ │ ├── doc_custom.go │ │ ├── endpoint.go │ │ ├── endpoint_builder.go │ │ ├── errors.go │ │ ├── host_style_bucket.go │ │ ├── platform_handlers.go │ │ ├── platform_handlers_go1.6.go │ │ ├── service.go │ │ ├── sse.go │ │ ├── statusok_error.go │ │ ├── unmarshal_error.go │ │ └── waiters.go │ │ ├── sso │ │ ├── api.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── service.go │ │ └── ssoiface │ │ │ └── interface.go │ │ ├── ssooidc │ │ ├── api.go │ │ ├── doc.go │ │ ├── errors.go │ │ └── service.go │ │ └── sts │ │ ├── api.go │ │ ├── customizations.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── service.go │ │ └── stsiface │ │ └── interface.go ├── bbalet │ └── stopwords │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _english.txt │ │ ├── _stopwords.txt │ │ ├── custom.go │ │ ├── levenshtein.go │ │ ├── simhash.go │ │ ├── stopwords.go │ │ ├── stopwords_ar.go │ │ ├── stopwords_bg.go │ │ ├── stopwords_cs.go │ │ ├── stopwords_da.go │ │ ├── stopwords_de.go │ │ ├── stopwords_el.go │ │ ├── stopwords_en.go │ │ ├── stopwords_es.go │ │ ├── stopwords_fa.go │ │ ├── stopwords_fi.go │ │ ├── stopwords_fr.go │ │ ├── stopwords_hu.go │ │ ├── stopwords_id.go │ │ ├── stopwords_it.go │ │ ├── stopwords_ja.go │ │ ├── stopwords_km.go │ │ ├── stopwords_lv.go │ │ ├── stopwords_nl.go │ │ ├── stopwords_no.go │ │ ├── stopwords_pl.go │ │ ├── stopwords_pt.go │ │ ├── stopwords_ro.go │ │ ├── stopwords_ru.go │ │ ├── stopwords_sk.go │ │ ├── stopwords_sv.go │ │ ├── stopwords_th.go │ │ └── stopwords_tr.go ├── beorn7 │ └── perks │ │ ├── LICENSE │ │ └── quantile │ │ ├── exampledata.txt │ │ └── stream.go ├── bgentry │ └── go-netrc │ │ ├── LICENSE │ │ └── netrc │ │ └── netrc.go ├── bkielbasa │ └── cyclop │ │ ├── LICENSE │ │ └── pkg │ │ └── analyzer │ │ └── analyzer.go ├── blang │ └── semver │ │ └── v4 │ │ ├── LICENSE │ │ ├── json.go │ │ ├── range.go │ │ ├── semver.go │ │ ├── sort.go │ │ └── sql.go ├── blizzy78 │ └── varnamelen │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── flags.go │ │ ├── typeparam.go │ │ ├── typeparam_go1.16.go │ │ ├── varnamelen.code-workspace │ │ └── varnamelen.go ├── bombsimon │ └── wsl │ │ └── v4 │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── analyzer.go │ │ └── wsl.go ├── breml │ ├── bidichk │ │ ├── LICENSE │ │ └── pkg │ │ │ └── bidichk │ │ │ ├── bidichk.go │ │ │ └── version.go │ └── errchkjson │ │ ├── .gitignore │ │ ├── .goreleaser.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── errchkjson.go │ │ ├── noexported_error.go │ │ ├── unsupported_error.go │ │ └── version.go ├── butuzov │ ├── ireturn │ │ ├── LICENSE │ │ └── analyzer │ │ │ ├── analyzer.go │ │ │ ├── disallow.go │ │ │ ├── internal │ │ │ ├── config │ │ │ │ ├── allow.go │ │ │ │ ├── config.go │ │ │ │ ├── new.go │ │ │ │ └── reject.go │ │ │ └── types │ │ │ │ ├── iface.go │ │ │ │ ├── names.go │ │ │ │ └── types.go │ │ │ └── std.go │ └── mirror │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .goreleaser.yaml │ │ ├── LICENSE │ │ ├── MIRROR_FUNCS.md │ │ ├── Makefile │ │ ├── Taskfile.yml │ │ ├── analyzer.go │ │ ├── checkers_bufio.go │ │ ├── checkers_bytes.go │ │ ├── checkers_httptest.go │ │ ├── checkers_maphash.go │ │ ├── checkers_os.go │ │ ├── checkers_regexp.go │ │ ├── checkers_strings.go │ │ ├── checkers_utf8.go │ │ ├── internal │ │ └── checker │ │ │ ├── checker.go │ │ │ ├── imports.go │ │ │ └── violation.go │ │ └── readme.md ├── catenacyber │ └── perfsprint │ │ ├── LICENSE │ │ └── analyzer │ │ ├── analyzer.go │ │ └── diagnostic.go ├── ccojocar │ └── zxcvbn-go │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .goreleaser.yml │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── adjacency │ │ └── adjcmartix.go │ │ ├── data │ │ └── bindata.go │ │ ├── entropy │ │ └── entropyCalculator.go │ │ ├── frequency │ │ └── frequency.go │ │ ├── match │ │ └── match.go │ │ ├── matching │ │ ├── dateMatchers.go │ │ ├── dictionaryMatch.go │ │ ├── leet.go │ │ ├── matching.go │ │ ├── repeatMatch.go │ │ ├── sequenceMatch.go │ │ └── spatialMatch.go │ │ ├── renovate.json │ │ ├── scoring │ │ └── scoring.go │ │ ├── utils │ │ └── math │ │ │ └── mathutils.go │ │ └── zxcvbn.go ├── census-instrumentation │ └── opencensus-proto │ │ ├── AUTHORS │ │ ├── LICENSE │ │ └── gen-go │ │ ├── resource │ │ └── v1 │ │ │ └── resource.pb.go │ │ └── trace │ │ └── v1 │ │ ├── trace.pb.go │ │ └── trace_config.pb.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 ├── charithe │ └── durationcheck │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ └── durationcheck.go ├── chavacava │ └── garif │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── constructors.go │ │ ├── decorators.go │ │ ├── doc.go │ │ ├── enums.go │ │ ├── io.go │ │ └── models.go ├── chzyer │ └── readline │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── ansi_windows.go │ │ ├── complete.go │ │ ├── complete_helper.go │ │ ├── complete_segment.go │ │ ├── history.go │ │ ├── operation.go │ │ ├── password.go │ │ ├── rawreader_windows.go │ │ ├── readline.go │ │ ├── remote.go │ │ ├── runebuf.go │ │ ├── runes.go │ │ ├── search.go │ │ ├── std.go │ │ ├── std_windows.go │ │ ├── term.go │ │ ├── term_bsd.go │ │ ├── term_linux.go │ │ ├── term_nosyscall6.go │ │ ├── term_unix.go │ │ ├── term_windows.go │ │ ├── terminal.go │ │ ├── utils.go │ │ ├── utils_unix.go │ │ ├── utils_windows.go │ │ ├── vim.go │ │ └── windows_api.go ├── ckaznocha │ └── intrange │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── go.work │ │ └── intrange.go ├── cncf │ └── xds │ │ └── go │ │ ├── LICENSE │ │ ├── udpa │ │ ├── annotations │ │ │ ├── migrate.pb.go │ │ │ ├── migrate.pb.validate.go │ │ │ ├── security.pb.go │ │ │ ├── security.pb.validate.go │ │ │ ├── sensitive.pb.go │ │ │ ├── sensitive.pb.validate.go │ │ │ ├── status.pb.go │ │ │ ├── status.pb.validate.go │ │ │ ├── versioning.pb.go │ │ │ └── versioning.pb.validate.go │ │ └── type │ │ │ └── v1 │ │ │ ├── typed_struct.pb.go │ │ │ └── typed_struct.pb.validate.go │ │ └── xds │ │ ├── annotations │ │ └── v3 │ │ │ ├── migrate.pb.go │ │ │ ├── migrate.pb.validate.go │ │ │ ├── security.pb.go │ │ │ ├── security.pb.validate.go │ │ │ ├── sensitive.pb.go │ │ │ ├── sensitive.pb.validate.go │ │ │ ├── status.pb.go │ │ │ ├── status.pb.validate.go │ │ │ ├── versioning.pb.go │ │ │ └── versioning.pb.validate.go │ │ ├── core │ │ └── v3 │ │ │ ├── authority.pb.go │ │ │ ├── authority.pb.validate.go │ │ │ ├── cidr.pb.go │ │ │ ├── cidr.pb.validate.go │ │ │ ├── collection_entry.pb.go │ │ │ ├── collection_entry.pb.validate.go │ │ │ ├── context_params.pb.go │ │ │ ├── context_params.pb.validate.go │ │ │ ├── extension.pb.go │ │ │ ├── extension.pb.validate.go │ │ │ ├── resource.pb.go │ │ │ ├── resource.pb.validate.go │ │ │ ├── resource_locator.pb.go │ │ │ ├── resource_locator.pb.validate.go │ │ │ ├── resource_name.pb.go │ │ │ └── resource_name.pb.validate.go │ │ ├── data │ │ └── orca │ │ │ └── v3 │ │ │ ├── orca_load_report.pb.go │ │ │ └── orca_load_report.pb.validate.go │ │ ├── service │ │ └── orca │ │ │ └── v3 │ │ │ ├── orca.pb.go │ │ │ ├── orca.pb.validate.go │ │ │ └── orca_grpc.pb.go │ │ └── type │ │ ├── matcher │ │ └── v3 │ │ │ ├── cel.pb.go │ │ │ ├── cel.pb.validate.go │ │ │ ├── domain.pb.go │ │ │ ├── domain.pb.validate.go │ │ │ ├── http_inputs.pb.go │ │ │ ├── http_inputs.pb.validate.go │ │ │ ├── ip.pb.go │ │ │ ├── ip.pb.validate.go │ │ │ ├── matcher.pb.go │ │ │ ├── matcher.pb.validate.go │ │ │ ├── range.pb.go │ │ │ ├── range.pb.validate.go │ │ │ ├── regex.pb.go │ │ │ ├── regex.pb.validate.go │ │ │ ├── string.pb.go │ │ │ └── string.pb.validate.go │ │ └── v3 │ │ ├── cel.pb.go │ │ ├── cel.pb.validate.go │ │ ├── range.pb.go │ │ ├── range.pb.validate.go │ │ ├── typed_struct.pb.go │ │ └── typed_struct.pb.validate.go ├── cpuguy83 │ └── go-md2man │ │ └── v2 │ │ ├── LICENSE.md │ │ └── md2man │ │ ├── debug.go │ │ ├── md2man.go │ │ └── roff.go ├── curioswitch │ └── go-reassign │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .goreleaser.yaml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── analyzer.go │ │ └── internal │ │ └── analyzer │ │ └── analyzer.go ├── daixiang0 │ └── gci │ │ ├── LICENSE │ │ └── pkg │ │ ├── config │ │ └── config.go │ │ ├── format │ │ └── format.go │ │ ├── gci │ │ ├── gci.go │ │ └── testdata.go │ │ ├── io │ │ ├── file.go │ │ ├── search.go │ │ └── stdin.go │ │ ├── log │ │ └── log.go │ │ ├── parse │ │ └── parse.go │ │ ├── section │ │ ├── alias.go │ │ ├── blank.go │ │ ├── commentline.go │ │ ├── default.go │ │ ├── dot.go │ │ ├── errors.go │ │ ├── local_module.go │ │ ├── newline.go │ │ ├── parser.go │ │ ├── prefix.go │ │ ├── section.go │ │ ├── standard.go │ │ └── standard_list.go │ │ ├── specificity │ │ ├── default.go │ │ ├── local_module.go │ │ ├── match.go │ │ ├── mismatch.go │ │ ├── name.go │ │ ├── specificity.go │ │ └── standard.go │ │ └── utils │ │ └── constants.go ├── davecgh │ └── go-spew │ │ ├── LICENSE │ │ └── spew │ │ ├── bypass.go │ │ ├── bypasssafe.go │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── dump.go │ │ ├── format.go │ │ └── spew.go ├── denis-tingaikin │ └── go-header │ │ ├── .gitignore │ │ ├── .go-header.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── analyzer.go │ │ ├── config.go │ │ ├── issue.go │ │ ├── location.go │ │ ├── option.go │ │ ├── reader.go │ │ └── value.go ├── emicklei │ └── go-restful │ │ └── v3 │ │ ├── .gitignore │ │ ├── .goconvey │ │ ├── .travis.yml │ │ ├── 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 ├── enescakir │ └── emoji │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── constants.go │ │ ├── doc.go │ │ ├── emoji.go │ │ ├── fmt.go │ │ ├── map.go │ │ └── parser.go ├── envoyproxy │ ├── go-control-plane │ │ ├── LICENSE │ │ └── envoy │ │ │ ├── admin │ │ │ └── v3 │ │ │ │ ├── certs.pb.go │ │ │ │ ├── certs.pb.validate.go │ │ │ │ ├── certs_vtproto.pb.go │ │ │ │ ├── clusters.pb.go │ │ │ │ ├── clusters.pb.validate.go │ │ │ │ ├── clusters_vtproto.pb.go │ │ │ │ ├── config_dump.pb.go │ │ │ │ ├── config_dump.pb.validate.go │ │ │ │ ├── config_dump_shared.pb.go │ │ │ │ ├── config_dump_shared.pb.validate.go │ │ │ │ ├── config_dump_shared_vtproto.pb.go │ │ │ │ ├── config_dump_vtproto.pb.go │ │ │ │ ├── init_dump.pb.go │ │ │ │ ├── init_dump.pb.validate.go │ │ │ │ ├── init_dump_vtproto.pb.go │ │ │ │ ├── listeners.pb.go │ │ │ │ ├── listeners.pb.validate.go │ │ │ │ ├── listeners_vtproto.pb.go │ │ │ │ ├── memory.pb.go │ │ │ │ ├── memory.pb.validate.go │ │ │ │ ├── memory_vtproto.pb.go │ │ │ │ ├── metrics.pb.go │ │ │ │ ├── metrics.pb.validate.go │ │ │ │ ├── metrics_vtproto.pb.go │ │ │ │ ├── mutex_stats.pb.go │ │ │ │ ├── mutex_stats.pb.validate.go │ │ │ │ ├── mutex_stats_vtproto.pb.go │ │ │ │ ├── server_info.pb.go │ │ │ │ ├── server_info.pb.validate.go │ │ │ │ ├── server_info_vtproto.pb.go │ │ │ │ ├── tap.pb.go │ │ │ │ ├── tap.pb.validate.go │ │ │ │ └── tap_vtproto.pb.go │ │ │ ├── annotations │ │ │ ├── deprecation.pb.go │ │ │ ├── deprecation.pb.validate.go │ │ │ ├── resource.pb.go │ │ │ ├── resource.pb.validate.go │ │ │ └── resource_vtproto.pb.go │ │ │ ├── config │ │ │ ├── accesslog │ │ │ │ └── v3 │ │ │ │ │ ├── accesslog.pb.go │ │ │ │ │ ├── accesslog.pb.validate.go │ │ │ │ │ └── accesslog_vtproto.pb.go │ │ │ ├── bootstrap │ │ │ │ └── v3 │ │ │ │ │ ├── bootstrap.pb.go │ │ │ │ │ ├── bootstrap.pb.validate.go │ │ │ │ │ └── bootstrap_vtproto.pb.go │ │ │ ├── cluster │ │ │ │ └── v3 │ │ │ │ │ ├── circuit_breaker.pb.go │ │ │ │ │ ├── circuit_breaker.pb.validate.go │ │ │ │ │ ├── circuit_breaker_vtproto.pb.go │ │ │ │ │ ├── cluster.pb.go │ │ │ │ │ ├── cluster.pb.validate.go │ │ │ │ │ ├── cluster_vtproto.pb.go │ │ │ │ │ ├── filter.pb.go │ │ │ │ │ ├── filter.pb.validate.go │ │ │ │ │ ├── filter_vtproto.pb.go │ │ │ │ │ ├── outlier_detection.pb.go │ │ │ │ │ ├── outlier_detection.pb.validate.go │ │ │ │ │ └── outlier_detection_vtproto.pb.go │ │ │ ├── common │ │ │ │ └── matcher │ │ │ │ │ └── v3 │ │ │ │ │ ├── matcher.pb.go │ │ │ │ │ ├── matcher.pb.validate.go │ │ │ │ │ └── matcher_vtproto.pb.go │ │ │ ├── core │ │ │ │ └── v3 │ │ │ │ │ ├── address.pb.go │ │ │ │ │ ├── address.pb.validate.go │ │ │ │ │ ├── address_vtproto.pb.go │ │ │ │ │ ├── backoff.pb.go │ │ │ │ │ ├── backoff.pb.validate.go │ │ │ │ │ ├── backoff_vtproto.pb.go │ │ │ │ │ ├── base.pb.go │ │ │ │ │ ├── base.pb.validate.go │ │ │ │ │ ├── base_vtproto.pb.go │ │ │ │ │ ├── config_source.pb.go │ │ │ │ │ ├── config_source.pb.validate.go │ │ │ │ │ ├── config_source_vtproto.pb.go │ │ │ │ │ ├── event_service_config.pb.go │ │ │ │ │ ├── event_service_config.pb.validate.go │ │ │ │ │ ├── event_service_config_vtproto.pb.go │ │ │ │ │ ├── extension.pb.go │ │ │ │ │ ├── extension.pb.validate.go │ │ │ │ │ ├── extension_vtproto.pb.go │ │ │ │ │ ├── grpc_method_list.pb.go │ │ │ │ │ ├── grpc_method_list.pb.validate.go │ │ │ │ │ ├── grpc_method_list_vtproto.pb.go │ │ │ │ │ ├── grpc_service.pb.go │ │ │ │ │ ├── grpc_service.pb.validate.go │ │ │ │ │ ├── grpc_service_vtproto.pb.go │ │ │ │ │ ├── health_check.pb.go │ │ │ │ │ ├── health_check.pb.validate.go │ │ │ │ │ ├── health_check_vtproto.pb.go │ │ │ │ │ ├── http_service.pb.go │ │ │ │ │ ├── http_service.pb.validate.go │ │ │ │ │ ├── http_service_vtproto.pb.go │ │ │ │ │ ├── http_uri.pb.go │ │ │ │ │ ├── http_uri.pb.validate.go │ │ │ │ │ ├── http_uri_vtproto.pb.go │ │ │ │ │ ├── protocol.pb.go │ │ │ │ │ ├── protocol.pb.validate.go │ │ │ │ │ ├── protocol_vtproto.pb.go │ │ │ │ │ ├── proxy_protocol.pb.go │ │ │ │ │ ├── proxy_protocol.pb.validate.go │ │ │ │ │ ├── proxy_protocol_vtproto.pb.go │ │ │ │ │ ├── resolver.pb.go │ │ │ │ │ ├── resolver.pb.validate.go │ │ │ │ │ ├── resolver_vtproto.pb.go │ │ │ │ │ ├── socket_cmsg_headers.pb.go │ │ │ │ │ ├── socket_cmsg_headers.pb.validate.go │ │ │ │ │ ├── socket_cmsg_headers_vtproto.pb.go │ │ │ │ │ ├── socket_option.pb.go │ │ │ │ │ ├── socket_option.pb.validate.go │ │ │ │ │ ├── socket_option_vtproto.pb.go │ │ │ │ │ ├── substitution_format_string.pb.go │ │ │ │ │ ├── substitution_format_string.pb.validate.go │ │ │ │ │ ├── substitution_format_string_vtproto.pb.go │ │ │ │ │ ├── udp_socket_config.pb.go │ │ │ │ │ ├── udp_socket_config.pb.validate.go │ │ │ │ │ └── udp_socket_config_vtproto.pb.go │ │ │ ├── endpoint │ │ │ │ └── v3 │ │ │ │ │ ├── endpoint.pb.go │ │ │ │ │ ├── endpoint.pb.validate.go │ │ │ │ │ ├── endpoint_components.pb.go │ │ │ │ │ ├── endpoint_components.pb.validate.go │ │ │ │ │ ├── endpoint_components_vtproto.pb.go │ │ │ │ │ ├── endpoint_vtproto.pb.go │ │ │ │ │ ├── load_report.pb.go │ │ │ │ │ ├── load_report.pb.validate.go │ │ │ │ │ └── load_report_vtproto.pb.go │ │ │ ├── listener │ │ │ │ └── v3 │ │ │ │ │ ├── api_listener.pb.go │ │ │ │ │ ├── api_listener.pb.validate.go │ │ │ │ │ ├── api_listener_vtproto.pb.go │ │ │ │ │ ├── listener.pb.go │ │ │ │ │ ├── listener.pb.validate.go │ │ │ │ │ ├── listener_components.pb.go │ │ │ │ │ ├── listener_components.pb.validate.go │ │ │ │ │ ├── listener_components_vtproto.pb.go │ │ │ │ │ ├── listener_vtproto.pb.go │ │ │ │ │ ├── quic_config.pb.go │ │ │ │ │ ├── quic_config.pb.validate.go │ │ │ │ │ ├── quic_config_vtproto.pb.go │ │ │ │ │ ├── udp_listener_config.pb.go │ │ │ │ │ ├── udp_listener_config.pb.validate.go │ │ │ │ │ └── udp_listener_config_vtproto.pb.go │ │ │ ├── metrics │ │ │ │ └── v3 │ │ │ │ │ ├── metrics_service.pb.go │ │ │ │ │ ├── metrics_service.pb.validate.go │ │ │ │ │ ├── metrics_service_vtproto.pb.go │ │ │ │ │ ├── stats.pb.go │ │ │ │ │ ├── stats.pb.validate.go │ │ │ │ │ └── stats_vtproto.pb.go │ │ │ ├── overload │ │ │ │ └── v3 │ │ │ │ │ ├── overload.pb.go │ │ │ │ │ ├── overload.pb.validate.go │ │ │ │ │ └── overload_vtproto.pb.go │ │ │ ├── rbac │ │ │ │ └── v3 │ │ │ │ │ ├── rbac.pb.go │ │ │ │ │ ├── rbac.pb.validate.go │ │ │ │ │ └── rbac_vtproto.pb.go │ │ │ ├── route │ │ │ │ └── v3 │ │ │ │ │ ├── route.pb.go │ │ │ │ │ ├── route.pb.validate.go │ │ │ │ │ ├── route_components.pb.go │ │ │ │ │ ├── route_components.pb.validate.go │ │ │ │ │ ├── route_components_vtproto.pb.go │ │ │ │ │ ├── route_vtproto.pb.go │ │ │ │ │ ├── scoped_route.pb.go │ │ │ │ │ ├── scoped_route.pb.validate.go │ │ │ │ │ └── scoped_route_vtproto.pb.go │ │ │ ├── tap │ │ │ │ └── v3 │ │ │ │ │ ├── common.pb.go │ │ │ │ │ ├── common.pb.validate.go │ │ │ │ │ └── common_vtproto.pb.go │ │ │ └── trace │ │ │ │ └── v3 │ │ │ │ ├── datadog.pb.go │ │ │ │ ├── datadog.pb.validate.go │ │ │ │ ├── datadog_vtproto.pb.go │ │ │ │ ├── dynamic_ot.pb.go │ │ │ │ ├── dynamic_ot.pb.validate.go │ │ │ │ ├── dynamic_ot_vtproto.pb.go │ │ │ │ ├── http_tracer.pb.go │ │ │ │ ├── http_tracer.pb.validate.go │ │ │ │ ├── http_tracer_vtproto.pb.go │ │ │ │ ├── lightstep.pb.go │ │ │ │ ├── lightstep.pb.validate.go │ │ │ │ ├── lightstep_vtproto.pb.go │ │ │ │ ├── opencensus.pb.go │ │ │ │ ├── opencensus.pb.validate.go │ │ │ │ ├── opencensus_vtproto.pb.go │ │ │ │ ├── opentelemetry.pb.go │ │ │ │ ├── opentelemetry.pb.validate.go │ │ │ │ ├── opentelemetry_vtproto.pb.go │ │ │ │ ├── service.pb.go │ │ │ │ ├── service.pb.validate.go │ │ │ │ ├── service_vtproto.pb.go │ │ │ │ ├── skywalking.pb.go │ │ │ │ ├── skywalking.pb.validate.go │ │ │ │ ├── skywalking_vtproto.pb.go │ │ │ │ ├── trace.pb.go │ │ │ │ ├── trace.pb.validate.go │ │ │ │ ├── xray.pb.go │ │ │ │ ├── xray.pb.validate.go │ │ │ │ ├── xray_vtproto.pb.go │ │ │ │ ├── zipkin.pb.go │ │ │ │ ├── zipkin.pb.validate.go │ │ │ │ └── zipkin_vtproto.pb.go │ │ │ ├── data │ │ │ └── accesslog │ │ │ │ └── v3 │ │ │ │ ├── accesslog.pb.go │ │ │ │ ├── accesslog.pb.validate.go │ │ │ │ └── accesslog_vtproto.pb.go │ │ │ ├── extensions │ │ │ ├── clusters │ │ │ │ └── aggregate │ │ │ │ │ └── v3 │ │ │ │ │ ├── cluster.pb.go │ │ │ │ │ ├── cluster.pb.validate.go │ │ │ │ │ └── cluster_vtproto.pb.go │ │ │ ├── filters │ │ │ │ ├── common │ │ │ │ │ └── fault │ │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── fault.pb.go │ │ │ │ │ │ ├── fault.pb.validate.go │ │ │ │ │ │ └── fault_vtproto.pb.go │ │ │ │ ├── http │ │ │ │ │ ├── fault │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ ├── fault.pb.go │ │ │ │ │ │ │ ├── fault.pb.validate.go │ │ │ │ │ │ │ └── fault_vtproto.pb.go │ │ │ │ │ ├── rbac │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ ├── rbac.pb.go │ │ │ │ │ │ │ ├── rbac.pb.validate.go │ │ │ │ │ │ │ └── rbac_vtproto.pb.go │ │ │ │ │ └── router │ │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── router.pb.go │ │ │ │ │ │ ├── router.pb.validate.go │ │ │ │ │ │ └── router_vtproto.pb.go │ │ │ │ └── network │ │ │ │ │ └── http_connection_manager │ │ │ │ │ └── v3 │ │ │ │ │ ├── http_connection_manager.pb.go │ │ │ │ │ ├── http_connection_manager.pb.validate.go │ │ │ │ │ └── http_connection_manager_vtproto.pb.go │ │ │ ├── load_balancing_policies │ │ │ │ ├── client_side_weighted_round_robin │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── client_side_weighted_round_robin.pb.go │ │ │ │ │ │ ├── client_side_weighted_round_robin.pb.validate.go │ │ │ │ │ │ └── client_side_weighted_round_robin_vtproto.pb.go │ │ │ │ ├── common │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── common.pb.go │ │ │ │ │ │ ├── common.pb.validate.go │ │ │ │ │ │ └── common_vtproto.pb.go │ │ │ │ ├── least_request │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── least_request.pb.go │ │ │ │ │ │ ├── least_request.pb.validate.go │ │ │ │ │ │ └── least_request_vtproto.pb.go │ │ │ │ ├── pick_first │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── pick_first.pb.go │ │ │ │ │ │ ├── pick_first.pb.validate.go │ │ │ │ │ │ └── pick_first_vtproto.pb.go │ │ │ │ ├── ring_hash │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── ring_hash.pb.go │ │ │ │ │ │ ├── ring_hash.pb.validate.go │ │ │ │ │ │ └── ring_hash_vtproto.pb.go │ │ │ │ └── wrr_locality │ │ │ │ │ └── v3 │ │ │ │ │ ├── wrr_locality.pb.go │ │ │ │ │ ├── wrr_locality.pb.validate.go │ │ │ │ │ └── wrr_locality_vtproto.pb.go │ │ │ ├── rbac │ │ │ │ └── audit_loggers │ │ │ │ │ └── stream │ │ │ │ │ └── v3 │ │ │ │ │ ├── stream.pb.go │ │ │ │ │ ├── stream.pb.validate.go │ │ │ │ │ └── stream_vtproto.pb.go │ │ │ └── transport_sockets │ │ │ │ └── tls │ │ │ │ └── v3 │ │ │ │ ├── cert.pb.go │ │ │ │ ├── cert.pb.validate.go │ │ │ │ ├── common.pb.go │ │ │ │ ├── common.pb.validate.go │ │ │ │ ├── common_vtproto.pb.go │ │ │ │ ├── secret.pb.go │ │ │ │ ├── secret.pb.validate.go │ │ │ │ ├── secret_vtproto.pb.go │ │ │ │ ├── tls.pb.go │ │ │ │ ├── tls.pb.validate.go │ │ │ │ ├── tls_spiffe_validator_config.pb.go │ │ │ │ ├── tls_spiffe_validator_config.pb.validate.go │ │ │ │ ├── tls_spiffe_validator_config_vtproto.pb.go │ │ │ │ └── tls_vtproto.pb.go │ │ │ ├── service │ │ │ ├── discovery │ │ │ │ └── v3 │ │ │ │ │ ├── ads.pb.go │ │ │ │ │ ├── ads.pb.validate.go │ │ │ │ │ ├── ads_grpc.pb.go │ │ │ │ │ ├── ads_vtproto.pb.go │ │ │ │ │ ├── discovery.pb.go │ │ │ │ │ ├── discovery.pb.validate.go │ │ │ │ │ └── discovery_vtproto.pb.go │ │ │ ├── load_stats │ │ │ │ └── v3 │ │ │ │ │ ├── lrs.pb.go │ │ │ │ │ ├── lrs.pb.validate.go │ │ │ │ │ ├── lrs_grpc.pb.go │ │ │ │ │ └── lrs_vtproto.pb.go │ │ │ └── status │ │ │ │ └── v3 │ │ │ │ ├── csds.pb.go │ │ │ │ ├── csds.pb.validate.go │ │ │ │ ├── csds_grpc.pb.go │ │ │ │ └── csds_vtproto.pb.go │ │ │ └── type │ │ │ ├── http │ │ │ └── v3 │ │ │ │ ├── cookie.pb.go │ │ │ │ ├── cookie.pb.validate.go │ │ │ │ ├── cookie_vtproto.pb.go │ │ │ │ ├── path_transformation.pb.go │ │ │ │ ├── path_transformation.pb.validate.go │ │ │ │ └── path_transformation_vtproto.pb.go │ │ │ ├── matcher │ │ │ └── v3 │ │ │ │ ├── filter_state.pb.go │ │ │ │ ├── filter_state.pb.validate.go │ │ │ │ ├── filter_state_vtproto.pb.go │ │ │ │ ├── http_inputs.pb.go │ │ │ │ ├── http_inputs.pb.validate.go │ │ │ │ ├── http_inputs_vtproto.pb.go │ │ │ │ ├── metadata.pb.go │ │ │ │ ├── metadata.pb.validate.go │ │ │ │ ├── metadata_vtproto.pb.go │ │ │ │ ├── node.pb.go │ │ │ │ ├── node.pb.validate.go │ │ │ │ ├── node_vtproto.pb.go │ │ │ │ ├── number.pb.go │ │ │ │ ├── number.pb.validate.go │ │ │ │ ├── number_vtproto.pb.go │ │ │ │ ├── path.pb.go │ │ │ │ ├── path.pb.validate.go │ │ │ │ ├── path_vtproto.pb.go │ │ │ │ ├── regex.pb.go │ │ │ │ ├── regex.pb.validate.go │ │ │ │ ├── regex_vtproto.pb.go │ │ │ │ ├── status_code_input.pb.go │ │ │ │ ├── status_code_input.pb.validate.go │ │ │ │ ├── status_code_input_vtproto.pb.go │ │ │ │ ├── string.pb.go │ │ │ │ ├── string.pb.validate.go │ │ │ │ ├── string_vtproto.pb.go │ │ │ │ ├── struct.pb.go │ │ │ │ ├── struct.pb.validate.go │ │ │ │ ├── struct_vtproto.pb.go │ │ │ │ ├── value.pb.go │ │ │ │ ├── value.pb.validate.go │ │ │ │ └── value_vtproto.pb.go │ │ │ ├── metadata │ │ │ └── v3 │ │ │ │ ├── metadata.pb.go │ │ │ │ ├── metadata.pb.validate.go │ │ │ │ └── metadata_vtproto.pb.go │ │ │ ├── tracing │ │ │ └── v3 │ │ │ │ ├── custom_tag.pb.go │ │ │ │ ├── custom_tag.pb.validate.go │ │ │ │ └── custom_tag_vtproto.pb.go │ │ │ └── v3 │ │ │ ├── hash_policy.pb.go │ │ │ ├── hash_policy.pb.validate.go │ │ │ ├── hash_policy_vtproto.pb.go │ │ │ ├── http.pb.go │ │ │ ├── http.pb.validate.go │ │ │ ├── http_status.pb.go │ │ │ ├── http_status.pb.validate.go │ │ │ ├── http_status_vtproto.pb.go │ │ │ ├── percent.pb.go │ │ │ ├── percent.pb.validate.go │ │ │ ├── percent_vtproto.pb.go │ │ │ ├── range.pb.go │ │ │ ├── range.pb.validate.go │ │ │ ├── range_vtproto.pb.go │ │ │ ├── ratelimit_strategy.pb.go │ │ │ ├── ratelimit_strategy.pb.validate.go │ │ │ ├── ratelimit_strategy_vtproto.pb.go │ │ │ ├── ratelimit_unit.pb.go │ │ │ ├── ratelimit_unit.pb.validate.go │ │ │ ├── semantic_version.pb.go │ │ │ ├── semantic_version.pb.validate.go │ │ │ ├── semantic_version_vtproto.pb.go │ │ │ ├── token_bucket.pb.go │ │ │ ├── token_bucket.pb.validate.go │ │ │ └── token_bucket_vtproto.pb.go │ └── protoc-gen-validate │ │ ├── LICENSE │ │ └── validate │ │ ├── BUILD │ │ ├── validate.h │ │ ├── validate.pb.go │ │ └── validate.proto ├── ettle │ └── strcase │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .readme.tmpl │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── assert.go │ │ ├── caser.go │ │ ├── convert.go │ │ ├── doc.go │ │ ├── initialism.go │ │ ├── split.go │ │ ├── strcase.go │ │ └── unicode.go ├── evanphx │ └── json-patch │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── errors.go │ │ ├── merge.go │ │ ├── patch.go │ │ └── 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 ├── fatih │ ├── color │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── color.go │ │ ├── color_windows.go │ │ └── doc.go │ └── structtag │ │ ├── LICENSE │ │ ├── README.md │ │ └── tags.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 ├── firefart │ └── nonamedreturns │ │ ├── LICENSE │ │ └── analyzer │ │ └── analyzer.go ├── fsnotify │ └── fsnotify │ │ ├── .cirrus.yml │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .mailmap │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── backend_fen.go │ │ ├── backend_inotify.go │ │ ├── backend_kqueue.go │ │ ├── backend_other.go │ │ ├── backend_windows.go │ │ ├── fsnotify.go │ │ ├── mkdoc.zsh │ │ ├── system_bsd.go │ │ └── system_darwin.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 │ │ ├── encode_map_go117.go │ │ ├── simplevalue.go │ │ ├── stream.go │ │ ├── structfields.go │ │ ├── tag.go │ │ └── valid.go ├── fzipp │ └── gocyclo │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── analyze.go │ │ ├── complexity.go │ │ ├── directives.go │ │ ├── recv.go │ │ ├── recv_pre118.go │ │ └── stats.go ├── gertd │ └── go-pluralize │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ └── pluralize.go ├── ghodss │ └── yaml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── fields.go │ │ └── yaml.go ├── ghostiam │ └── protogetter │ │ ├── .goreleaser.yaml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── posfilter.go │ │ ├── processor.go │ │ └── protogetter.go ├── go-bindata │ └── go-bindata │ │ └── v3 │ │ ├── .drone.yml │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── _config.yml │ │ ├── asset.go │ │ ├── bytewriter.go │ │ ├── config.go │ │ ├── convert.go │ │ ├── debug.go │ │ ├── doc.go │ │ ├── file.go │ │ ├── go-bindata │ │ ├── .gitignore │ │ ├── AppendSliceValue.go │ │ ├── main.go │ │ └── version.go │ │ ├── release.go │ │ ├── restore.go │ │ ├── stringwriter.go │ │ ├── toc.go │ │ └── tools.go ├── go-critic │ └── go-critic │ │ ├── LICENSE │ │ ├── checkers │ │ ├── appendAssign_checker.go │ │ ├── appendCombine_checker.go │ │ ├── badCond_checker.go │ │ ├── badRegexp_checker.go │ │ ├── boolExprSimplify_checker.go │ │ ├── builtinShadowDecl_checker.go │ │ ├── builtinShadow_checker.go │ │ ├── captLocal_checker.go │ │ ├── caseOrder_checker.go │ │ ├── checkers.go │ │ ├── codegenComment_checker.go │ │ ├── commentFormatting_checker.go │ │ ├── commentedOutCode_checker.go │ │ ├── commentedOutImport_checker.go │ │ ├── defaultCaseOrder_checker.go │ │ ├── deferInLoop_checker.go │ │ ├── deprecatedComment_checker.go │ │ ├── docStub_checker.go │ │ ├── dupBranchBody_checker.go │ │ ├── dupCase_checker.go │ │ ├── dupImports_checker.go │ │ ├── dupSubExpr_checker.go │ │ ├── elseif_checker.go │ │ ├── embedded_rules.go │ │ ├── emptyFallthrough_checker.go │ │ ├── evalOrder_checker.go │ │ ├── exitAfterDefer_checker.go │ │ ├── filepathJoin_checker.go │ │ ├── flagName_checker.go │ │ ├── hexLiteral_checker.go │ │ ├── hugeParam_checker.go │ │ ├── ifElseChain_checker.go │ │ ├── importShadow_checker.go │ │ ├── initClause_checker.go │ │ ├── internal │ │ │ ├── astwalk │ │ │ │ ├── comment_walker.go │ │ │ │ ├── doc_comment_walker.go │ │ │ │ ├── expr_walker.go │ │ │ │ ├── func_decl_walker.go │ │ │ │ ├── local_comment_walker.go │ │ │ │ ├── local_def_visitor.go │ │ │ │ ├── local_def_walker.go │ │ │ │ ├── local_expr_walker.go │ │ │ │ ├── stmt_list_walker.go │ │ │ │ ├── stmt_walker.go │ │ │ │ ├── type_expr_walker.go │ │ │ │ ├── visitor.go │ │ │ │ ├── walk_handler.go │ │ │ │ └── walker.go │ │ │ └── lintutil │ │ │ │ ├── astfind.go │ │ │ │ ├── astflow.go │ │ │ │ ├── astset.go │ │ │ │ └── zero_value.go │ │ ├── mapKey_checker.go │ │ ├── methodExprCall_checker.go │ │ ├── nestingReduce_checker.go │ │ ├── newDeref_checker.go │ │ ├── nilValReturn_checker.go │ │ ├── octalLiteral_checker.go │ │ ├── paramTypeCombine_checker.go │ │ ├── ptrToRefParam_checker.go │ │ ├── rangeAppendAll_checker.go │ │ ├── rangeExprCopy_checker.go │ │ ├── rangeValCopy_checker.go │ │ ├── regexpPattern_checker.go │ │ ├── regexpSimplify_checker.go │ │ ├── ruleguard_checker.go │ │ ├── rulesdata │ │ │ └── rulesdata.go │ │ ├── singleCaseSwitch_checker.go │ │ ├── sloppyReassign_checker.go │ │ ├── sloppyTypeAssert_checker.go │ │ ├── sortSlice_checker.go │ │ ├── sqlQuery_checker.go │ │ ├── todoCommentWithoutDetail_checker.go │ │ ├── tooManyResults_checker.go │ │ ├── truncateCmp_checker.go │ │ ├── typeAssertChain_checker.go │ │ ├── typeDefFirst_checker.go │ │ ├── typeSwitchVar_checker.go │ │ ├── typeUnparen_checker.go │ │ ├── underef_checker.go │ │ ├── unlabelStmt_checker.go │ │ ├── unlambda_checker.go │ │ ├── unnamedResult_checker.go │ │ ├── unnecessaryBlock_checker.go │ │ ├── unnecessaryDefer_checker.go │ │ ├── utils.go │ │ ├── weakCond_checker.go │ │ └── whyNoLint_checker.go │ │ └── linter │ │ ├── go_version.go │ │ ├── helpers.go │ │ └── linter.go ├── go-errors │ └── errors │ │ ├── .travis.yml │ │ ├── LICENSE.MIT │ │ ├── README.md │ │ ├── error.go │ │ ├── error_1_13.go │ │ ├── error_backward.go │ │ ├── join_unwrap_1_20.go │ │ ├── join_unwrap_backward.go │ │ ├── parse_panic.go │ │ └── stackframe.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 │ ├── analysis │ │ ├── .codecov.yml │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── analyzer.go │ │ ├── debug.go │ │ ├── doc.go │ │ ├── fixer.go │ │ ├── flatten.go │ │ ├── flatten_name.go │ │ ├── flatten_options.go │ │ ├── internal │ │ │ ├── debug │ │ │ │ └── debug.go │ │ │ └── flatten │ │ │ │ ├── normalize │ │ │ │ └── normalize.go │ │ │ │ ├── operations │ │ │ │ └── operations.go │ │ │ │ ├── replace │ │ │ │ └── replace.go │ │ │ │ ├── schutils │ │ │ │ └── flatten_schema.go │ │ │ │ └── sortref │ │ │ │ ├── keys.go │ │ │ │ └── sort_ref.go │ │ ├── mixin.go │ │ └── schema.go │ ├── errors │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── api.go │ │ ├── auth.go │ │ ├── doc.go │ │ ├── headers.go │ │ ├── middleware.go │ │ ├── parsing.go │ │ └── schema.go │ ├── inflect │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── inflect.go │ ├── jsonpointer │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ └── pointer.go │ ├── jsonreference │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── internal │ │ │ └── normalize_url.go │ │ └── reference.go │ ├── loads │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .travis.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── fmts │ │ │ └── yaml.go │ │ ├── loaders.go │ │ ├── options.go │ │ └── spec.go │ ├── runtime │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bytestream.go │ │ ├── client_auth_info.go │ │ ├── client_operation.go │ │ ├── client_request.go │ │ ├── client_response.go │ │ ├── constants.go │ │ ├── csv.go │ │ ├── csv_options.go │ │ ├── discard.go │ │ ├── file.go │ │ ├── headers.go │ │ ├── interfaces.go │ │ ├── json.go │ │ ├── logger │ │ │ ├── logger.go │ │ │ └── standard.go │ │ ├── middleware │ │ │ ├── context.go │ │ │ ├── denco │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── router.go │ │ │ │ ├── server.go │ │ │ │ └── util.go │ │ │ ├── doc.go │ │ │ ├── header │ │ │ │ └── header.go │ │ │ ├── negotiate.go │ │ │ ├── not_implemented.go │ │ │ ├── operation.go │ │ │ ├── parameter.go │ │ │ ├── rapidoc.go │ │ │ ├── redoc.go │ │ │ ├── request.go │ │ │ ├── router.go │ │ │ ├── security.go │ │ │ ├── spec.go │ │ │ ├── swaggerui.go │ │ │ ├── swaggerui_oauth2.go │ │ │ ├── ui_options.go │ │ │ ├── untyped │ │ │ │ └── api.go │ │ │ └── validation.go │ │ ├── request.go │ │ ├── security │ │ │ ├── authenticator.go │ │ │ └── authorizer.go │ │ ├── statuses.go │ │ ├── text.go │ │ ├── values.go │ │ └── xml.go │ ├── spec │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cache.go │ │ ├── contact_info.go │ │ ├── debug.go │ │ ├── embed.go │ │ ├── errors.go │ │ ├── expander.go │ │ ├── external_docs.go │ │ ├── header.go │ │ ├── info.go │ │ ├── items.go │ │ ├── license.go │ │ ├── normalizer.go │ │ ├── normalizer_nonwindows.go │ │ ├── normalizer_windows.go │ │ ├── operation.go │ │ ├── parameter.go │ │ ├── path_item.go │ │ ├── paths.go │ │ ├── properties.go │ │ ├── ref.go │ │ ├── resolver.go │ │ ├── response.go │ │ ├── responses.go │ │ ├── schema.go │ │ ├── schema_loader.go │ │ ├── schemas │ │ │ ├── jsonschema-draft-04.json │ │ │ └── v2 │ │ │ │ └── schema.json │ │ ├── security_scheme.go │ │ ├── spec.go │ │ ├── swagger.go │ │ ├── tag.go │ │ ├── url_go19.go │ │ ├── validations.go │ │ └── xml_object.go │ ├── strfmt │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bson.go │ │ ├── date.go │ │ ├── default.go │ │ ├── doc.go │ │ ├── duration.go │ │ ├── format.go │ │ ├── time.go │ │ └── ulid.go │ ├── swag │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── BENCHMARK.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── convert.go │ │ ├── convert_types.go │ │ ├── doc.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 │ └── validate │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── BENCHMARK.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── context.go │ │ ├── debug.go │ │ ├── default_validator.go │ │ ├── doc.go │ │ ├── example_validator.go │ │ ├── formats.go │ │ ├── helpers.go │ │ ├── object_validator.go │ │ ├── options.go │ │ ├── pools.go │ │ ├── pools_debug.go │ │ ├── result.go │ │ ├── rexp.go │ │ ├── schema.go │ │ ├── schema_messages.go │ │ ├── schema_option.go │ │ ├── schema_props.go │ │ ├── slice_validator.go │ │ ├── spec.go │ │ ├── spec_messages.go │ │ ├── type.go │ │ ├── update-fixtures.sh │ │ ├── validator.go │ │ └── values.go ├── go-swagger │ └── go-swagger │ │ ├── LICENSE │ │ ├── cmd │ │ └── swagger │ │ │ ├── .gitignore │ │ │ ├── commands │ │ │ ├── diff.go │ │ │ ├── diff │ │ │ │ ├── array_diff.go │ │ │ │ ├── checks.go │ │ │ │ ├── compatibility.go │ │ │ │ ├── difference_location.go │ │ │ │ ├── difftypes.go │ │ │ │ ├── node.go │ │ │ │ ├── reporting.go │ │ │ │ ├── schema.go │ │ │ │ ├── spec_analyser.go │ │ │ │ ├── spec_difference.go │ │ │ │ └── type_adapters.go │ │ │ ├── expand.go │ │ │ ├── flatten.go │ │ │ ├── generate.go │ │ │ ├── generate │ │ │ │ ├── cli.go │ │ │ │ ├── client.go │ │ │ │ ├── contrib.go │ │ │ │ ├── markdown.go │ │ │ │ ├── model.go │ │ │ │ ├── operation.go │ │ │ │ ├── server.go │ │ │ │ ├── shared.go │ │ │ │ ├── sharedopts_nonwin.go │ │ │ │ ├── sharedopts_win.go │ │ │ │ ├── spec.go │ │ │ │ └── support.go │ │ │ ├── initcmd.go │ │ │ ├── initcmd │ │ │ │ └── spec.go │ │ │ ├── mixin.go │ │ │ ├── serve.go │ │ │ ├── validate.go │ │ │ └── version.go │ │ │ └── swagger.go │ │ ├── codescan │ │ ├── README.md │ │ ├── application.go │ │ ├── doc.go │ │ ├── enum.go │ │ ├── meta.go │ │ ├── operations.go │ │ ├── parameters.go │ │ ├── parser.go │ │ ├── parser_helpers.go │ │ ├── regexprs.go │ │ ├── responses.go │ │ ├── route_params.go │ │ ├── routes.go │ │ ├── schema.go │ │ └── spec.go │ │ └── generator │ │ ├── .gitignore │ │ ├── bindata.go │ │ ├── client.go │ │ ├── config.go │ │ ├── debug.go │ │ ├── discriminators.go │ │ ├── doc.go │ │ ├── formats.go │ │ ├── genopts_nonwin.go │ │ ├── genopts_win.go │ │ ├── language.go │ │ ├── media.go │ │ ├── model.go │ │ ├── operation.go │ │ ├── shared.go │ │ ├── spec.go │ │ ├── structs.go │ │ ├── support.go │ │ ├── template_repo.go │ │ ├── templates │ │ ├── cli │ │ │ ├── cli.gotmpl │ │ │ ├── completion.gotmpl │ │ │ ├── main.gotmpl │ │ │ ├── modelcli.gotmpl │ │ │ ├── operation.gotmpl │ │ │ ├── registerflag.gotmpl │ │ │ ├── retrieveflag.gotmpl │ │ │ └── schema.gotmpl │ │ ├── client │ │ │ ├── client.gotmpl │ │ │ ├── facade.gotmpl │ │ │ ├── parameter.gotmpl │ │ │ └── response.gotmpl │ │ ├── contrib │ │ │ └── stratoscale │ │ │ │ ├── README.md │ │ │ │ ├── client │ │ │ │ ├── client.gotmpl │ │ │ │ └── facade.gotmpl │ │ │ │ └── server │ │ │ │ ├── configureapi.gotmpl │ │ │ │ └── server.gotmpl │ │ ├── docstring.gotmpl │ │ ├── header.gotmpl │ │ ├── markdown │ │ │ └── docs.gotmpl │ │ ├── model.gotmpl │ │ ├── schema.gotmpl │ │ ├── schemabody.gotmpl │ │ ├── schemaembedded.gotmpl │ │ ├── schemapolymorphic.gotmpl │ │ ├── schematype.gotmpl │ │ ├── schemavalidator.gotmpl │ │ ├── serializers │ │ │ ├── additionalpropertiesserializer.gotmpl │ │ │ ├── aliasedserializer.gotmpl │ │ │ ├── allofserializer.gotmpl │ │ │ ├── basetypeserializer.gotmpl │ │ │ ├── marshalbinaryserializer.gotmpl │ │ │ ├── schemaserializer.gotmpl │ │ │ ├── subtypeserializer.gotmpl │ │ │ └── tupleserializer.gotmpl │ │ ├── server │ │ │ ├── autoconfigureapi.gotmpl │ │ │ ├── builder.gotmpl │ │ │ ├── configureapi.gotmpl │ │ │ ├── doc.gotmpl │ │ │ ├── main.gotmpl │ │ │ ├── operation.gotmpl │ │ │ ├── parameter.gotmpl │ │ │ ├── responses.gotmpl │ │ │ ├── server.gotmpl │ │ │ └── urlbuilder.gotmpl │ │ ├── simpleschema │ │ │ ├── defaultsinit.gotmpl │ │ │ └── defaultsvar.gotmpl │ │ ├── structfield.gotmpl │ │ ├── swagger_json_embed.gotmpl │ │ └── validation │ │ │ ├── customformat.gotmpl │ │ │ ├── maximum.gotmpl │ │ │ ├── minimum.gotmpl │ │ │ ├── multipleOf.gotmpl │ │ │ ├── primitive.gotmpl │ │ │ └── structfield.gotmpl │ │ └── types.go ├── go-task │ └── slim-sprig │ │ └── v3 │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── Taskfile.yml │ │ ├── crypto.go │ │ ├── date.go │ │ ├── defaults.go │ │ ├── dict.go │ │ ├── doc.go │ │ ├── functions.go │ │ ├── list.go │ │ ├── network.go │ │ ├── numeric.go │ │ ├── reflect.go │ │ ├── regex.go │ │ ├── strings.go │ │ └── url.go ├── go-toolsmith │ ├── astcast │ │ ├── LICENSE │ │ ├── README.md │ │ └── astcast.go │ ├── astcopy │ │ ├── LICENSE │ │ ├── README.md │ │ ├── astcopy.go │ │ ├── astcopy_go117.go │ │ └── astcopy_go118.go │ ├── astequal │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── astequal.go │ │ └── diff.go │ ├── astfmt │ │ ├── LICENSE │ │ ├── README.md │ │ └── astfmt.go │ ├── astp │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decl.go │ │ ├── expr.go │ │ └── stmt.go │ ├── strparse │ │ ├── LICENSE │ │ ├── README.md │ │ └── strparse.go │ └── typep │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── predicates.go │ │ ├── safe_expr.go │ │ └── simple_predicates.go ├── go-viper │ └── mapstructure │ │ └── v2 │ │ ├── .editorconfig │ │ ├── .envrc │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decode_hooks.go │ │ ├── flake.lock │ │ ├── flake.nix │ │ ├── internal │ │ └── errors │ │ │ ├── errors.go │ │ │ ├── join.go │ │ │ └── join_go1_19.go │ │ ├── mapstructure.go │ │ ├── reflect_go1_19.go │ │ └── reflect_go1_20.go ├── go-xmlfmt │ └── xmlfmt │ │ ├── LICENSE │ │ ├── README.md │ │ └── xmlfmt.go ├── gobuffalo │ └── flect │ │ ├── .gitignore │ │ ├── .gometalinter.json │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── SHOULDERS.md │ │ ├── acronyms.go │ │ ├── camelize.go │ │ ├── capitalize.go │ │ ├── custom_data.go │ │ ├── dasherize.go │ │ ├── flect.go │ │ ├── humanize.go │ │ ├── ident.go │ │ ├── lower_upper.go │ │ ├── ordinalize.go │ │ ├── pascalize.go │ │ ├── plural_rules.go │ │ ├── pluralize.go │ │ ├── rule.go │ │ ├── singular_rules.go │ │ ├── singularize.go │ │ ├── titleize.go │ │ ├── underscore.go │ │ └── version.go ├── gobwas │ └── glob │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── bench.sh │ │ ├── compiler │ │ └── compiler.go │ │ ├── glob.go │ │ ├── match │ │ ├── any.go │ │ ├── any_of.go │ │ ├── btree.go │ │ ├── contains.go │ │ ├── every_of.go │ │ ├── list.go │ │ ├── match.go │ │ ├── max.go │ │ ├── min.go │ │ ├── nothing.go │ │ ├── prefix.go │ │ ├── prefix_any.go │ │ ├── prefix_suffix.go │ │ ├── range.go │ │ ├── row.go │ │ ├── segments.go │ │ ├── single.go │ │ ├── suffix.go │ │ ├── suffix_any.go │ │ ├── super.go │ │ └── text.go │ │ ├── readme.md │ │ ├── syntax │ │ ├── ast │ │ │ ├── ast.go │ │ │ └── parser.go │ │ ├── lexer │ │ │ ├── lexer.go │ │ │ └── token.go │ │ └── syntax.go │ │ └── util │ │ ├── runes │ │ └── runes.go │ │ └── strings │ │ └── strings.go ├── goccy │ └── go-yaml │ │ ├── LICENSE │ │ ├── ast │ │ └── ast.go │ │ ├── lexer │ │ └── lexer.go │ │ ├── printer │ │ └── printer.go │ │ ├── scanner │ │ ├── context.go │ │ └── scanner.go │ │ └── token │ │ └── token.go ├── gofrs │ └── flock │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── build.sh │ │ ├── flock.go │ │ ├── flock_others.go │ │ ├── flock_unix.go │ │ ├── flock_unix_fcntl.go │ │ └── flock_windows.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 ├── golang │ ├── groupcache │ │ ├── LICENSE │ │ └── lru │ │ │ └── lru.go │ └── mock │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── gomock │ │ ├── call.go │ │ ├── callset.go │ │ ├── controller.go │ │ └── matchers.go │ │ └── mockgen │ │ ├── mockgen.go │ │ ├── model │ │ └── model.go │ │ ├── parse.go │ │ ├── reflect.go │ │ ├── version.1.11.go │ │ └── version.1.12.go ├── golangci │ ├── dupl │ │ ├── LICENSE │ │ ├── job │ │ │ ├── buildtree.go │ │ │ └── parse.go │ │ ├── lib │ │ │ └── lib.go │ │ ├── printer │ │ │ ├── html.go │ │ │ ├── issuer.go │ │ │ ├── plumbing.go │ │ │ ├── printer.go │ │ │ └── text.go │ │ ├── suffixtree │ │ │ ├── dupl.go │ │ │ └── suffixtree.go │ │ └── syntax │ │ │ ├── golang │ │ │ └── golang.go │ │ │ └── syntax.go │ ├── go-printf-func-name │ │ ├── LICENSE │ │ └── pkg │ │ │ └── analyzer │ │ │ └── analyzer.go │ ├── gofmt │ │ └── gofmt │ │ │ ├── LICENSE │ │ │ ├── doc.go │ │ │ ├── gofmt.go │ │ │ ├── golangci.go │ │ │ ├── internal.go │ │ │ ├── readme.md │ │ │ ├── rewrite.go │ │ │ └── simplify.go │ ├── golangci-lint │ │ ├── LICENSE │ │ ├── cmd │ │ │ └── golangci-lint │ │ │ │ ├── main.go │ │ │ │ └── plugins.go │ │ ├── internal │ │ │ ├── cache │ │ │ │ └── cache.go │ │ │ ├── errorutil │ │ │ │ └── errors.go │ │ │ ├── go │ │ │ │ ├── LICENSE │ │ │ │ ├── cache │ │ │ │ │ ├── cache.go │ │ │ │ │ ├── cache_gcil.go │ │ │ │ │ ├── default.go │ │ │ │ │ ├── default_gcil.go │ │ │ │ │ ├── hash.go │ │ │ │ │ ├── hash_gcil.go │ │ │ │ │ ├── prog.go │ │ │ │ │ └── readme.md │ │ │ │ ├── mmap │ │ │ │ │ ├── mmap.go │ │ │ │ │ ├── mmap_other.go │ │ │ │ │ ├── mmap_unix.go │ │ │ │ │ ├── mmap_windows.go │ │ │ │ │ └── readme.md │ │ │ │ ├── quoted │ │ │ │ │ ├── quoted.go │ │ │ │ │ └── readme.md │ │ │ │ └── robustio │ │ │ │ │ ├── readme.md │ │ │ │ │ ├── robustio.go │ │ │ │ │ ├── robustio_darwin.go │ │ │ │ │ ├── robustio_flaky.go │ │ │ │ │ ├── robustio_other.go │ │ │ │ │ └── robustio_windows.go │ │ │ └── x │ │ │ │ ├── LICENSE │ │ │ │ └── tools │ │ │ │ ├── analysisflags │ │ │ │ ├── readme.md │ │ │ │ └── url.go │ │ │ │ ├── analysisinternal │ │ │ │ ├── analysis.go │ │ │ │ └── readme.md │ │ │ │ └── diff │ │ │ │ ├── diff.go │ │ │ │ ├── lcs │ │ │ │ ├── common.go │ │ │ │ ├── doc.go │ │ │ │ ├── git.sh │ │ │ │ ├── labels.go │ │ │ │ ├── old.go │ │ │ │ └── sequence.go │ │ │ │ ├── ndiff.go │ │ │ │ ├── readme.md │ │ │ │ └── unified.go │ │ └── pkg │ │ │ ├── commands │ │ │ ├── cache.go │ │ │ ├── config.go │ │ │ ├── config_verify.go │ │ │ ├── custom.go │ │ │ ├── flagsets.go │ │ │ ├── help.go │ │ │ ├── internal │ │ │ │ ├── builder.go │ │ │ │ ├── configuration.go │ │ │ │ ├── imports.go │ │ │ │ └── vibra.go │ │ │ ├── linters.go │ │ │ ├── root.go │ │ │ ├── run.go │ │ │ └── version.go │ │ │ ├── config │ │ │ ├── base_rule.go │ │ │ ├── config.go │ │ │ ├── issues.go │ │ │ ├── linters.go │ │ │ ├── linters_exclusions.go │ │ │ ├── linters_settings.go │ │ │ ├── loader.go │ │ │ ├── output.go │ │ │ ├── run.go │ │ │ └── severity.go │ │ │ ├── exitcodes │ │ │ └── exitcodes.go │ │ │ ├── fsutils │ │ │ ├── basepath.go │ │ │ ├── filecache.go │ │ │ ├── files.go │ │ │ ├── fsutils.go │ │ │ ├── fsutils_unix.go │ │ │ ├── fsutils_windows.go │ │ │ ├── linecache.go │ │ │ ├── path_unix.go │ │ │ └── path_windows.go │ │ │ ├── goanalysis │ │ │ ├── issue.go │ │ │ ├── linter.go │ │ │ ├── load │ │ │ │ └── guard.go │ │ │ ├── metalinter.go │ │ │ ├── pkgerrors │ │ │ │ ├── errors.go │ │ │ │ ├── extract.go │ │ │ │ └── parse.go │ │ │ ├── position.go │ │ │ ├── runner.go │ │ │ ├── runner_action.go │ │ │ ├── runner_action_cache.go │ │ │ ├── runner_checker.go │ │ │ ├── runner_loadingpackage.go │ │ │ ├── runners.go │ │ │ └── runners_cache.go │ │ │ ├── goformatters │ │ │ ├── analyzer.go │ │ │ ├── formatters.go │ │ │ ├── gci │ │ │ │ ├── gci.go │ │ │ │ └── internal │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── config │ │ │ │ │ └── config.go │ │ │ │ │ └── section │ │ │ │ │ ├── parser.go │ │ │ │ │ ├── section.go │ │ │ │ │ ├── standard.go │ │ │ │ │ └── standard_list.go │ │ │ ├── gofmt │ │ │ │ └── gofmt.go │ │ │ ├── gofumpt │ │ │ │ └── gofumpt.go │ │ │ ├── goimports │ │ │ │ └── goimports.go │ │ │ ├── internal │ │ │ │ ├── commons.go │ │ │ │ └── diff.go │ │ │ └── meta_formatter.go │ │ │ ├── golinters │ │ │ ├── asasalint │ │ │ │ └── asasalint.go │ │ │ ├── asciicheck │ │ │ │ └── asciicheck.go │ │ │ ├── bidichk │ │ │ │ └── bidichk.go │ │ │ ├── bodyclose │ │ │ │ └── bodyclose.go │ │ │ ├── canonicalheader │ │ │ │ └── canonicalheader.go │ │ │ ├── containedctx │ │ │ │ └── containedctx.go │ │ │ ├── contextcheck │ │ │ │ └── contextcheck.go │ │ │ ├── copyloopvar │ │ │ │ └── copyloopvar.go │ │ │ ├── cyclop │ │ │ │ └── cyclop.go │ │ │ ├── decorder │ │ │ │ └── decorder.go │ │ │ ├── depguard │ │ │ │ └── depguard.go │ │ │ ├── dogsled │ │ │ │ └── dogsled.go │ │ │ ├── dupl │ │ │ │ └── dupl.go │ │ │ ├── dupword │ │ │ │ └── dupword.go │ │ │ ├── durationcheck │ │ │ │ └── durationcheck.go │ │ │ ├── err113 │ │ │ │ └── err113.go │ │ │ ├── errcheck │ │ │ │ └── errcheck.go │ │ │ ├── errchkjson │ │ │ │ └── errchkjson.go │ │ │ ├── errname │ │ │ │ └── errname.go │ │ │ ├── errorlint │ │ │ │ └── errorlint.go │ │ │ ├── exhaustive │ │ │ │ └── exhaustive.go │ │ │ ├── exhaustruct │ │ │ │ └── exhaustruct.go │ │ │ ├── exptostd │ │ │ │ └── exptostd.go │ │ │ ├── fatcontext │ │ │ │ └── fatcontext.go │ │ │ ├── forbidigo │ │ │ │ └── forbidigo.go │ │ │ ├── forcetypeassert │ │ │ │ └── forcetypeassert.go │ │ │ ├── funlen │ │ │ │ └── funlen.go │ │ │ ├── gci │ │ │ │ └── gci.go │ │ │ ├── ginkgolinter │ │ │ │ └── ginkgolinter.go │ │ │ ├── gocheckcompilerdirectives │ │ │ │ └── gocheckcompilerdirectives.go │ │ │ ├── gochecknoglobals │ │ │ │ └── gochecknoglobals.go │ │ │ ├── gochecknoinits │ │ │ │ └── gochecknoinits.go │ │ │ ├── gochecksumtype │ │ │ │ └── gochecksumtype.go │ │ │ ├── gocognit │ │ │ │ └── gocognit.go │ │ │ ├── goconst │ │ │ │ └── goconst.go │ │ │ ├── gocritic │ │ │ │ └── gocritic.go │ │ │ ├── gocyclo │ │ │ │ └── gocyclo.go │ │ │ ├── godot │ │ │ │ └── godot.go │ │ │ ├── godox │ │ │ │ └── godox.go │ │ │ ├── gofmt │ │ │ │ └── gofmt.go │ │ │ ├── gofumpt │ │ │ │ └── gofumpt.go │ │ │ ├── goheader │ │ │ │ └── goheader.go │ │ │ ├── goimports │ │ │ │ └── goimports.go │ │ │ ├── gomoddirectives │ │ │ │ └── gomoddirectives.go │ │ │ ├── gomodguard │ │ │ │ └── gomodguard.go │ │ │ ├── goprintffuncname │ │ │ │ └── goprintffuncname.go │ │ │ ├── gosec │ │ │ │ └── gosec.go │ │ │ ├── gosimple │ │ │ │ └── gosimple.go │ │ │ ├── gosmopolitan │ │ │ │ └── gosmopolitan.go │ │ │ ├── govet │ │ │ │ └── govet.go │ │ │ ├── grouper │ │ │ │ └── grouper.go │ │ │ ├── iface │ │ │ │ └── iface.go │ │ │ ├── importas │ │ │ │ └── importas.go │ │ │ ├── inamedparam │ │ │ │ └── inamedparam.go │ │ │ ├── ineffassign │ │ │ │ └── ineffassign.go │ │ │ ├── interfacebloat │ │ │ │ └── interfacebloat.go │ │ │ ├── internal │ │ │ │ ├── commons.go │ │ │ │ ├── staticcheck_common.go │ │ │ │ └── util.go │ │ │ ├── intrange │ │ │ │ └── intrange.go │ │ │ ├── ireturn │ │ │ │ └── ireturn.go │ │ │ ├── lll │ │ │ │ └── lll.go │ │ │ ├── loggercheck │ │ │ │ └── loggercheck.go │ │ │ ├── maintidx │ │ │ │ └── maintidx.go │ │ │ ├── makezero │ │ │ │ └── makezero.go │ │ │ ├── mirror │ │ │ │ └── mirror.go │ │ │ ├── misspell │ │ │ │ └── misspell.go │ │ │ ├── mnd │ │ │ │ └── mnd.go │ │ │ ├── musttag │ │ │ │ └── musttag.go │ │ │ ├── nakedret │ │ │ │ └── nakedret.go │ │ │ ├── nestif │ │ │ │ └── nestif.go │ │ │ ├── nilerr │ │ │ │ └── nilerr.go │ │ │ ├── nilnesserr │ │ │ │ └── nilnesserr.go │ │ │ ├── nilnil │ │ │ │ └── nilnil.go │ │ │ ├── nlreturn │ │ │ │ └── nlreturn.go │ │ │ ├── noctx │ │ │ │ └── noctx.go │ │ │ ├── nolintlint │ │ │ │ ├── internal │ │ │ │ │ ├── README.md │ │ │ │ │ ├── issues.go │ │ │ │ │ └── nolintlint.go │ │ │ │ └── nolintlint.go │ │ │ ├── nonamedreturns │ │ │ │ └── nonamedreturns.go │ │ │ ├── nosprintfhostport │ │ │ │ └── nosprintfhostport.go │ │ │ ├── paralleltest │ │ │ │ └── paralleltest.go │ │ │ ├── perfsprint │ │ │ │ └── perfsprint.go │ │ │ ├── prealloc │ │ │ │ └── prealloc.go │ │ │ ├── predeclared │ │ │ │ └── predeclared.go │ │ │ ├── promlinter │ │ │ │ └── promlinter.go │ │ │ ├── protogetter │ │ │ │ └── protogetter.go │ │ │ ├── reassign │ │ │ │ └── reassign.go │ │ │ ├── recvcheck │ │ │ │ └── recvcheck.go │ │ │ ├── revive │ │ │ │ └── revive.go │ │ │ ├── rowserrcheck │ │ │ │ └── rowserrcheck.go │ │ │ ├── sloglint │ │ │ │ └── sloglint.go │ │ │ ├── spancheck │ │ │ │ └── spancheck.go │ │ │ ├── sqlclosecheck │ │ │ │ └── sqlclosecheck.go │ │ │ ├── staticcheck │ │ │ │ └── staticcheck.go │ │ │ ├── stylecheck │ │ │ │ └── stylecheck.go │ │ │ ├── tagalign │ │ │ │ └── tagalign.go │ │ │ ├── tagliatelle │ │ │ │ └── tagliatelle.go │ │ │ ├── tenv │ │ │ │ └── tenv.go │ │ │ ├── testableexamples │ │ │ │ └── testableexamples.go │ │ │ ├── testifylint │ │ │ │ └── testifylint.go │ │ │ ├── testpackage │ │ │ │ └── testpackage.go │ │ │ ├── thelper │ │ │ │ └── thelper.go │ │ │ ├── tparallel │ │ │ │ └── tparallel.go │ │ │ ├── typecheck.go │ │ │ ├── unconvert │ │ │ │ └── unconvert.go │ │ │ ├── unparam │ │ │ │ └── unparam.go │ │ │ ├── unused │ │ │ │ └── unused.go │ │ │ ├── usestdlibvars │ │ │ │ └── usestdlibvars.go │ │ │ ├── usetesting │ │ │ │ └── usetesting.go │ │ │ ├── varnamelen │ │ │ │ └── varnamelen.go │ │ │ ├── wastedassign │ │ │ │ └── wastedassign.go │ │ │ ├── whitespace │ │ │ │ └── whitespace.go │ │ │ ├── wrapcheck │ │ │ │ └── wrapcheck.go │ │ │ ├── wsl │ │ │ │ └── wsl.go │ │ │ └── zerologlint │ │ │ │ └── zerologlint.go │ │ │ ├── goutil │ │ │ ├── env.go │ │ │ └── version.go │ │ │ ├── lint │ │ │ ├── context.go │ │ │ ├── linter │ │ │ │ ├── config.go │ │ │ │ ├── context.go │ │ │ │ └── linter.go │ │ │ ├── lintersdb │ │ │ │ ├── builder_linter.go │ │ │ │ ├── builder_plugin_go.go │ │ │ │ ├── builder_plugin_module.go │ │ │ │ ├── manager.go │ │ │ │ └── validator.go │ │ │ ├── package.go │ │ │ └── runner.go │ │ │ ├── logutils │ │ │ ├── log.go │ │ │ ├── logutils.go │ │ │ ├── mock.go │ │ │ ├── out.go │ │ │ └── stderr_log.go │ │ │ ├── printers │ │ │ ├── checkstyle.go │ │ │ ├── codeclimate.go │ │ │ ├── githubaction.go │ │ │ ├── html.go │ │ │ ├── json.go │ │ │ ├── junitxml.go │ │ │ ├── printer.go │ │ │ ├── sarif.go │ │ │ ├── tab.go │ │ │ ├── teamcity.go │ │ │ └── text.go │ │ │ ├── report │ │ │ ├── data.go │ │ │ └── log.go │ │ │ ├── result │ │ │ ├── issue.go │ │ │ └── processors │ │ │ │ ├── base_rule.go │ │ │ │ ├── cgo.go │ │ │ │ ├── diff.go │ │ │ │ ├── exclusion_generated_file_filter.go │ │ │ │ ├── exclusion_paths.go │ │ │ │ ├── exclusion_presets.go │ │ │ │ ├── exclusion_rules.go │ │ │ │ ├── filename_unadjuster.go │ │ │ │ ├── fixer.go │ │ │ │ ├── identifier_marker.go │ │ │ │ ├── invalid_issue.go │ │ │ │ ├── issues.go │ │ │ │ ├── max_from_linter.go │ │ │ │ ├── max_per_file_from_linter.go │ │ │ │ ├── max_same_issues.go │ │ │ │ ├── nolint_filter.go │ │ │ │ ├── path_absoluter.go │ │ │ │ ├── path_prettifier.go │ │ │ │ ├── path_relativity.go │ │ │ │ ├── path_shortener.go │ │ │ │ ├── processor.go │ │ │ │ ├── severity.go │ │ │ │ ├── skip_dirs.go │ │ │ │ ├── skip_files.go │ │ │ │ ├── sort_results.go │ │ │ │ ├── source_code.go │ │ │ │ └── uniq_by_line.go │ │ │ └── timeutils │ │ │ └── stopwatch.go │ ├── misspell │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .pre-commit-hooks.yaml │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── RELEASE-HOWTO.md │ │ ├── ascii.go │ │ ├── case.go │ │ ├── goreleaser.yml │ │ ├── install-misspell.sh │ │ ├── legal.go │ │ ├── mime.go │ │ ├── notwords.go │ │ ├── replace.go │ │ ├── stringreplacer.go │ │ ├── stringreplacer_test.gox │ │ ├── url.go │ │ └── words.go │ ├── plugin-module-register │ │ ├── LICENSE │ │ └── register │ │ │ └── register.go │ ├── revgrep │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── issue.go │ │ ├── patch.go │ │ └── revgrep.go │ └── unconvert │ │ ├── LICENSE │ │ ├── README.md │ │ ├── golangci.go │ │ └── unconvert.go ├── google │ ├── btree │ │ ├── LICENSE │ │ ├── README.md │ │ ├── btree.go │ │ └── btree_generic.go │ ├── 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 │ │ │ ├── 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 │ ├── go-github │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── github │ │ │ ├── activity.go │ │ │ ├── activity_events.go │ │ │ ├── activity_notifications.go │ │ │ ├── activity_star.go │ │ │ ├── activity_watching.go │ │ │ ├── admin.go │ │ │ ├── admin_stats.go │ │ │ ├── apps.go │ │ │ ├── apps_installation.go │ │ │ ├── apps_marketplace.go │ │ │ ├── authorizations.go │ │ │ ├── checks.go │ │ │ ├── doc.go │ │ │ ├── event_types.go │ │ │ ├── gists.go │ │ │ ├── gists_comments.go │ │ │ ├── git.go │ │ │ ├── git_blobs.go │ │ │ ├── git_commits.go │ │ │ ├── git_refs.go │ │ │ ├── git_tags.go │ │ │ ├── git_trees.go │ │ │ ├── github-accessors.go │ │ │ ├── github.go │ │ │ ├── gitignore.go │ │ │ ├── issues.go │ │ │ ├── issues_assignees.go │ │ │ ├── issues_comments.go │ │ │ ├── issues_events.go │ │ │ ├── issues_labels.go │ │ │ ├── issues_milestones.go │ │ │ ├── issues_timeline.go │ │ │ ├── licenses.go │ │ │ ├── messages.go │ │ │ ├── migrations.go │ │ │ ├── migrations_source_import.go │ │ │ ├── migrations_user.go │ │ │ ├── misc.go │ │ │ ├── orgs.go │ │ │ ├── orgs_hooks.go │ │ │ ├── orgs_members.go │ │ │ ├── orgs_outside_collaborators.go │ │ │ ├── orgs_projects.go │ │ │ ├── orgs_users_blocking.go │ │ │ ├── projects.go │ │ │ ├── pulls.go │ │ │ ├── pulls_comments.go │ │ │ ├── pulls_reviewers.go │ │ │ ├── pulls_reviews.go │ │ │ ├── reactions.go │ │ │ ├── repos.go │ │ │ ├── repos_collaborators.go │ │ │ ├── repos_comments.go │ │ │ ├── repos_commits.go │ │ │ ├── repos_community_health.go │ │ │ ├── repos_contents.go │ │ │ ├── repos_deployments.go │ │ │ ├── repos_forks.go │ │ │ ├── repos_hooks.go │ │ │ ├── repos_invitations.go │ │ │ ├── repos_keys.go │ │ │ ├── repos_merging.go │ │ │ ├── repos_pages.go │ │ │ ├── repos_prereceive_hooks.go │ │ │ ├── repos_projects.go │ │ │ ├── repos_releases.go │ │ │ ├── repos_stats.go │ │ │ ├── repos_statuses.go │ │ │ ├── repos_traffic.go │ │ │ ├── search.go │ │ │ ├── strings.go │ │ │ ├── teams.go │ │ │ ├── teams_discussion_comments.go │ │ │ ├── teams_discussions.go │ │ │ ├── teams_members.go │ │ │ ├── timestamp.go │ │ │ ├── users.go │ │ │ ├── users_administration.go │ │ │ ├── users_blocking.go │ │ │ ├── users_emails.go │ │ │ ├── users_followers.go │ │ │ ├── users_gpg_keys.go │ │ │ ├── users_keys.go │ │ │ ├── with_appengine.go │ │ │ └── without_appengine.go │ │ ├── v45 │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ └── github │ │ │ │ ├── actions.go │ │ │ │ ├── actions_artifacts.go │ │ │ │ ├── actions_runner_groups.go │ │ │ │ ├── actions_runners.go │ │ │ │ ├── actions_secrets.go │ │ │ │ ├── actions_workflow_jobs.go │ │ │ │ ├── actions_workflow_runs.go │ │ │ │ ├── actions_workflows.go │ │ │ │ ├── activity.go │ │ │ │ ├── activity_events.go │ │ │ │ ├── activity_notifications.go │ │ │ │ ├── activity_star.go │ │ │ │ ├── activity_watching.go │ │ │ │ ├── admin.go │ │ │ │ ├── admin_orgs.go │ │ │ │ ├── admin_stats.go │ │ │ │ ├── admin_users.go │ │ │ │ ├── apps.go │ │ │ │ ├── apps_hooks.go │ │ │ │ ├── apps_hooks_deliveries.go │ │ │ │ ├── apps_installation.go │ │ │ │ ├── apps_manifest.go │ │ │ │ ├── apps_marketplace.go │ │ │ │ ├── authorizations.go │ │ │ │ ├── billing.go │ │ │ │ ├── checks.go │ │ │ │ ├── code-scanning.go │ │ │ │ ├── dependabot.go │ │ │ │ ├── dependabot_secrets.go │ │ │ │ ├── doc.go │ │ │ │ ├── enterprise.go │ │ │ │ ├── enterprise_actions_runners.go │ │ │ │ ├── enterprise_audit_log.go │ │ │ │ ├── event.go │ │ │ │ ├── event_types.go │ │ │ │ ├── gists.go │ │ │ │ ├── gists_comments.go │ │ │ │ ├── git.go │ │ │ │ ├── git_blobs.go │ │ │ │ ├── git_commits.go │ │ │ │ ├── git_refs.go │ │ │ │ ├── git_tags.go │ │ │ │ ├── git_trees.go │ │ │ │ ├── github-accessors.go │ │ │ │ ├── github.go │ │ │ │ ├── gitignore.go │ │ │ │ ├── interactions.go │ │ │ │ ├── interactions_orgs.go │ │ │ │ ├── interactions_repos.go │ │ │ │ ├── issue_import.go │ │ │ │ ├── issues.go │ │ │ │ ├── issues_assignees.go │ │ │ │ ├── issues_comments.go │ │ │ │ ├── issues_events.go │ │ │ │ ├── issues_labels.go │ │ │ │ ├── issues_milestones.go │ │ │ │ ├── issues_timeline.go │ │ │ │ ├── licenses.go │ │ │ │ ├── messages.go │ │ │ │ ├── migrations.go │ │ │ │ ├── migrations_source_import.go │ │ │ │ ├── migrations_user.go │ │ │ │ ├── misc.go │ │ │ │ ├── orgs.go │ │ │ │ ├── orgs_actions_allowed.go │ │ │ │ ├── orgs_actions_permissions.go │ │ │ │ ├── orgs_audit_log.go │ │ │ │ ├── orgs_custom_roles.go │ │ │ │ ├── orgs_hooks.go │ │ │ │ ├── orgs_hooks_deliveries.go │ │ │ │ ├── orgs_members.go │ │ │ │ ├── orgs_outside_collaborators.go │ │ │ │ ├── orgs_packages.go │ │ │ │ ├── orgs_projects.go │ │ │ │ ├── orgs_users_blocking.go │ │ │ │ ├── packages.go │ │ │ │ ├── projects.go │ │ │ │ ├── pulls.go │ │ │ │ ├── pulls_comments.go │ │ │ │ ├── pulls_reviewers.go │ │ │ │ ├── pulls_reviews.go │ │ │ │ ├── pulls_threads.go │ │ │ │ ├── reactions.go │ │ │ │ ├── repos.go │ │ │ │ ├── repos_actions_allowed.go │ │ │ │ ├── repos_actions_permissions.go │ │ │ │ ├── repos_autolinks.go │ │ │ │ ├── repos_collaborators.go │ │ │ │ ├── repos_comments.go │ │ │ │ ├── repos_commits.go │ │ │ │ ├── repos_community_health.go │ │ │ │ ├── repos_contents.go │ │ │ │ ├── repos_deployments.go │ │ │ │ ├── repos_environments.go │ │ │ │ ├── repos_forks.go │ │ │ │ ├── repos_hooks.go │ │ │ │ ├── repos_hooks_deliveries.go │ │ │ │ ├── repos_invitations.go │ │ │ │ ├── repos_keys.go │ │ │ │ ├── repos_merging.go │ │ │ │ ├── repos_pages.go │ │ │ │ ├── repos_prereceive_hooks.go │ │ │ │ ├── repos_projects.go │ │ │ │ ├── repos_releases.go │ │ │ │ ├── repos_stats.go │ │ │ │ ├── repos_statuses.go │ │ │ │ ├── repos_traffic.go │ │ │ │ ├── scim.go │ │ │ │ ├── search.go │ │ │ │ ├── secret_scanning.go │ │ │ │ ├── strings.go │ │ │ │ ├── teams.go │ │ │ │ ├── teams_discussion_comments.go │ │ │ │ ├── teams_discussions.go │ │ │ │ ├── teams_members.go │ │ │ │ ├── timestamp.go │ │ │ │ ├── users.go │ │ │ │ ├── users_administration.go │ │ │ │ ├── users_blocking.go │ │ │ │ ├── users_emails.go │ │ │ │ ├── users_followers.go │ │ │ │ ├── users_gpg_keys.go │ │ │ │ ├── users_keys.go │ │ │ │ ├── users_packages.go │ │ │ │ ├── users_projects.go │ │ │ │ ├── with_appengine.go │ │ │ │ └── without_appengine.go │ │ └── v47 │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ └── github │ │ │ ├── actions.go │ │ │ ├── actions_artifacts.go │ │ │ ├── actions_runner_groups.go │ │ │ ├── actions_runners.go │ │ │ ├── actions_secrets.go │ │ │ ├── actions_workflow_jobs.go │ │ │ ├── actions_workflow_runs.go │ │ │ ├── actions_workflows.go │ │ │ ├── activity.go │ │ │ ├── activity_events.go │ │ │ ├── activity_notifications.go │ │ │ ├── activity_star.go │ │ │ ├── activity_watching.go │ │ │ ├── admin.go │ │ │ ├── admin_orgs.go │ │ │ ├── admin_stats.go │ │ │ ├── admin_users.go │ │ │ ├── apps.go │ │ │ ├── apps_hooks.go │ │ │ ├── apps_hooks_deliveries.go │ │ │ ├── apps_installation.go │ │ │ ├── apps_manifest.go │ │ │ ├── apps_marketplace.go │ │ │ ├── authorizations.go │ │ │ ├── billing.go │ │ │ ├── checks.go │ │ │ ├── code-scanning.go │ │ │ ├── dependabot.go │ │ │ ├── dependabot_secrets.go │ │ │ ├── doc.go │ │ │ ├── enterprise.go │ │ │ ├── enterprise_actions_runners.go │ │ │ ├── enterprise_audit_log.go │ │ │ ├── event.go │ │ │ ├── event_types.go │ │ │ ├── gists.go │ │ │ ├── gists_comments.go │ │ │ ├── git.go │ │ │ ├── git_blobs.go │ │ │ ├── git_commits.go │ │ │ ├── git_refs.go │ │ │ ├── git_tags.go │ │ │ ├── git_trees.go │ │ │ ├── github-accessors.go │ │ │ ├── github.go │ │ │ ├── gitignore.go │ │ │ ├── interactions.go │ │ │ ├── interactions_orgs.go │ │ │ ├── interactions_repos.go │ │ │ ├── issue_import.go │ │ │ ├── issues.go │ │ │ ├── issues_assignees.go │ │ │ ├── issues_comments.go │ │ │ ├── issues_events.go │ │ │ ├── issues_labels.go │ │ │ ├── issues_milestones.go │ │ │ ├── issues_timeline.go │ │ │ ├── licenses.go │ │ │ ├── messages.go │ │ │ ├── migrations.go │ │ │ ├── migrations_source_import.go │ │ │ ├── migrations_user.go │ │ │ ├── misc.go │ │ │ ├── orgs.go │ │ │ ├── orgs_actions_allowed.go │ │ │ ├── orgs_actions_permissions.go │ │ │ ├── orgs_audit_log.go │ │ │ ├── orgs_custom_roles.go │ │ │ ├── orgs_hooks.go │ │ │ ├── orgs_hooks_deliveries.go │ │ │ ├── orgs_members.go │ │ │ ├── orgs_outside_collaborators.go │ │ │ ├── orgs_packages.go │ │ │ ├── orgs_projects.go │ │ │ ├── orgs_users_blocking.go │ │ │ ├── packages.go │ │ │ ├── projects.go │ │ │ ├── pulls.go │ │ │ ├── pulls_comments.go │ │ │ ├── pulls_reviewers.go │ │ │ ├── pulls_reviews.go │ │ │ ├── pulls_threads.go │ │ │ ├── reactions.go │ │ │ ├── repos.go │ │ │ ├── repos_actions_allowed.go │ │ │ ├── repos_actions_permissions.go │ │ │ ├── repos_autolinks.go │ │ │ ├── repos_codeowners.go │ │ │ ├── repos_collaborators.go │ │ │ ├── repos_comments.go │ │ │ ├── repos_commits.go │ │ │ ├── repos_community_health.go │ │ │ ├── repos_contents.go │ │ │ ├── repos_deployments.go │ │ │ ├── repos_environments.go │ │ │ ├── repos_forks.go │ │ │ ├── repos_hooks.go │ │ │ ├── repos_hooks_deliveries.go │ │ │ ├── repos_invitations.go │ │ │ ├── repos_keys.go │ │ │ ├── repos_lfs.go │ │ │ ├── repos_merging.go │ │ │ ├── repos_pages.go │ │ │ ├── repos_prereceive_hooks.go │ │ │ ├── repos_projects.go │ │ │ ├── repos_releases.go │ │ │ ├── repos_stats.go │ │ │ ├── repos_statuses.go │ │ │ ├── repos_tags.go │ │ │ ├── repos_traffic.go │ │ │ ├── scim.go │ │ │ ├── search.go │ │ │ ├── secret_scanning.go │ │ │ ├── strings.go │ │ │ ├── teams.go │ │ │ ├── teams_discussion_comments.go │ │ │ ├── teams_discussions.go │ │ │ ├── teams_members.go │ │ │ ├── timestamp.go │ │ │ ├── users.go │ │ │ ├── users_administration.go │ │ │ ├── users_blocking.go │ │ │ ├── users_emails.go │ │ │ ├── users_followers.go │ │ │ ├── users_gpg_keys.go │ │ │ ├── users_keys.go │ │ │ ├── users_packages.go │ │ │ ├── users_projects.go │ │ │ ├── with_appengine.go │ │ │ └── without_appengine.go │ ├── go-querystring │ │ ├── LICENSE │ │ └── query │ │ │ └── encode.go │ ├── pprof │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ └── profile │ │ │ ├── encode.go │ │ │ ├── filter.go │ │ │ ├── index.go │ │ │ ├── legacy_java_profile.go │ │ │ ├── legacy_profile.go │ │ │ ├── merge.go │ │ │ ├── profile.go │ │ │ ├── proto.go │ │ │ └── prune.go │ ├── renameio │ │ └── v2 │ │ │ ├── .golangci.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── maybe │ │ │ ├── doc.go │ │ │ ├── maybe_unix.go │ │ │ └── maybe_windows.go │ │ │ ├── option.go │ │ │ ├── tempfile.go │ │ │ └── writefile.go │ ├── s2a-go │ │ ├── .gitignore │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── fallback │ │ │ └── s2a_fallback.go │ │ ├── internal │ │ │ ├── authinfo │ │ │ │ └── authinfo.go │ │ │ ├── handshaker │ │ │ │ ├── handshaker.go │ │ │ │ └── service │ │ │ │ │ └── service.go │ │ │ ├── proto │ │ │ │ ├── common_go_proto │ │ │ │ │ └── common.pb.go │ │ │ │ ├── s2a_context_go_proto │ │ │ │ │ └── s2a_context.pb.go │ │ │ │ ├── s2a_go_proto │ │ │ │ │ ├── s2a.pb.go │ │ │ │ │ └── s2a_grpc.pb.go │ │ │ │ └── v2 │ │ │ │ │ ├── common_go_proto │ │ │ │ │ └── common.pb.go │ │ │ │ │ ├── s2a_context_go_proto │ │ │ │ │ └── s2a_context.pb.go │ │ │ │ │ └── s2a_go_proto │ │ │ │ │ ├── s2a.pb.go │ │ │ │ │ └── s2a_grpc.pb.go │ │ │ ├── record │ │ │ │ ├── internal │ │ │ │ │ ├── aeadcrypter │ │ │ │ │ │ ├── aeadcrypter.go │ │ │ │ │ │ ├── aesgcm.go │ │ │ │ │ │ ├── chachapoly.go │ │ │ │ │ │ └── common.go │ │ │ │ │ └── halfconn │ │ │ │ │ │ ├── ciphersuite.go │ │ │ │ │ │ ├── counter.go │ │ │ │ │ │ ├── expander.go │ │ │ │ │ │ └── halfconn.go │ │ │ │ ├── record.go │ │ │ │ └── ticketsender.go │ │ │ ├── tokenmanager │ │ │ │ └── tokenmanager.go │ │ │ └── v2 │ │ │ │ ├── README.md │ │ │ │ ├── certverifier │ │ │ │ └── certverifier.go │ │ │ │ ├── remotesigner │ │ │ │ └── remotesigner.go │ │ │ │ ├── s2av2.go │ │ │ │ └── tlsconfigstore │ │ │ │ └── tlsconfigstore.go │ │ ├── retry │ │ │ └── retry.go │ │ ├── s2a.go │ │ ├── s2a_options.go │ │ ├── s2a_utils.go │ │ └── stream │ │ │ └── s2a_stream.go │ ├── shlex │ │ ├── COPYING │ │ ├── README │ │ └── shlex.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 ├── googleapis │ ├── enterprise-certificate-proxy │ │ ├── LICENSE │ │ └── client │ │ │ ├── client.go │ │ │ └── util │ │ │ └── util.go │ └── gax-go │ │ └── v2 │ │ ├── .release-please-manifest.json │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ ├── apierror │ │ ├── apierror.go │ │ └── internal │ │ │ └── proto │ │ │ ├── README.md │ │ │ ├── custom_error.pb.go │ │ │ ├── custom_error.proto │ │ │ ├── error.pb.go │ │ │ └── error.proto │ │ ├── call_option.go │ │ ├── callctx │ │ └── callctx.go │ │ ├── content_type.go │ │ ├── gax.go │ │ ├── header.go │ │ ├── internal │ │ └── version.go │ │ ├── internallog │ │ ├── grpclog │ │ │ └── grpclog.go │ │ ├── internal │ │ │ └── internal.go │ │ └── internallog.go │ │ ├── invoke.go │ │ ├── iterator │ │ └── iterator.go │ │ ├── proto_json_stream.go │ │ └── release-please-config.json ├── gordonklaus │ └── ineffassign │ │ ├── LICENSE │ │ └── pkg │ │ └── ineffassign │ │ └── ineffassign.go ├── gorilla │ ├── handlers │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── canonical.go │ │ ├── compress.go │ │ ├── cors.go │ │ ├── doc.go │ │ ├── handlers.go │ │ ├── logging.go │ │ ├── proxy_headers.go │ │ └── recovery.go │ └── mux │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── doc.go │ │ ├── middleware.go │ │ ├── mux.go │ │ ├── regexp.go │ │ ├── route.go │ │ └── test_helpers.go ├── gostaticanalysis │ ├── analysisutil │ │ ├── LICENSE │ │ ├── README.md │ │ ├── call.go │ │ ├── diagnostic.go │ │ ├── file.go │ │ ├── pkg.go │ │ ├── ssa.go │ │ ├── ssainspect.go │ │ └── types.go │ ├── comment │ │ ├── .tagpr │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── comment.go │ │ ├── passes │ │ │ └── commentmap │ │ │ │ └── commentmap.go │ │ └── version.txt │ ├── forcetypeassert │ │ ├── .reviewdog.yml │ │ ├── .tagpr │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── forcetypeassert.go │ │ └── version.txt │ └── nilerr │ │ ├── LICENSE │ │ ├── README.md │ │ └── nilerr.go ├── gregjones │ └── httpcache │ │ ├── .travis.yml │ │ ├── LICENSE.txt │ │ ├── README.md │ │ └── httpcache.go ├── hashicorp │ ├── go-cleanhttp │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cleanhttp.go │ │ ├── doc.go │ │ └── handlers.go │ ├── go-getter │ │ ├── .gitignore │ │ ├── .goreleaser.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── checksum.go │ │ ├── client.go │ │ ├── client_mode.go │ │ ├── client_option.go │ │ ├── client_option_insecure.go │ │ ├── client_option_progress.go │ │ ├── common.go │ │ ├── copy_dir.go │ │ ├── decompress.go │ │ ├── decompress_bzip2.go │ │ ├── decompress_gzip.go │ │ ├── decompress_tar.go │ │ ├── decompress_tbz2.go │ │ ├── decompress_testing.go │ │ ├── decompress_tgz.go │ │ ├── decompress_txz.go │ │ ├── decompress_tzst.go │ │ ├── decompress_xz.go │ │ ├── decompress_zip.go │ │ ├── decompress_zstd.go │ │ ├── detect.go │ │ ├── detect_bitbucket.go │ │ ├── detect_file.go │ │ ├── detect_gcs.go │ │ ├── detect_git.go │ │ ├── detect_github.go │ │ ├── detect_gitlab.go │ │ ├── detect_s3.go │ │ ├── detect_ssh.go │ │ ├── folder_storage.go │ │ ├── get.go │ │ ├── get_base.go │ │ ├── get_file.go │ │ ├── get_file_copy.go │ │ ├── get_file_unix.go │ │ ├── get_file_windows.go │ │ ├── get_gcs.go │ │ ├── get_git.go │ │ ├── get_hg.go │ │ ├── get_http.go │ │ ├── get_mock.go │ │ ├── get_s3.go │ │ ├── helper │ │ │ └── url │ │ │ │ ├── url.go │ │ │ │ ├── url_unix.go │ │ │ │ └── url_windows.go │ │ ├── netrc.go │ │ ├── source.go │ │ ├── storage.go │ │ └── url.go │ ├── go-immutable-radix │ │ └── v2 │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── edges.go │ │ │ ├── iradix.go │ │ │ ├── iter.go │ │ │ ├── node.go │ │ │ ├── path_iter.go │ │ │ ├── raw_iter.go │ │ │ └── reverse_iter.go │ ├── go-safetemp │ │ ├── LICENSE │ │ ├── README.md │ │ └── safetemp.go │ ├── go-version │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── constraint.go │ │ ├── version.go │ │ └── version_collection.go │ ├── golang-lru │ │ └── v2 │ │ │ ├── LICENSE │ │ │ ├── internal │ │ │ └── list.go │ │ │ └── simplelru │ │ │ ├── LICENSE_list │ │ │ ├── lru.go │ │ │ └── lru_interface.go │ ├── hcl │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── decoder.go │ │ ├── hcl.go │ │ ├── hcl │ │ │ ├── ast │ │ │ │ ├── ast.go │ │ │ │ └── walk.go │ │ │ ├── parser │ │ │ │ ├── error.go │ │ │ │ └── parser.go │ │ │ ├── printer │ │ │ │ ├── nodes.go │ │ │ │ └── printer.go │ │ │ ├── scanner │ │ │ │ └── scanner.go │ │ │ ├── strconv │ │ │ │ └── quote.go │ │ │ └── token │ │ │ │ ├── position.go │ │ │ │ └── token.go │ │ ├── json │ │ │ ├── parser │ │ │ │ ├── flatten.go │ │ │ │ └── parser.go │ │ │ ├── scanner │ │ │ │ └── scanner.go │ │ │ └── token │ │ │ │ ├── position.go │ │ │ │ └── token.go │ │ ├── lex.go │ │ ├── parse.go │ │ └── v2 │ │ │ ├── .copywrite.hcl │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── diagnostic.go │ │ │ ├── diagnostic_text.go │ │ │ ├── diagnostic_typeparams.go │ │ │ ├── didyoumean.go │ │ │ ├── doc.go │ │ │ ├── eval_context.go │ │ │ ├── expr_call.go │ │ │ ├── expr_list.go │ │ │ ├── expr_map.go │ │ │ ├── expr_unwrap.go │ │ │ ├── ext │ │ │ └── customdecode │ │ │ │ ├── README.md │ │ │ │ ├── customdecode.go │ │ │ │ └── expression_type.go │ │ │ ├── gohcl │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ ├── encode.go │ │ │ ├── schema.go │ │ │ └── types.go │ │ │ ├── hclparse │ │ │ └── parser.go │ │ │ ├── hclsyntax │ │ │ ├── diagnostics.go │ │ │ ├── didyoumean.go │ │ │ ├── doc.go │ │ │ ├── expression.go │ │ │ ├── expression_ops.go │ │ │ ├── expression_template.go │ │ │ ├── expression_vars.go │ │ │ ├── file.go │ │ │ ├── generate.go │ │ │ ├── keywords.go │ │ │ ├── navigation.go │ │ │ ├── node.go │ │ │ ├── parser.go │ │ │ ├── parser_template.go │ │ │ ├── parser_traversal.go │ │ │ ├── peeker.go │ │ │ ├── public.go │ │ │ ├── scan_string_lit.go │ │ │ ├── scan_string_lit.rl │ │ │ ├── scan_tokens.go │ │ │ ├── scan_tokens.rl │ │ │ ├── spec.md │ │ │ ├── structure.go │ │ │ ├── structure_at_pos.go │ │ │ ├── token.go │ │ │ ├── token_type_string.go │ │ │ ├── unicode2ragel.rb │ │ │ ├── unicode_derived.rl │ │ │ ├── variables.go │ │ │ └── walk.go │ │ │ ├── hclwrite │ │ │ ├── ast.go │ │ │ ├── ast_attribute.go │ │ │ ├── ast_block.go │ │ │ ├── ast_body.go │ │ │ ├── ast_expression.go │ │ │ ├── doc.go │ │ │ ├── format.go │ │ │ ├── generate.go │ │ │ ├── native_node_sorter.go │ │ │ ├── node.go │ │ │ ├── parser.go │ │ │ ├── public.go │ │ │ └── tokens.go │ │ │ ├── json │ │ │ ├── ast.go │ │ │ ├── didyoumean.go │ │ │ ├── doc.go │ │ │ ├── is.go │ │ │ ├── navigation.go │ │ │ ├── parser.go │ │ │ ├── peeker.go │ │ │ ├── public.go │ │ │ ├── scanner.go │ │ │ ├── spec.md │ │ │ ├── structure.go │ │ │ └── tokentype_string.go │ │ │ ├── merged.go │ │ │ ├── ops.go │ │ │ ├── pos.go │ │ │ ├── pos_scanner.go │ │ │ ├── schema.go │ │ │ ├── spec.md │ │ │ ├── static_expr.go │ │ │ ├── structure.go │ │ │ ├── structure_at_pos.go │ │ │ ├── tools.go │ │ │ ├── traversal.go │ │ │ └── traversal_for_expr.go │ └── terraform-config-inspect │ │ ├── LICENSE │ │ └── tfconfig │ │ ├── diagnostic.go │ │ ├── doc.go │ │ ├── filesystem.go │ │ ├── load.go │ │ ├── load_hcl.go │ │ ├── load_legacy.go │ │ ├── markdown.go │ │ ├── module.go │ │ ├── module_call.go │ │ ├── output.go │ │ ├── provider_ref.go │ │ ├── resource.go │ │ ├── schema.go │ │ ├── source_pos.go │ │ └── variable.go ├── hexops │ └── gotextdiff │ │ ├── LICENSE │ │ ├── README.md │ │ ├── diff.go │ │ ├── myers │ │ └── diff.go │ │ ├── span │ │ ├── parse.go │ │ ├── span.go │ │ ├── token.go │ │ ├── token111.go │ │ ├── token112.go │ │ ├── uri.go │ │ └── utf16.go │ │ └── unified.go ├── huandu │ └── xstrings │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── common.go │ │ ├── convert.go │ │ ├── count.go │ │ ├── doc.go │ │ ├── format.go │ │ ├── manipulate.go │ │ ├── stringbuilder.go │ │ ├── stringbuilder_go110.go │ │ └── translate.go ├── inconshreveable │ └── mousetrap │ │ ├── LICENSE │ │ ├── README.md │ │ ├── trap_others.go │ │ └── trap_windows.go ├── jessevdk │ └── go-flags │ │ ├── LICENSE │ │ ├── README.md │ │ ├── arg.go │ │ ├── check_crosscompile.sh │ │ ├── closest.go │ │ ├── command.go │ │ ├── completion.go │ │ ├── convert.go │ │ ├── error.go │ │ ├── flags.go │ │ ├── group.go │ │ ├── help.go │ │ ├── ini.go │ │ ├── man.go │ │ ├── multitag.go │ │ ├── option.go │ │ ├── optstyle_other.go │ │ ├── optstyle_windows.go │ │ ├── parser.go │ │ ├── termsize.go │ │ ├── termsize_nosysioctl.go │ │ └── termsize_windows.go ├── jgautheron │ └── goconst │ │ ├── LICENSE │ │ ├── README.md │ │ ├── api.go │ │ ├── parser.go │ │ └── visitor.go ├── jingyugao │ └── rowserrcheck │ │ ├── LICENSE │ │ └── passes │ │ └── rowserr │ │ └── rowserr.go ├── jjti │ └── go-spancheck │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── config.go │ │ ├── doc.go │ │ ├── go.work │ │ ├── go.work.sum │ │ └── spancheck.go ├── jmespath │ └── go-jmespath │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── api.go │ │ ├── astnodetype_string.go │ │ ├── functions.go │ │ ├── interpreter.go │ │ ├── lexer.go │ │ ├── parser.go │ │ ├── toktype_string.go │ │ └── util.go ├── josharian │ └── intern │ │ ├── README.md │ │ ├── intern.go │ │ └── license.md ├── jpillora │ └── backoff │ │ ├── LICENSE │ │ ├── README.md │ │ └── backoff.go ├── json-iterator │ └── go │ │ ├── .codecov.yml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── adapter.go │ │ ├── any.go │ │ ├── any_array.go │ │ ├── any_bool.go │ │ ├── any_float.go │ │ ├── any_int32.go │ │ ├── any_int64.go │ │ ├── any_invalid.go │ │ ├── any_nil.go │ │ ├── any_number.go │ │ ├── any_object.go │ │ ├── any_str.go │ │ ├── any_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 ├── julz │ └── importas │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── analyzer.go │ │ ├── config.go │ │ └── flags.go ├── karamaru-alpha │ └── copyloopvar │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ └── copyloopvar.go ├── kballard │ └── go-shellquote │ │ ├── LICENSE │ │ ├── README │ │ ├── doc.go │ │ ├── quote.go │ │ └── unquote.go ├── kisielk │ └── errcheck │ │ ├── LICENSE │ │ ├── README.md │ │ ├── errcheck │ │ ├── analyzer.go │ │ ├── embedded_walker.go │ │ ├── embedded_walker_121.go │ │ ├── embedded_walker_122.go │ │ ├── errcheck.go │ │ └── excludes.go │ │ └── main.go ├── kkHAIKE │ └── contextcheck │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ └── contextcheck.go ├── klauspost │ └── compress │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .goreleaser.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── compressible.go │ │ ├── fse │ │ ├── README.md │ │ ├── bitreader.go │ │ ├── bitwriter.go │ │ ├── bytereader.go │ │ ├── compress.go │ │ ├── decompress.go │ │ └── fse.go │ │ ├── gen.sh │ │ ├── huff0 │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bitreader.go │ │ ├── bitwriter.go │ │ ├── compress.go │ │ ├── decompress.go │ │ ├── decompress_amd64.go │ │ ├── decompress_amd64.s │ │ ├── decompress_generic.go │ │ └── huff0.go │ │ ├── internal │ │ ├── cpuinfo │ │ │ ├── cpuinfo.go │ │ │ ├── cpuinfo_amd64.go │ │ │ └── cpuinfo_amd64.s │ │ ├── le │ │ │ ├── le.go │ │ │ ├── unsafe_disabled.go │ │ │ └── unsafe_enabled.go │ │ └── snapref │ │ │ ├── LICENSE │ │ │ ├── decode.go │ │ │ ├── decode_other.go │ │ │ ├── encode.go │ │ │ ├── encode_other.go │ │ │ └── snappy.go │ │ ├── s2sx.mod │ │ ├── s2sx.sum │ │ └── zstd │ │ ├── README.md │ │ ├── bitreader.go │ │ ├── bitwriter.go │ │ ├── blockdec.go │ │ ├── blockenc.go │ │ ├── blocktype_string.go │ │ ├── bytebuf.go │ │ ├── bytereader.go │ │ ├── decodeheader.go │ │ ├── decoder.go │ │ ├── decoder_options.go │ │ ├── dict.go │ │ ├── enc_base.go │ │ ├── enc_best.go │ │ ├── enc_better.go │ │ ├── enc_dfast.go │ │ ├── enc_fast.go │ │ ├── encoder.go │ │ ├── encoder_options.go │ │ ├── framedec.go │ │ ├── frameenc.go │ │ ├── fse_decoder.go │ │ ├── fse_decoder_amd64.go │ │ ├── fse_decoder_amd64.s │ │ ├── fse_decoder_generic.go │ │ ├── fse_encoder.go │ │ ├── fse_predefined.go │ │ ├── hash.go │ │ ├── history.go │ │ ├── internal │ │ └── xxhash │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── xxhash.go │ │ │ ├── xxhash_amd64.s │ │ │ ├── xxhash_arm64.s │ │ │ ├── xxhash_asm.go │ │ │ ├── xxhash_other.go │ │ │ └── xxhash_safe.go │ │ ├── matchlen_amd64.go │ │ ├── matchlen_amd64.s │ │ ├── matchlen_generic.go │ │ ├── seqdec.go │ │ ├── seqdec_amd64.go │ │ ├── seqdec_amd64.s │ │ ├── seqdec_generic.go │ │ ├── seqenc.go │ │ ├── snappy.go │ │ ├── zip.go │ │ └── zstd.go ├── kr │ ├── pretty │ │ ├── .gitignore │ │ ├── License │ │ ├── Readme │ │ ├── diff.go │ │ ├── formatter.go │ │ ├── pretty.go │ │ └── zero.go │ └── text │ │ ├── License │ │ ├── Readme │ │ ├── doc.go │ │ ├── indent.go │ │ └── wrap.go ├── kulti │ └── thelper │ │ ├── LICENSE │ │ └── pkg │ │ └── analyzer │ │ ├── analyzer.go │ │ └── report.go ├── kunwardeep │ └── paralleltest │ │ ├── LICENSE │ │ └── pkg │ │ └── paralleltest │ │ └── paralleltest.go ├── kylelemons │ └── godebug │ │ ├── LICENSE │ │ └── diff │ │ └── diff.go ├── lasiar │ └── canonicalheader │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── .goreleaser.yaml │ │ ├── LICENCE │ │ ├── README.md │ │ ├── analyzer.go │ │ ├── constant_string.go │ │ ├── initialism.go │ │ ├── literal_string.go │ │ └── makefile ├── ldez │ ├── exptostd │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── exptostd.go │ │ └── readme.md │ ├── gomoddirectives │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── gomoddirectives.go │ │ ├── module.go │ │ └── readme.md │ ├── grignotin │ │ ├── goenv │ │ │ ├── goenv.go │ │ │ └── names.go │ │ └── gomod │ │ │ └── gomod.go │ ├── tagliatelle │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── converter.go │ │ ├── readme.md │ │ └── tagliatelle.go │ └── usetesting │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── readme.md │ │ ├── report.go │ │ └── usetesting.go ├── leonklingele │ └── grouper │ │ ├── LICENSE │ │ └── pkg │ │ └── analyzer │ │ ├── analyzer.go │ │ ├── config.go │ │ ├── consts │ │ ├── analyzer.go │ │ └── config.go │ │ ├── flags.go │ │ ├── globals │ │ └── analyzer.go │ │ ├── imports │ │ ├── analyzer.go │ │ └── config.go │ │ ├── types │ │ ├── analyzer.go │ │ └── config.go │ │ └── vars │ │ ├── analyzer.go │ │ └── config.go ├── liggitt │ └── tabwriter │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── tabwriter.go ├── macabu │ └── inamedparam │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE-MIT │ │ ├── README.md │ │ └── inamedparam.go ├── magiconair │ └── properties │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── decode.go │ │ ├── doc.go │ │ ├── integrate.go │ │ ├── lex.go │ │ ├── load.go │ │ ├── parser.go │ │ ├── properties.go │ │ └── rangecheck.go ├── mailru │ └── easyjson │ │ ├── LICENSE │ │ ├── buffer │ │ └── pool.go │ │ ├── jlexer │ │ ├── bytestostr.go │ │ ├── bytestostr_nounsafe.go │ │ ├── error.go │ │ └── lexer.go │ │ └── jwriter │ │ └── writer.go ├── manifoldco │ └── promptui │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── codes.go │ │ ├── cursor.go │ │ ├── keycodes.go │ │ ├── keycodes_other.go │ │ ├── keycodes_windows.go │ │ ├── list │ │ └── list.go │ │ ├── prompt.go │ │ ├── promptui.go │ │ ├── screenbuf │ │ └── screenbuf.go │ │ ├── select.go │ │ ├── styles.go │ │ └── styles_windows.go ├── maratori │ ├── testableexamples │ │ ├── LICENSE │ │ └── pkg │ │ │ └── testableexamples │ │ │ └── testableexamples.go │ └── testpackage │ │ ├── LICENSE │ │ └── pkg │ │ └── testpackage │ │ └── testpackage.go ├── matoous │ └── godox │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .revive.toml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ └── godox.go ├── mattn │ ├── go-colorable │ │ ├── LICENSE │ │ ├── README.md │ │ ├── colorable_others.go │ │ ├── colorable_windows.go │ │ ├── go.test.sh │ │ └── noncolorable.go │ ├── go-isatty │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── go.test.sh │ │ ├── isatty_bsd.go │ │ ├── isatty_others.go │ │ ├── isatty_plan9.go │ │ ├── isatty_solaris.go │ │ ├── isatty_tcgets.go │ │ └── isatty_windows.go │ └── go-runewidth │ │ ├── LICENSE │ │ ├── README.md │ │ ├── runewidth.go │ │ ├── runewidth_appengine.go │ │ ├── runewidth_js.go │ │ ├── runewidth_posix.go │ │ ├── runewidth_table.go │ │ └── runewidth_windows.go ├── mgechev │ └── revive │ │ ├── LICENSE │ │ ├── config │ │ └── config.go │ │ ├── formatter │ │ ├── checkstyle.go │ │ ├── default.go │ │ ├── doc.go │ │ ├── friendly.go │ │ ├── json.go │ │ ├── ndjson.go │ │ ├── plain.go │ │ ├── sarif.go │ │ ├── severity.go │ │ ├── stylish.go │ │ └── unix.go │ │ ├── internal │ │ ├── astutils │ │ │ └── ast_utils.go │ │ ├── ifelse │ │ │ ├── args.go │ │ │ ├── branch.go │ │ │ ├── branch_kind.go │ │ │ ├── chain.go │ │ │ ├── doc.go │ │ │ ├── func.go │ │ │ ├── rule.go │ │ │ └── target.go │ │ └── typeparams │ │ │ ├── typeparams.go │ │ │ ├── typeparams_go117.go │ │ │ └── typeparams_go118.go │ │ ├── lint │ │ ├── config.go │ │ ├── doc.go │ │ ├── failure.go │ │ ├── file.go │ │ ├── filefilter.go │ │ ├── formatter.go │ │ ├── linter.go │ │ ├── name.go │ │ ├── package.go │ │ └── rule.go │ │ └── rule │ │ ├── add_constant.go │ │ ├── argument_limit.go │ │ ├── atomic.go │ │ ├── banned_characters.go │ │ ├── bare_return.go │ │ ├── blank_imports.go │ │ ├── bool_literal_in_expr.go │ │ ├── call_to_gc.go │ │ ├── cognitive_complexity.go │ │ ├── comment_spacings.go │ │ ├── comments_density.go │ │ ├── confusing_naming.go │ │ ├── confusing_results.go │ │ ├── constant_logical_expr.go │ │ ├── context_as_argument.go │ │ ├── context_keys_type.go │ │ ├── cyclomatic.go │ │ ├── datarace.go │ │ ├── deep_exit.go │ │ ├── defer.go │ │ ├── doc.go │ │ ├── dot_imports.go │ │ ├── duplicated_imports.go │ │ ├── early_return.go │ │ ├── empty_block.go │ │ ├── empty_lines.go │ │ ├── enforce_map_style.go │ │ ├── enforce_repeated_arg_type_style.go │ │ ├── enforce_slice_style.go │ │ ├── error_naming.go │ │ ├── error_return.go │ │ ├── error_strings.go │ │ ├── errorf.go │ │ ├── exported.go │ │ ├── file_header.go │ │ ├── file_length_limit.go │ │ ├── filename_format.go │ │ ├── flag_param.go │ │ ├── function_length.go │ │ ├── function_result_limit.go │ │ ├── get_return.go │ │ ├── identical_branches.go │ │ ├── if_return.go │ │ ├── import_alias_naming.go │ │ ├── import_shadowing.go │ │ ├── imports_blocklist.go │ │ ├── increment_decrement.go │ │ ├── indent_error_flow.go │ │ ├── line_length_limit.go │ │ ├── max_control_nesting.go │ │ ├── max_public_structs.go │ │ ├── modifies_param.go │ │ ├── modifies_value_receiver.go │ │ ├── nested_structs.go │ │ ├── optimize_operands_order.go │ │ ├── package_comments.go │ │ ├── range.go │ │ ├── range_val_address.go │ │ ├── range_val_in_closure.go │ │ ├── receiver_naming.go │ │ ├── redefines_builtin_id.go │ │ ├── redundant_build_tag.go │ │ ├── redundant_import_alias.go │ │ ├── redundant_test_main_exit.go │ │ ├── string_format.go │ │ ├── string_of_int.go │ │ ├── struct_tag.go │ │ ├── superfluous_else.go │ │ ├── time_equal.go │ │ ├── time_naming.go │ │ ├── unchecked_type_assertion.go │ │ ├── unconditional_recursion.go │ │ ├── unexported_naming.go │ │ ├── unexported_return.go │ │ ├── unhandled_error.go │ │ ├── unnecessary_stmt.go │ │ ├── unreachable_code.go │ │ ├── unused_param.go │ │ ├── unused_receiver.go │ │ ├── use_any.go │ │ ├── use_errors_new.go │ │ ├── useless_break.go │ │ ├── utils.go │ │ ├── var_declarations.go │ │ ├── var_naming.go │ │ └── waitgroup_by_value.go ├── mgutz │ └── ansi │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── ansi.go │ │ ├── doc.go │ │ └── print.go ├── mikefarah │ └── yq │ │ └── v3 │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── Dockerfile │ │ ├── Dockerfile.dev │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── Makefile.variables │ │ ├── README.md │ │ ├── action.yml │ │ ├── cmd │ │ ├── compare.go │ │ ├── constant.go │ │ ├── delete.go │ │ ├── merge.go │ │ ├── new.go │ │ ├── prefix.go │ │ ├── read.go │ │ ├── root.go │ │ ├── shell_completion.go │ │ ├── utils.go │ │ ├── validate.go │ │ ├── version.go │ │ └── write.go │ │ ├── compare.sh │ │ ├── mkdocs.yml │ │ ├── pkg │ │ └── yqlib │ │ │ ├── color_print.go │ │ │ ├── data_navigator.go │ │ │ ├── delete_navigation_strategy.go │ │ │ ├── encoder.go │ │ │ ├── filter_matching_node_navigation_strategy.go │ │ │ ├── lib.go │ │ │ ├── merge_navigation_strategy.go │ │ │ ├── navigation_strategy.go │ │ │ ├── path_parser.go │ │ │ ├── read_for_merge_navigation_strategy.go │ │ │ ├── read_navigation_strategy.go │ │ │ ├── update_navigation_strategy.go │ │ │ └── value_parser.go │ │ ├── release_instructions.txt │ │ └── yq.go ├── mitchellh │ ├── colorstring │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── colorstring.go │ ├── copystructure │ │ ├── LICENSE │ │ ├── README.md │ │ ├── copier_time.go │ │ └── copystructure.go │ ├── go-homedir │ │ ├── LICENSE │ │ ├── README.md │ │ └── homedir.go │ ├── go-testing-interface │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── testing.go │ ├── go-wordwrap │ │ ├── LICENSE.md │ │ ├── README.md │ │ └── wordwrap.go │ ├── gox │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── env_override.go │ │ ├── go.go │ │ ├── main.go │ │ ├── main_osarch.go │ │ ├── platform.go │ │ ├── platform_flag.go │ │ └── toolchain.go │ ├── iochan │ │ ├── LICENSE.md │ │ ├── README.md │ │ └── iochan.go │ ├── mapstructure │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decode_hooks.go │ │ ├── error.go │ │ └── mapstructure.go │ └── reflectwalk │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── location.go │ │ ├── location_string.go │ │ └── reflectwalk.go ├── moby │ └── term │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── ascii.go │ │ ├── doc.go │ │ ├── proxy.go │ │ ├── term.go │ │ ├── term_unix.go │ │ ├── term_windows.go │ │ ├── termios_bsd.go │ │ ├── termios_nonbsd.go │ │ ├── termios_unix.go │ │ ├── termios_windows.go │ │ └── windows │ │ ├── ansi_reader.go │ │ ├── ansi_writer.go │ │ ├── console.go │ │ └── doc.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 ├── monochromegane │ └── go-gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── depth_holder.go │ │ ├── full_scan_patterns.go │ │ ├── gitignore.go │ │ ├── index_scan_patterns.go │ │ ├── initial_holder.go │ │ ├── match.go │ │ ├── pattern.go │ │ ├── patterns.go │ │ └── util.go ├── moricho │ └── tparallel │ │ ├── .gitignore │ │ ├── .goreleaser.yaml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── pkg │ │ ├── ssafunc │ │ │ └── ssafunc.go │ │ └── ssainstr │ │ │ └── ssainstr.go │ │ ├── testmap.go │ │ └── tparallel.go ├── munnerz │ └── goautoneg │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.txt │ │ └── autoneg.go ├── nakabonne │ └── nestif │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ └── nestif.go ├── nishanths │ ├── exhaustive │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── comment.go │ │ ├── comment_go121.go │ │ ├── comment_pre_go121.go │ │ ├── common.go │ │ ├── doc.go │ │ ├── enum.go │ │ ├── exhaustive.go │ │ ├── fact.go │ │ ├── flag.go │ │ ├── map.go │ │ └── switch.go │ └── predeclared │ │ ├── LICENSE │ │ └── passes │ │ └── predeclared │ │ ├── go18.go │ │ ├── pre_go18.go │ │ └── predeclared.go ├── nunnatsa │ └── ginkgolinter │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── analyzer.go │ │ ├── doc.go │ │ ├── internal │ │ ├── expression │ │ │ ├── actual │ │ │ │ ├── actual.go │ │ │ │ ├── actualarg.go │ │ │ │ ├── asyncactual.go │ │ │ │ ├── asyncfuncarg.go │ │ │ │ └── comparisonAsserion.go │ │ │ ├── expression.go │ │ │ ├── matcher │ │ │ │ ├── bematchers.go │ │ │ │ ├── benumericmatcher.go │ │ │ │ ├── equalmatcher.go │ │ │ │ ├── errormatchers.go │ │ │ │ ├── lenmatchers.go │ │ │ │ ├── matcher.go │ │ │ │ ├── matcherinfo.go │ │ │ │ ├── matcherwithnest.go │ │ │ │ └── multiplematchers.go │ │ │ └── value │ │ │ │ └── value.go │ │ ├── formatter │ │ │ └── formatter.go │ │ ├── ginkgohandler │ │ │ ├── dothandler.go │ │ │ ├── ginkgoinfo.go │ │ │ ├── handler.go │ │ │ ├── handling.go │ │ │ └── namehandler.go │ │ ├── ginkgoinfo │ │ │ └── ginkgoinfo.go │ │ ├── gomegahandler │ │ │ ├── dothandler.go │ │ │ ├── handler.go │ │ │ └── namedhandler.go │ │ ├── gomegainfo │ │ │ └── gomegainfo.go │ │ ├── interfaces │ │ │ └── interfaces.go │ │ ├── intervals │ │ │ └── intervals.go │ │ ├── reports │ │ │ └── report-builder.go │ │ ├── reverseassertion │ │ │ └── reverse_assertion.go │ │ └── rules │ │ │ ├── asyncfunccallrule.go │ │ │ ├── asyncsucceedrule.go │ │ │ ├── asynctimeintervalsrule.go │ │ │ ├── caprule.go │ │ │ ├── comparepointerrule.go │ │ │ ├── comparisonrule.go │ │ │ ├── doublenegativerule.go │ │ │ ├── equalboolrule.go │ │ │ ├── equaldifferenttypesrule.go │ │ │ ├── equalnilrule.go │ │ │ ├── errorequalnilrule.go │ │ │ ├── forceexpecttorule.go │ │ │ ├── havelen0.go │ │ │ ├── haveoccurredrule.go │ │ │ ├── lenrule.go │ │ │ ├── matcheronlyrule.go │ │ │ ├── matcherrorrule.go │ │ │ ├── missingassertionrule.go │ │ │ ├── nilcomparerule.go │ │ │ ├── rule.go │ │ │ └── succeedrule.go │ │ ├── linter │ │ └── ginkgo_linter.go │ │ ├── types │ │ └── config.go │ │ └── version │ │ └── version.go ├── oklog │ └── ulid │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── AUTHORS.md │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── README.md │ │ └── ulid.go ├── olekukonko │ └── tablewriter │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── csv.go │ │ ├── table.go │ │ ├── table_with_color.go │ │ ├── util.go │ │ └── wrap.go ├── onsi │ ├── ginkgo │ │ └── v2 │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── RELEASING.md │ │ │ ├── config │ │ │ └── deprecated.go │ │ │ ├── core_dsl.go │ │ │ ├── decorator_dsl.go │ │ │ ├── deprecated_dsl.go │ │ │ ├── formatter │ │ │ ├── colorable_others.go │ │ │ ├── colorable_windows.go │ │ │ └── formatter.go │ │ │ ├── ginkgo │ │ │ ├── build │ │ │ │ └── build_command.go │ │ │ ├── command │ │ │ │ ├── abort.go │ │ │ │ ├── command.go │ │ │ │ └── program.go │ │ │ ├── generators │ │ │ │ ├── boostrap_templates.go │ │ │ │ ├── bootstrap_command.go │ │ │ │ ├── generate_command.go │ │ │ │ ├── generate_templates.go │ │ │ │ └── generators_common.go │ │ │ ├── internal │ │ │ │ ├── compile.go │ │ │ │ ├── gocovmerge.go │ │ │ │ ├── profiles_and_reports.go │ │ │ │ ├── run.go │ │ │ │ ├── test_suite.go │ │ │ │ ├── utils.go │ │ │ │ └── verify_version.go │ │ │ ├── labels │ │ │ │ └── labels_command.go │ │ │ ├── main.go │ │ │ ├── outline │ │ │ │ ├── ginkgo.go │ │ │ │ ├── import.go │ │ │ │ ├── outline.go │ │ │ │ └── outline_command.go │ │ │ ├── run │ │ │ │ └── run_command.go │ │ │ ├── unfocus │ │ │ │ └── unfocus_command.go │ │ │ └── watch │ │ │ │ ├── delta.go │ │ │ │ ├── delta_tracker.go │ │ │ │ ├── dependencies.go │ │ │ │ ├── package_hash.go │ │ │ │ ├── package_hashes.go │ │ │ │ ├── suite.go │ │ │ │ └── watch_command.go │ │ │ ├── ginkgo_cli_dependencies.go │ │ │ ├── ginkgo_t_dsl.go │ │ │ ├── internal │ │ │ ├── counter.go │ │ │ ├── failer.go │ │ │ ├── focus.go │ │ │ ├── global │ │ │ │ └── init.go │ │ │ ├── group.go │ │ │ ├── interrupt_handler │ │ │ │ ├── interrupt_handler.go │ │ │ │ ├── sigquit_swallower_unix.go │ │ │ │ └── sigquit_swallower_windows.go │ │ │ ├── node.go │ │ │ ├── ordering.go │ │ │ ├── output_interceptor.go │ │ │ ├── output_interceptor_unix.go │ │ │ ├── output_interceptor_wasm.go │ │ │ ├── output_interceptor_win.go │ │ │ ├── parallel_support │ │ │ │ ├── client_server.go │ │ │ │ ├── http_client.go │ │ │ │ ├── http_server.go │ │ │ │ ├── rpc_client.go │ │ │ │ ├── rpc_server.go │ │ │ │ └── server_handler.go │ │ │ ├── progress_report.go │ │ │ ├── progress_report_bsd.go │ │ │ ├── progress_report_unix.go │ │ │ ├── progress_report_wasm.go │ │ │ ├── progress_report_win.go │ │ │ ├── progress_reporter_manager.go │ │ │ ├── report_entry.go │ │ │ ├── spec.go │ │ │ ├── spec_context.go │ │ │ ├── suite.go │ │ │ ├── testingtproxy │ │ │ │ └── testing_t_proxy.go │ │ │ ├── tree.go │ │ │ └── writer.go │ │ │ ├── reporters │ │ │ ├── default_reporter.go │ │ │ ├── deprecated_reporter.go │ │ │ ├── json_report.go │ │ │ ├── junit_report.go │ │ │ ├── reporter.go │ │ │ └── teamcity_report.go │ │ │ ├── reporting_dsl.go │ │ │ ├── table_dsl.go │ │ │ └── types │ │ │ ├── code_location.go │ │ │ ├── config.go │ │ │ ├── deprecated_types.go │ │ │ ├── deprecation_support.go │ │ │ ├── enum_support.go │ │ │ ├── errors.go │ │ │ ├── file_filter.go │ │ │ ├── flags.go │ │ │ ├── label_filter.go │ │ │ ├── report_entry.go │ │ │ ├── types.go │ │ │ └── version.go │ └── gomega │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── RELEASING.md │ │ ├── format │ │ └── format.go │ │ ├── gomega_dsl.go │ │ ├── internal │ │ ├── assertion.go │ │ ├── async_assertion.go │ │ ├── duration_bundle.go │ │ ├── gomega.go │ │ ├── gutil │ │ │ ├── post_ioutil.go │ │ │ └── using_ioutil.go │ │ ├── polling_signal_error.go │ │ └── vetoptdesc.go │ │ ├── matchers.go │ │ ├── matchers │ │ ├── and.go │ │ ├── assignable_to_type_of_matcher.go │ │ ├── attributes_slice.go │ │ ├── be_a_directory.go │ │ ├── be_a_regular_file.go │ │ ├── be_an_existing_file.go │ │ ├── be_closed_matcher.go │ │ ├── be_comparable_to_matcher.go │ │ ├── be_element_of_matcher.go │ │ ├── be_empty_matcher.go │ │ ├── be_equivalent_to_matcher.go │ │ ├── be_false_matcher.go │ │ ├── be_identical_to.go │ │ ├── be_key_of_matcher.go │ │ ├── be_nil_matcher.go │ │ ├── be_numerically_matcher.go │ │ ├── be_sent_matcher.go │ │ ├── be_temporally_matcher.go │ │ ├── be_true_matcher.go │ │ ├── be_zero_matcher.go │ │ ├── consist_of.go │ │ ├── contain_element_matcher.go │ │ ├── contain_elements_matcher.go │ │ ├── contain_substring_matcher.go │ │ ├── equal_matcher.go │ │ ├── have_cap_matcher.go │ │ ├── have_each_matcher.go │ │ ├── have_exact_elements.go │ │ ├── have_existing_field_matcher.go │ │ ├── have_field.go │ │ ├── have_http_body_matcher.go │ │ ├── have_http_header_with_value_matcher.go │ │ ├── have_http_status_matcher.go │ │ ├── have_key_matcher.go │ │ ├── have_key_with_value_matcher.go │ │ ├── have_len_matcher.go │ │ ├── have_occurred_matcher.go │ │ ├── have_prefix_matcher.go │ │ ├── have_suffix_matcher.go │ │ ├── have_value.go │ │ ├── internal │ │ │ └── miter │ │ │ │ ├── type_support_iter.go │ │ │ │ └── type_support_noiter.go │ │ ├── match_error_matcher.go │ │ ├── match_json_matcher.go │ │ ├── match_regexp_matcher.go │ │ ├── match_xml_matcher.go │ │ ├── match_yaml_matcher.go │ │ ├── not.go │ │ ├── or.go │ │ ├── panic_matcher.go │ │ ├── receive_matcher.go │ │ ├── satisfy_matcher.go │ │ ├── semi_structured_data_support.go │ │ ├── succeed_matcher.go │ │ ├── support │ │ │ └── goraph │ │ │ │ ├── bipartitegraph │ │ │ │ ├── bipartitegraph.go │ │ │ │ └── bipartitegraphmatching.go │ │ │ │ ├── edge │ │ │ │ └── edge.go │ │ │ │ ├── node │ │ │ │ └── node.go │ │ │ │ └── util │ │ │ │ └── util.go │ │ ├── type_support.go │ │ └── with_transform.go │ │ └── types │ │ └── types.go ├── patrickmn │ └── go-cache │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cache.go │ │ └── sharded.go ├── pelletier │ └── go-toml │ │ └── v2 │ │ ├── .dockerignore │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.toml │ │ ├── .goreleaser.yaml │ │ ├── CONTRIBUTING.md │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── ci.sh │ │ ├── decode.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── internal │ │ ├── characters │ │ │ ├── ascii.go │ │ │ └── utf8.go │ │ ├── danger │ │ │ ├── danger.go │ │ │ └── typeid.go │ │ └── tracker │ │ │ ├── key.go │ │ │ ├── seen.go │ │ │ └── tracker.go │ │ ├── localtime.go │ │ ├── marshaler.go │ │ ├── strict.go │ │ ├── toml.abnf │ │ ├── types.go │ │ ├── unmarshaler.go │ │ └── unstable │ │ ├── ast.go │ │ ├── builder.go │ │ ├── doc.go │ │ ├── kind.go │ │ ├── parser.go │ │ ├── scanner.go │ │ └── unmarshaler.go ├── peterbourgon │ └── diskv │ │ ├── LICENSE │ │ ├── README.md │ │ ├── compression.go │ │ ├── diskv.go │ │ └── index.go ├── pkg │ └── errors │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── errors.go │ │ ├── go113.go │ │ └── stack.go ├── planetscale │ └── vtprotobuf │ │ ├── LICENSE │ │ ├── protohelpers │ │ └── protohelpers.go │ │ └── types │ │ └── known │ │ ├── anypb │ │ └── any_vtproto.pb.go │ │ ├── durationpb │ │ └── duration_vtproto.pb.go │ │ ├── emptypb │ │ └── empty_vtproto.pb.go │ │ ├── structpb │ │ └── struct_vtproto.pb.go │ │ ├── timestamppb │ │ └── timestamp_vtproto.pb.go │ │ └── wrapperspb │ │ └── wrappers_vtproto.pb.go ├── pmezard │ └── go-difflib │ │ ├── LICENSE │ │ └── difflib │ │ └── difflib.go ├── polyfloyd │ └── go-errorlint │ │ ├── LICENSE │ │ └── errorlint │ │ ├── allowed.go │ │ ├── analysis.go │ │ ├── lint.go │ │ ├── options.go │ │ └── printf.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 │ │ │ ├── collectors │ │ │ ├── collectors.go │ │ │ ├── dbstats_collector.go │ │ │ ├── expvar_collector.go │ │ │ ├── go_collector_go116.go │ │ │ ├── go_collector_latest.go │ │ │ └── process_collector.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 │ │ │ ├── testutil │ │ │ └── promlint │ │ │ │ ├── problem.go │ │ │ │ ├── promlint.go │ │ │ │ ├── validation.go │ │ │ │ └── validations │ │ │ │ ├── counter_validations.go │ │ │ │ ├── duplicate_validations.go │ │ │ │ ├── generic_name_validations.go │ │ │ │ ├── help_validations.go │ │ │ │ ├── histogram_validations.go │ │ │ │ └── units.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 │ └── 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_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_status.go │ │ ├── proc_sys.go │ │ ├── schedstat.go │ │ ├── slab.go │ │ ├── softirqs.go │ │ ├── stat.go │ │ ├── swaps.go │ │ ├── thread.go │ │ ├── ttar │ │ ├── vm.go │ │ └── zoneinfo.go ├── quasilyte │ ├── go-ruleguard │ │ ├── LICENSE │ │ ├── dsl │ │ │ ├── LICENSE │ │ │ ├── bundle.go │ │ │ ├── do.go │ │ │ ├── dsl.go │ │ │ ├── filter.go │ │ │ ├── internal.go │ │ │ └── types │ │ │ │ ├── ext.go │ │ │ │ ├── type_impl.go │ │ │ │ └── types.go │ │ ├── internal │ │ │ ├── goenv │ │ │ │ └── goenv.go │ │ │ ├── golist │ │ │ │ └── golist.go │ │ │ ├── xsrcimporter │ │ │ │ └── xsrcimporter.go │ │ │ └── xtypes │ │ │ │ └── xtypes.go │ │ └── ruleguard │ │ │ ├── ast_walker.go │ │ │ ├── bundle.go │ │ │ ├── engine.go │ │ │ ├── filters.go │ │ │ ├── go_version.go │ │ │ ├── gorule.go │ │ │ ├── goutil │ │ │ ├── goutil.go │ │ │ └── resolve.go │ │ │ ├── importer.go │ │ │ ├── ir │ │ │ ├── filter_op.gen.go │ │ │ ├── gen_filter_op.go │ │ │ └── ir.go │ │ │ ├── ir_loader.go │ │ │ ├── ir_utils.go │ │ │ ├── irconv │ │ │ └── irconv.go │ │ │ ├── libdsl.go │ │ │ ├── match_data.go │ │ │ ├── nodepath.go │ │ │ ├── profiling │ │ │ ├── no_labels.go │ │ │ └── with_labels.go │ │ │ ├── quasigo │ │ │ ├── compile.go │ │ │ ├── debug_info.go │ │ │ ├── disasm.go │ │ │ ├── env.go │ │ │ ├── eval.go │ │ │ ├── gen_opcodes.go │ │ │ ├── opcode_string.go │ │ │ ├── opcodes.gen.go │ │ │ ├── quasigo.go │ │ │ ├── stdlib │ │ │ │ ├── qfmt │ │ │ │ │ └── qfmt.go │ │ │ │ ├── qstrconv │ │ │ │ │ └── qstrconv.go │ │ │ │ └── qstrings │ │ │ │ │ └── qstrings.go │ │ │ └── utils.go │ │ │ ├── ruleguard.go │ │ │ ├── runner.go │ │ │ ├── textmatch │ │ │ ├── compile.go │ │ │ ├── matchers.go │ │ │ └── textmatch.go │ │ │ ├── typematch │ │ │ ├── patternop_string.go │ │ │ └── typematch.go │ │ │ └── utils.go │ ├── gogrep │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── compile.go │ │ ├── compile_import.go │ │ ├── gen_operations.go │ │ ├── gogrep.go │ │ ├── instructions.go │ │ ├── internal │ │ │ └── stdinfo │ │ │ │ └── stdinfo.go │ │ ├── match.go │ │ ├── nodetag │ │ │ └── nodetag.go │ │ ├── operation_string.go │ │ ├── operations.gen.go │ │ ├── parse.go │ │ └── slices.go │ ├── regex │ │ └── syntax │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── ast.go │ │ │ ├── errors.go │ │ │ ├── lexer.go │ │ │ ├── operation.go │ │ │ ├── operation_string.go │ │ │ ├── parser.go │ │ │ ├── pos.go │ │ │ ├── tokenkind_string.go │ │ │ └── utils.go │ └── stdinfo │ │ ├── LICENSE │ │ ├── stdinfo.go │ │ └── stdinfo_gen.go ├── raeperd │ └── recvcheck │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ └── analyzer.go ├── rivo │ └── uniseg │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── doc.go │ │ ├── eastasianwidth.go │ │ ├── emojipresentation.go │ │ ├── gen_breaktest.go │ │ ├── gen_properties.go │ │ ├── grapheme.go │ │ ├── graphemeproperties.go │ │ ├── graphemerules.go │ │ ├── line.go │ │ ├── lineproperties.go │ │ ├── linerules.go │ │ ├── properties.go │ │ ├── sentence.go │ │ ├── sentenceproperties.go │ │ ├── sentencerules.go │ │ ├── step.go │ │ ├── width.go │ │ ├── word.go │ │ ├── wordproperties.go │ │ └── wordrules.go ├── rodaine │ └── hclencoder │ │ ├── LICENSE │ │ ├── hclencoder.go │ │ ├── nodes.go │ │ ├── readme.md │ │ └── walker.go ├── rogpeppe │ └── go-internal │ │ ├── LICENSE │ │ ├── diff │ │ └── diff.go │ │ ├── fmtsort │ │ ├── mapelem.go │ │ └── sort.go │ │ ├── internal │ │ └── syscall │ │ │ └── windows │ │ │ ├── mksyscall.go │ │ │ ├── psapi_windows.go │ │ │ ├── reparse_windows.go │ │ │ ├── security_windows.go │ │ │ ├── symlink_windows.go │ │ │ ├── syscall_windows.go │ │ │ ├── sysdll │ │ │ └── sysdll.go │ │ │ └── zsyscall_windows.go │ │ └── lockedfile │ │ ├── internal │ │ └── filelock │ │ │ ├── filelock.go │ │ │ ├── filelock_fcntl.go │ │ │ ├── filelock_other.go │ │ │ ├── filelock_unix.go │ │ │ └── filelock_windows.go │ │ ├── lockedfile.go │ │ ├── lockedfile_filelock.go │ │ ├── lockedfile_plan9.go │ │ └── mutex.go ├── russross │ └── blackfriday │ │ └── v2 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── block.go │ │ ├── doc.go │ │ ├── entities.go │ │ ├── esc.go │ │ ├── html.go │ │ ├── inline.go │ │ ├── markdown.go │ │ ├── node.go │ │ └── smartypants.go ├── ryancurrah │ └── gomodguard │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .goreleaser.yml │ │ ├── Dockerfile │ │ ├── Dockerfile.goreleaser │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── allowed.go │ │ ├── blocked.go │ │ ├── issue.go │ │ └── processor.go ├── ryanrolds │ └── sqlclosecheck │ │ ├── LICENSE │ │ └── pkg │ │ └── analyzer │ │ └── analyzer.go ├── sagikazarmark │ ├── locafero │ │ ├── .editorconfig │ │ ├── .envrc │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── file_type.go │ │ ├── finder.go │ │ ├── flake.lock │ │ ├── flake.nix │ │ ├── helpers.go │ │ └── justfile │ └── slog-shim │ │ ├── .editorconfig │ │ ├── .envrc │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── attr.go │ │ ├── attr_120.go │ │ ├── flake.lock │ │ ├── flake.nix │ │ ├── handler.go │ │ ├── handler_120.go │ │ ├── json_handler.go │ │ ├── json_handler_120.go │ │ ├── level.go │ │ ├── level_120.go │ │ ├── logger.go │ │ ├── logger_120.go │ │ ├── record.go │ │ ├── record_120.go │ │ ├── text_handler.go │ │ ├── text_handler_120.go │ │ ├── value.go │ │ └── value_120.go ├── sanposhiho │ └── wastedassign │ │ └── v2 │ │ ├── LICENSE │ │ ├── README.md │ │ └── wastedassign.go ├── santhosh-tekuri │ └── jsonschema │ │ └── v6 │ │ ├── .gitmodules │ │ ├── .golangci.yml │ │ ├── .pre-commit-hooks.yaml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── compiler.go │ │ ├── content.go │ │ ├── draft.go │ │ ├── format.go │ │ ├── go.work │ │ ├── kind │ │ └── kind.go │ │ ├── loader.go │ │ ├── metaschemas │ │ ├── draft-04 │ │ │ └── schema │ │ ├── draft-06 │ │ │ └── schema │ │ ├── draft-07 │ │ │ └── schema │ │ └── draft │ │ │ ├── 2019-09 │ │ │ ├── meta │ │ │ │ ├── applicator │ │ │ │ ├── content │ │ │ │ ├── core │ │ │ │ ├── format │ │ │ │ ├── meta-data │ │ │ │ └── validation │ │ │ └── schema │ │ │ └── 2020-12 │ │ │ ├── meta │ │ │ ├── applicator │ │ │ ├── content │ │ │ ├── core │ │ │ ├── format-annotation │ │ │ ├── format-assertion │ │ │ ├── meta-data │ │ │ ├── unevaluated │ │ │ └── validation │ │ │ └── schema │ │ ├── objcompiler.go │ │ ├── output.go │ │ ├── position.go │ │ ├── root.go │ │ ├── roots.go │ │ ├── schema.go │ │ ├── util.go │ │ ├── validator.go │ │ └── vocab.go ├── sashamelentyev │ ├── interfacebloat │ │ ├── LICENSE │ │ └── pkg │ │ │ └── analyzer │ │ │ └── analyzer.go │ └── usestdlibvars │ │ ├── LICENSE │ │ └── pkg │ │ └── analyzer │ │ ├── analyzer.go │ │ └── internal │ │ └── mapping │ │ └── mapping.go ├── securego │ └── gosec │ │ └── v2 │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .goreleaser.yml │ │ ├── CONTRIBUTING.md │ │ ├── Dockerfile │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── RULES.md │ │ ├── USERS.md │ │ ├── action.yml │ │ ├── analyzer.go │ │ ├── analyzers │ │ ├── analyzers_set.go │ │ ├── analyzerslist.go │ │ ├── conversion_overflow.go │ │ ├── hardcoded_nonce.go │ │ ├── slice_bounds.go │ │ └── util.go │ │ ├── call_list.go │ │ ├── config.go │ │ ├── cosign.pub │ │ ├── cwe │ │ ├── data.go │ │ └── types.go │ │ ├── entrypoint.sh │ │ ├── errors.go │ │ ├── helpers.go │ │ ├── import_tracker.go │ │ ├── install.sh │ │ ├── issue │ │ └── issue.go │ │ ├── perf-diff.sh │ │ ├── renovate.json │ │ ├── report.go │ │ ├── resolve.go │ │ ├── rule.go │ │ └── rules │ │ ├── archive.go │ │ ├── bind.go │ │ ├── blocklist.go │ │ ├── decompression-bomb.go │ │ ├── directory-traversal.go │ │ ├── errors.go │ │ ├── fileperms.go │ │ ├── hardcoded_credentials.go │ │ ├── http_serve.go │ │ ├── implicit_aliasing.go │ │ ├── integer_overflow.go │ │ ├── math_big_rat.go │ │ ├── pprof.go │ │ ├── rand.go │ │ ├── readfile.go │ │ ├── rsa.go │ │ ├── rulelist.go │ │ ├── slowloris.go │ │ ├── sql.go │ │ ├── ssh.go │ │ ├── ssrf.go │ │ ├── subproc.go │ │ ├── tempfiles.go │ │ ├── templates.go │ │ ├── tls.go │ │ ├── tls_config.go │ │ ├── unsafe.go │ │ ├── weakcrypto.go │ │ ├── weakcryptohash.go │ │ └── weakdepricatedcryptohash.go ├── shopspring │ └── decimal │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── const.go │ │ ├── decimal-go.go │ │ ├── decimal.go │ │ └── rounding.go ├── sirupsen │ └── logrus │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── alt_exit.go │ │ ├── appveyor.yml │ │ ├── buffer_pool.go │ │ ├── doc.go │ │ ├── entry.go │ │ ├── exported.go │ │ ├── formatter.go │ │ ├── hooks.go │ │ ├── json_formatter.go │ │ ├── logger.go │ │ ├── logrus.go │ │ ├── terminal_check_appengine.go │ │ ├── terminal_check_bsd.go │ │ ├── terminal_check_js.go │ │ ├── terminal_check_no_terminal.go │ │ ├── terminal_check_notappengine.go │ │ ├── terminal_check_solaris.go │ │ ├── terminal_check_unix.go │ │ ├── terminal_check_windows.go │ │ ├── text_formatter.go │ │ └── writer.go ├── sivchari │ ├── containedctx │ │ ├── .golangci.yml │ │ ├── LICENCE │ │ ├── README.md │ │ └── containedctx.go │ └── tenv │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── goreleaser.yaml │ │ ├── tenv.go │ │ └── tenv.png ├── sonatard │ └── noctx │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .goreleaser.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── ngfunc │ │ ├── main.go │ │ ├── report.go │ │ └── types.go │ │ ├── noctx.go │ │ └── reqwithoutctx │ │ ├── main.go │ │ ├── report.go │ │ └── ssa.go ├── sourcegraph │ ├── conc │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── internal │ │ │ └── multierror │ │ │ │ ├── multierror_go119.go │ │ │ │ └── multierror_go120.go │ │ ├── iter │ │ │ ├── iter.go │ │ │ └── map.go │ │ ├── panics │ │ │ ├── panics.go │ │ │ └── try.go │ │ └── waitgroup.go │ └── go-diff │ │ ├── LICENSE │ │ └── diff │ │ ├── diff.go │ │ ├── doc.go │ │ ├── parse.go │ │ ├── print.go │ │ └── reader_util.go ├── spf13 │ ├── afero │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── afero.go │ │ ├── appveyor.yml │ │ ├── basepath.go │ │ ├── cacheOnReadFs.go │ │ ├── const_bsds.go │ │ ├── const_win_unix.go │ │ ├── copyOnWriteFs.go │ │ ├── httpFs.go │ │ ├── internal │ │ │ └── common │ │ │ │ └── adapters.go │ │ ├── iofs.go │ │ ├── ioutil.go │ │ ├── lstater.go │ │ ├── match.go │ │ ├── mem │ │ │ ├── dir.go │ │ │ ├── dirmap.go │ │ │ └── file.go │ │ ├── memmap.go │ │ ├── os.go │ │ ├── path.go │ │ ├── readonlyfs.go │ │ ├── regexpfs.go │ │ ├── symlink.go │ │ ├── unionFile.go │ │ └── util.go │ ├── cast │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── cast.go │ │ ├── caste.go │ │ └── timeformattype_string.go │ ├── cobra │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .mailmap │ │ ├── CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.txt │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README.md │ │ ├── active_help.go │ │ ├── args.go │ │ ├── bash_completions.go │ │ ├── bash_completionsV2.go │ │ ├── cobra.go │ │ ├── command.go │ │ ├── command_notwin.go │ │ ├── command_win.go │ │ ├── completions.go │ │ ├── doc │ │ │ ├── man_docs.go │ │ │ ├── md_docs.go │ │ │ ├── rest_docs.go │ │ │ ├── util.go │ │ │ └── yaml_docs.go │ │ ├── fish_completions.go │ │ ├── flag_groups.go │ │ ├── powershell_completions.go │ │ ├── shell_completions.go │ │ └── zsh_completions.go │ ├── pflag │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bool.go │ │ ├── bool_slice.go │ │ ├── bytes.go │ │ ├── count.go │ │ ├── duration.go │ │ ├── duration_slice.go │ │ ├── flag.go │ │ ├── float32.go │ │ ├── float32_slice.go │ │ ├── float64.go │ │ ├── float64_slice.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 │ │ ├── uint.go │ │ ├── uint16.go │ │ ├── uint32.go │ │ ├── uint64.go │ │ ├── uint8.go │ │ └── uint_slice.go │ └── viper │ │ ├── .editorconfig │ │ ├── .envrc │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── .yamlignore │ │ ├── .yamllint.yaml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── TROUBLESHOOTING.md │ │ ├── file.go │ │ ├── file_finder.go │ │ ├── flags.go │ │ ├── flake.lock │ │ ├── flake.nix │ │ ├── internal │ │ ├── encoding │ │ │ ├── decoder.go │ │ │ ├── dotenv │ │ │ │ ├── codec.go │ │ │ │ └── map_utils.go │ │ │ ├── encoder.go │ │ │ ├── error.go │ │ │ ├── hcl │ │ │ │ └── codec.go │ │ │ ├── ini │ │ │ │ ├── codec.go │ │ │ │ └── map_utils.go │ │ │ ├── javaproperties │ │ │ │ ├── codec.go │ │ │ │ └── map_utils.go │ │ │ ├── json │ │ │ │ └── codec.go │ │ │ ├── toml │ │ │ │ └── codec.go │ │ │ └── yaml │ │ │ │ └── codec.go │ │ └── features │ │ │ ├── bind_struct.go │ │ │ └── bind_struct_default.go │ │ ├── logger.go │ │ ├── util.go │ │ └── viper.go ├── ssgreg │ └── nlreturn │ │ └── v2 │ │ ├── LICENSE │ │ └── pkg │ │ └── nlreturn │ │ └── nlreturn.go ├── stbenjam │ └── no-sprintf-host-port │ │ ├── LICENSE │ │ └── pkg │ │ └── analyzer │ │ └── analyzer.go ├── stretchr │ ├── objx │ │ ├── .codeclimate.yml │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Taskfile.yml │ │ ├── accessors.go │ │ ├── conversions.go │ │ ├── doc.go │ │ ├── map.go │ │ ├── mutations.go │ │ ├── security.go │ │ ├── tests.go │ │ ├── type_specific.go │ │ ├── type_specific_codegen.go │ │ └── value.go │ └── testify │ │ ├── LICENSE │ │ ├── assert │ │ ├── assertion_compare.go │ │ ├── assertion_format.go │ │ ├── assertion_format.go.tmpl │ │ ├── assertion_forward.go │ │ ├── assertion_forward.go.tmpl │ │ ├── assertion_order.go │ │ ├── assertions.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── forward_assertions.go │ │ ├── http_assertions.go │ │ └── yaml │ │ │ ├── yaml_custom.go │ │ │ ├── yaml_default.go │ │ │ └── yaml_fail.go │ │ ├── mock │ │ ├── doc.go │ │ └── mock.go │ │ └── require │ │ ├── doc.go │ │ ├── forward_requirements.go │ │ ├── require.go │ │ ├── require.go.tmpl │ │ ├── require_forward.go │ │ ├── require_forward.go.tmpl │ │ └── requirements.go ├── subosito │ └── gotenv │ │ ├── .env │ │ ├── .env.invalid │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ └── gotenv.go ├── tcnksm │ ├── ghr │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── CREDITS │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── cli.go │ │ ├── ghr.go │ │ ├── github.go │ │ ├── local.go │ │ ├── main.go │ │ └── version.go │ ├── go-gitconfig │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── gitconfig.go │ │ └── wercker.yml │ └── go-latest │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── github.go │ │ ├── html.go │ │ ├── html_meta.go │ │ ├── json.go │ │ ├── latest.go │ │ └── wercker.yml ├── tdakkota │ └── asciicheck │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── ascii.go │ │ └── asciicheck.go ├── tetafro │ └── godot │ │ ├── .gitignore │ │ ├── .godot.yaml │ │ ├── .golangci.yml │ │ ├── .goreleaser.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── checks.go │ │ ├── getters.go │ │ ├── godot.go │ │ └── settings.go ├── tidwall │ ├── gjson │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SYNTAX.md │ │ └── gjson.go │ ├── match │ │ ├── LICENSE │ │ ├── README.md │ │ └── match.go │ ├── pretty │ │ ├── LICENSE │ │ ├── README.md │ │ └── pretty.go │ └── sjson │ │ ├── LICENSE │ │ ├── README.md │ │ ├── logo.png │ │ └── sjson.go ├── timakin │ └── bodyclose │ │ ├── LICENSE │ │ └── passes │ │ └── bodyclose │ │ └── bodyclose.go ├── timonwong │ └── loggercheck │ │ ├── .codecov.yml │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .goreleaser.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── internal │ │ ├── checkers │ │ │ ├── checker.go │ │ │ ├── common.go │ │ │ ├── filter.go │ │ │ ├── general.go │ │ │ ├── printf │ │ │ │ └── printf.go │ │ │ ├── slog.go │ │ │ └── zap.go │ │ ├── rules │ │ │ └── rules.go │ │ ├── sets │ │ │ └── string.go │ │ └── stringutil │ │ │ └── is.go │ │ ├── loggercheck.go │ │ ├── options.go │ │ └── staticrules.go ├── tomarrell │ └── wrapcheck │ │ └── v2 │ │ ├── LICENSE │ │ └── wrapcheck │ │ └── wrapcheck.go ├── tommy-muehle │ └── go-mnd │ │ └── v2 │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── action.yml │ │ ├── analyzer.go │ │ ├── checks │ │ ├── argument.go │ │ ├── assign.go │ │ ├── case.go │ │ ├── checks.go │ │ ├── condition.go │ │ ├── operation.go │ │ └── return.go │ │ ├── config │ │ └── config.go │ │ └── entrypoint.sh ├── toqueteos │ └── webbrowser │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ └── webbrowser.go ├── ulikunitz │ └── xz │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── TODO.md │ │ ├── bits.go │ │ ├── crc.go │ │ ├── format.go │ │ ├── fox-check-none.xz │ │ ├── fox.xz │ │ ├── internal │ │ ├── hash │ │ │ ├── cyclic_poly.go │ │ │ ├── doc.go │ │ │ ├── rabin_karp.go │ │ │ └── roller.go │ │ └── xlog │ │ │ └── xlog.go │ │ ├── lzma │ │ ├── bintree.go │ │ ├── bitops.go │ │ ├── breader.go │ │ ├── buffer.go │ │ ├── bytewriter.go │ │ ├── decoder.go │ │ ├── decoderdict.go │ │ ├── directcodec.go │ │ ├── distcodec.go │ │ ├── encoder.go │ │ ├── encoderdict.go │ │ ├── fox.lzma │ │ ├── hashtable.go │ │ ├── header.go │ │ ├── header2.go │ │ ├── lengthcodec.go │ │ ├── literalcodec.go │ │ ├── matchalgorithm.go │ │ ├── operation.go │ │ ├── prob.go │ │ ├── properties.go │ │ ├── rangecodec.go │ │ ├── reader.go │ │ ├── reader2.go │ │ ├── state.go │ │ ├── treecodecs.go │ │ ├── writer.go │ │ └── writer2.go │ │ ├── lzmafilter.go │ │ ├── make-docs │ │ ├── none-check.go │ │ ├── reader.go │ │ └── writer.go ├── ultraware │ ├── funlen │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── funlen.go │ └── whitespace │ │ ├── LICENSE │ │ ├── README.md │ │ └── whitespace.go ├── uudashr │ ├── gocognit │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── gocognit.go │ │ ├── recv.go │ │ └── recv_pre118.go │ └── iface │ │ ├── LICENSE │ │ ├── identical │ │ ├── doc.go │ │ └── identical.go │ │ ├── internal │ │ └── directive │ │ │ └── directive.go │ │ ├── opaque │ │ ├── doc.go │ │ └── opaque.go │ │ └── unused │ │ ├── doc.go │ │ └── unused.go ├── x448 │ └── float16 │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── float16.go ├── xen0n │ └── gosmopolitan │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── README.zh-Hans.md │ │ └── lib.go ├── xlab │ └── treeprint │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── helpers.go │ │ ├── struct.go │ │ └── treeprint.go ├── yagipy │ └── maintidx │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── maintidx.go │ │ ├── pkg │ │ ├── cyc │ │ │ └── cyc.go │ │ └── halstvol │ │ │ ├── halstvol.go │ │ │ └── handle.go │ │ └── visitor.go ├── yeya24 │ └── promlinter │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ └── promlinter.go ├── ykadowak │ └── zerologlint │ │ ├── .goreleaser.yaml │ │ ├── LICENSE │ │ ├── README.md │ │ └── zerologlint.go └── zclconf │ └── go-cty │ ├── LICENSE │ └── cty │ ├── capsule.go │ ├── capsule_ops.go │ ├── collection.go │ ├── convert │ ├── compare_types.go │ ├── conversion.go │ ├── conversion_capsule.go │ ├── conversion_collection.go │ ├── conversion_dynamic.go │ ├── conversion_object.go │ ├── conversion_primitive.go │ ├── conversion_tuple.go │ ├── doc.go │ ├── mismatch_msg.go │ ├── public.go │ ├── sort_types.go │ └── unify.go │ ├── ctystrings │ ├── doc.go │ ├── normalize.go │ └── prefix.go │ ├── doc.go │ ├── element_iterator.go │ ├── error.go │ ├── function │ ├── argument.go │ ├── doc.go │ ├── error.go │ ├── function.go │ ├── stdlib │ │ ├── bool.go │ │ ├── bytes.go │ │ ├── collection.go │ │ ├── conversion.go │ │ ├── csv.go │ │ ├── datetime.go │ │ ├── datetime_rfc3339.go │ │ ├── doc.go │ │ ├── format.go │ │ ├── format_fsm.go │ │ ├── format_fsm.rl │ │ ├── general.go │ │ ├── json.go │ │ ├── number.go │ │ ├── regexp.go │ │ ├── sequence.go │ │ ├── set.go │ │ ├── string.go │ │ └── string_replace.go │ └── unpredictable.go │ ├── gocty │ ├── doc.go │ ├── helpers.go │ ├── in.go │ ├── out.go │ └── type_implied.go │ ├── helper.go │ ├── json.go │ ├── json │ ├── doc.go │ ├── marshal.go │ ├── simple.go │ ├── type.go │ ├── type_implied.go │ ├── unmarshal.go │ └── value.go │ ├── list_type.go │ ├── map_type.go │ ├── marks.go │ ├── null.go │ ├── object_type.go │ ├── path.go │ ├── path_set.go │ ├── primitive_type.go │ ├── set │ ├── iterator.go │ ├── ops.go │ ├── rules.go │ └── set.go │ ├── set_helper.go │ ├── set_internals.go │ ├── set_type.go │ ├── tuple_type.go │ ├── type.go │ ├── type_conform.go │ ├── unknown.go │ ├── unknown_as_null.go │ ├── unknown_refinement.go │ ├── value.go │ ├── value_init.go │ ├── value_ops.go │ ├── value_range.go │ └── walk.go ├── gitlab.com └── bosi │ └── decorder │ ├── .gitignore │ ├── .gitlab-ci.params.yml │ ├── .gitlab-ci.yml │ ├── LICENSE.md │ ├── Makefile │ ├── README.md │ ├── analyzer.go │ └── renovate.json ├── go-simpler.org ├── musttag │ ├── .golangci.yml │ ├── .goreleaser.yml │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── builtins.go │ ├── musttag.go │ └── utils.go └── sloglint │ ├── .golangci.yml │ ├── .goreleaser.yml │ ├── LICENSE │ ├── Makefile │ ├── README.md │ └── sloglint.go ├── go.mongodb.org └── mongo-driver │ ├── LICENSE │ ├── bson │ ├── bson.go │ ├── bsoncodec │ │ ├── array_codec.go │ │ ├── bsoncodec.go │ │ ├── byte_slice_codec.go │ │ ├── codec_cache.go │ │ ├── cond_addr_codec.go │ │ ├── default_value_decoders.go │ │ ├── default_value_encoders.go │ │ ├── doc.go │ │ ├── empty_interface_codec.go │ │ ├── map_codec.go │ │ ├── mode.go │ │ ├── pointer_codec.go │ │ ├── proxy.go │ │ ├── registry.go │ │ ├── slice_codec.go │ │ ├── string_codec.go │ │ ├── struct_codec.go │ │ ├── struct_tag_parser.go │ │ ├── time_codec.go │ │ ├── types.go │ │ └── uint_codec.go │ ├── bsonoptions │ │ ├── byte_slice_codec_options.go │ │ ├── doc.go │ │ ├── empty_interface_codec_options.go │ │ ├── map_codec_options.go │ │ ├── slice_codec_options.go │ │ ├── string_codec_options.go │ │ ├── struct_codec_options.go │ │ ├── time_codec_options.go │ │ └── uint_codec_options.go │ ├── bsonrw │ │ ├── copier.go │ │ ├── doc.go │ │ ├── extjson_parser.go │ │ ├── extjson_reader.go │ │ ├── extjson_tables.go │ │ ├── extjson_wrappers.go │ │ ├── extjson_writer.go │ │ ├── json_scanner.go │ │ ├── mode.go │ │ ├── reader.go │ │ ├── value_reader.go │ │ ├── value_writer.go │ │ └── writer.go │ ├── bsontype │ │ └── bsontype.go │ ├── decoder.go │ ├── doc.go │ ├── encoder.go │ ├── marshal.go │ ├── primitive │ │ ├── decimal.go │ │ ├── objectid.go │ │ └── primitive.go │ ├── primitive_codecs.go │ ├── raw.go │ ├── raw_element.go │ ├── raw_value.go │ ├── registry.go │ ├── types.go │ └── unmarshal.go │ └── x │ └── bsonx │ └── bsoncore │ ├── array.go │ ├── bson_arraybuilder.go │ ├── bson_documentbuilder.go │ ├── bsoncore.go │ ├── doc.go │ ├── document.go │ ├── document_sequence.go │ ├── element.go │ ├── tables.go │ └── value.go ├── go.opencensus.io ├── .gitignore ├── AUTHORS ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── appveyor.yml ├── internal │ ├── internal.go │ ├── sanitize.go │ └── traceinternals.go ├── opencensus.go └── trace │ ├── basetypes.go │ ├── config.go │ ├── doc.go │ ├── evictedqueue.go │ ├── export.go │ ├── internal │ └── internal.go │ ├── lrumap.go │ ├── sampling.go │ ├── spanbucket.go │ ├── spanstore.go │ ├── status_codes.go │ ├── trace.go │ ├── trace_api.go │ ├── trace_go11.go │ ├── trace_nongo11.go │ └── tracestate │ └── tracestate.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 │ ├── detectors │ │ └── gcp │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cloud-function.go │ │ │ ├── cloud-run.go │ │ │ ├── detector.go │ │ │ ├── gce.go │ │ │ ├── gke.go │ │ │ ├── types.go │ │ │ └── version.go │ └── instrumentation │ │ ├── google.golang.org │ │ └── grpc │ │ │ └── otelgrpc │ │ │ ├── LICENSE │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── interceptor.go │ │ │ ├── interceptorinfo.go │ │ │ ├── internal │ │ │ └── parse.go │ │ │ ├── metadata_supplier.go │ │ │ ├── semconv.go │ │ │ ├── stats_handler.go │ │ │ └── version.go │ │ └── net │ │ └── http │ │ └── otelhttp │ │ ├── LICENSE │ │ ├── client.go │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── handler.go │ │ ├── internal │ │ ├── request │ │ │ ├── body_wrapper.go │ │ │ └── resp_writer_wrapper.go │ │ ├── semconv │ │ │ ├── env.go │ │ │ ├── gen.go │ │ │ ├── httpconv.go │ │ │ ├── util.go │ │ │ └── v1.20.0.go │ │ └── semconvutil │ │ │ ├── gen.go │ │ │ ├── httpconv.go │ │ │ └── netconv.go │ │ ├── labeler.go │ │ ├── start_time_context.go │ │ ├── transport.go │ │ └── version.go └── otel │ ├── .codespellignore │ ├── .codespellrc │ ├── .gitattributes │ ├── .gitignore │ ├── .golangci.yml │ ├── .lycheeignore │ ├── .markdownlint.yaml │ ├── CHANGELOG.md │ ├── CODEOWNERS │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── RELEASING.md │ ├── VERSIONING.md │ ├── attribute │ ├── README.md │ ├── doc.go │ ├── encoder.go │ ├── filter.go │ ├── iterator.go │ ├── key.go │ ├── kv.go │ ├── set.go │ ├── type_string.go │ └── value.go │ ├── baggage │ ├── README.md │ ├── baggage.go │ ├── context.go │ └── doc.go │ ├── codes │ ├── README.md │ ├── codes.go │ └── doc.go │ ├── doc.go │ ├── error_handler.go │ ├── get_main_pkgs.sh │ ├── handler.go │ ├── internal │ ├── attribute │ │ └── attribute.go │ ├── baggage │ │ ├── baggage.go │ │ └── context.go │ ├── gen.go │ ├── global │ │ ├── handler.go │ │ ├── instruments.go │ │ ├── internal_logging.go │ │ ├── meter.go │ │ ├── propagator.go │ │ ├── state.go │ │ └── trace.go │ └── rawhelpers.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 │ │ └── 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 │ └── version.go │ ├── semconv │ ├── v1.17.0 │ │ ├── README.md │ │ ├── doc.go │ │ ├── event.go │ │ ├── exception.go │ │ ├── http.go │ │ ├── resource.go │ │ ├── schema.go │ │ └── trace.go │ ├── v1.20.0 │ │ ├── README.md │ │ ├── attribute_group.go │ │ ├── doc.go │ │ ├── event.go │ │ ├── exception.go │ │ ├── http.go │ │ ├── resource.go │ │ ├── schema.go │ │ └── trace.go │ ├── v1.24.0 │ │ ├── README.md │ │ ├── attribute_group.go │ │ ├── doc.go │ │ ├── event.go │ │ ├── exception.go │ │ ├── metric.go │ │ ├── resource.go │ │ ├── schema.go │ │ └── trace.go │ └── v1.26.0 │ │ ├── README.md │ │ ├── attribute_group.go │ │ ├── doc.go │ │ ├── exception.go │ │ ├── metric.go │ │ └── schema.go │ ├── trace.go │ ├── trace │ ├── LICENSE │ ├── README.md │ ├── config.go │ ├── context.go │ ├── doc.go │ ├── embedded │ │ ├── README.md │ │ └── embedded.go │ ├── nonrecording.go │ ├── noop.go │ ├── noop │ │ ├── README.md │ │ └── noop.go │ ├── provider.go │ ├── span.go │ ├── trace.go │ ├── tracer.go │ └── tracestate.go │ ├── verify_readmes.sh │ ├── verify_released_changelog.sh │ ├── version.go │ └── versions.yaml ├── go.uber.org ├── automaxprocs │ ├── .codecov.yml │ ├── .gitignore │ ├── CHANGELOG.md │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── automaxprocs.go │ ├── 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 │ ├── 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 ├── golang.org └── x │ ├── crypto │ ├── LICENSE │ ├── PATENTS │ ├── bcrypt │ │ ├── base64.go │ │ └── bcrypt.go │ ├── blowfish │ │ ├── block.go │ │ ├── cipher.go │ │ └── const.go │ ├── cast5 │ │ └── cast5.go │ ├── chacha20 │ │ ├── chacha_arm64.go │ │ ├── chacha_arm64.s │ │ ├── chacha_generic.go │ │ ├── chacha_noasm.go │ │ ├── chacha_ppc64x.go │ │ ├── chacha_ppc64x.s │ │ ├── chacha_s390x.go │ │ ├── chacha_s390x.s │ │ └── xor.go │ ├── chacha20poly1305 │ │ ├── chacha20poly1305.go │ │ ├── chacha20poly1305_amd64.go │ │ ├── chacha20poly1305_amd64.s │ │ ├── chacha20poly1305_generic.go │ │ ├── chacha20poly1305_noasm.go │ │ └── xchacha20poly1305.go │ ├── cryptobyte │ │ ├── asn1.go │ │ ├── asn1 │ │ │ └── asn1.go │ │ ├── builder.go │ │ └── string.go │ ├── hkdf │ │ └── hkdf.go │ ├── internal │ │ ├── alias │ │ │ ├── alias.go │ │ │ └── alias_purego.go │ │ └── poly1305 │ │ │ ├── mac_noasm.go │ │ │ ├── poly1305.go │ │ │ ├── sum_amd64.s │ │ │ ├── sum_asm.go │ │ │ ├── sum_generic.go │ │ │ ├── sum_loong64.s │ │ │ ├── sum_ppc64x.s │ │ │ ├── sum_s390x.go │ │ │ └── sum_s390x.s │ ├── openpgp │ │ ├── armor │ │ │ ├── armor.go │ │ │ └── encode.go │ │ ├── canonical_text.go │ │ ├── elgamal │ │ │ └── elgamal.go │ │ ├── errors │ │ │ └── errors.go │ │ ├── keys.go │ │ ├── packet │ │ │ ├── compressed.go │ │ │ ├── config.go │ │ │ ├── encrypted_key.go │ │ │ ├── literal.go │ │ │ ├── ocfb.go │ │ │ ├── one_pass_signature.go │ │ │ ├── opaque.go │ │ │ ├── packet.go │ │ │ ├── private_key.go │ │ │ ├── public_key.go │ │ │ ├── public_key_v3.go │ │ │ ├── reader.go │ │ │ ├── signature.go │ │ │ ├── signature_v3.go │ │ │ ├── symmetric_key_encrypted.go │ │ │ ├── symmetrically_encrypted.go │ │ │ ├── userattribute.go │ │ │ └── userid.go │ │ ├── read.go │ │ ├── s2k │ │ │ └── s2k.go │ │ └── write.go │ ├── pbkdf2 │ │ └── pbkdf2.go │ └── scrypt │ │ └── scrypt.go │ ├── exp │ ├── LICENSE │ ├── PATENTS │ ├── constraints │ │ └── constraints.go │ ├── slices │ │ ├── cmp.go │ │ ├── slices.go │ │ ├── sort.go │ │ ├── zsortanyfunc.go │ │ └── zsortordered.go │ ├── slog │ │ ├── attr.go │ │ ├── doc.go │ │ ├── handler.go │ │ ├── internal │ │ │ ├── buffer │ │ │ │ └── buffer.go │ │ │ └── ignorepc.go │ │ ├── json_handler.go │ │ ├── level.go │ │ ├── logger.go │ │ ├── noplog.bench │ │ ├── record.go │ │ ├── text_handler.go │ │ ├── value.go │ │ ├── value_119.go │ │ └── value_120.go │ └── typeparams │ │ ├── LICENSE │ │ ├── common.go │ │ ├── normalize.go │ │ ├── termlist.go │ │ ├── typeparams_go117.go │ │ ├── typeparams_go118.go │ │ └── typeterm.go │ ├── lint │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── golint │ │ ├── golint.go │ │ ├── import.go │ │ └── importcomment.go │ └── lint.go │ ├── mod │ ├── LICENSE │ ├── PATENTS │ ├── internal │ │ └── lazyregexp │ │ │ └── lazyre.go │ ├── modfile │ │ ├── print.go │ │ ├── read.go │ │ ├── rule.go │ │ └── work.go │ ├── module │ │ ├── module.go │ │ └── pseudo.go │ └── semver │ │ └── semver.go │ ├── net │ ├── LICENSE │ ├── PATENTS │ ├── html │ │ ├── atom │ │ │ ├── atom.go │ │ │ └── table.go │ │ ├── charset │ │ │ └── charset.go │ │ ├── const.go │ │ ├── doc.go │ │ ├── doctype.go │ │ ├── entity.go │ │ ├── escape.go │ │ ├── foreign.go │ │ ├── iter.go │ │ ├── node.go │ │ ├── parse.go │ │ ├── render.go │ │ └── token.go │ ├── http │ │ └── httpguts │ │ │ ├── guts.go │ │ │ └── httplex.go │ ├── http2 │ │ ├── .gitignore │ │ ├── ascii.go │ │ ├── ciphers.go │ │ ├── client_conn_pool.go │ │ ├── config.go │ │ ├── config_go124.go │ │ ├── config_pre_go124.go │ │ ├── databuffer.go │ │ ├── errors.go │ │ ├── flow.go │ │ ├── frame.go │ │ ├── gotrack.go │ │ ├── hpack │ │ │ ├── encode.go │ │ │ ├── hpack.go │ │ │ ├── huffman.go │ │ │ ├── static_table.go │ │ │ └── tables.go │ │ ├── http2.go │ │ ├── pipe.go │ │ ├── server.go │ │ ├── timer.go │ │ ├── transport.go │ │ ├── unencrypted.go │ │ ├── write.go │ │ ├── writesched.go │ │ ├── writesched_priority.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 │ │ └── timeseries │ │ │ └── timeseries.go │ └── trace │ │ ├── events.go │ │ ├── histogram.go │ │ └── trace.go │ ├── oauth2 │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── authhandler │ │ └── authhandler.go │ ├── deviceauth.go │ ├── google │ │ ├── appengine.go │ │ ├── default.go │ │ ├── doc.go │ │ ├── error.go │ │ ├── externalaccount │ │ │ ├── aws.go │ │ │ ├── basecredentials.go │ │ │ ├── executablecredsource.go │ │ │ ├── filecredsource.go │ │ │ ├── header.go │ │ │ ├── programmaticrefreshcredsource.go │ │ │ └── urlcredsource.go │ │ ├── google.go │ │ ├── internal │ │ │ ├── externalaccountauthorizeduser │ │ │ │ └── externalaccountauthorizeduser.go │ │ │ ├── impersonate │ │ │ │ └── impersonate.go │ │ │ └── stsexchange │ │ │ │ ├── clientauth.go │ │ │ │ └── sts_exchange.go │ │ ├── jwt.go │ │ └── sdk.go │ ├── internal │ │ ├── doc.go │ │ ├── oauth2.go │ │ ├── token.go │ │ └── transport.go │ ├── jws │ │ └── jws.go │ ├── jwt │ │ └── jwt.go │ ├── oauth2.go │ ├── pkce.go │ ├── token.go │ └── transport.go │ ├── sync │ ├── LICENSE │ ├── PATENTS │ ├── errgroup │ │ └── errgroup.go │ └── semaphore │ │ └── semaphore.go │ ├── sys │ ├── LICENSE │ ├── PATENTS │ ├── cpu │ │ ├── asm_aix_ppc64.s │ │ ├── asm_darwin_x86_gc.s │ │ ├── byteorder.go │ │ ├── cpu.go │ │ ├── cpu_aix.go │ │ ├── cpu_arm.go │ │ ├── cpu_arm64.go │ │ ├── cpu_arm64.s │ │ ├── cpu_darwin_x86.go │ │ ├── cpu_gc_arm64.go │ │ ├── cpu_gc_s390x.go │ │ ├── cpu_gc_x86.go │ │ ├── cpu_gc_x86.s │ │ ├── cpu_gccgo_arm64.go │ │ ├── cpu_gccgo_s390x.go │ │ ├── cpu_gccgo_x86.c │ │ ├── cpu_gccgo_x86.go │ │ ├── cpu_linux.go │ │ ├── cpu_linux_arm.go │ │ ├── cpu_linux_arm64.go │ │ ├── cpu_linux_loong64.go │ │ ├── cpu_linux_mips64x.go │ │ ├── cpu_linux_noinit.go │ │ ├── cpu_linux_ppc64x.go │ │ ├── cpu_linux_riscv64.go │ │ ├── cpu_linux_s390x.go │ │ ├── cpu_loong64.go │ │ ├── cpu_loong64.s │ │ ├── cpu_mips64x.go │ │ ├── cpu_mipsx.go │ │ ├── cpu_netbsd_arm64.go │ │ ├── cpu_openbsd_arm64.go │ │ ├── cpu_openbsd_arm64.s │ │ ├── cpu_other_arm.go │ │ ├── cpu_other_arm64.go │ │ ├── cpu_other_mips64x.go │ │ ├── cpu_other_ppc64x.go │ │ ├── cpu_other_riscv64.go │ │ ├── cpu_other_x86.go │ │ ├── cpu_ppc64x.go │ │ ├── cpu_riscv64.go │ │ ├── cpu_s390x.go │ │ ├── cpu_s390x.s │ │ ├── cpu_wasm.go │ │ ├── cpu_x86.go │ │ ├── cpu_zos.go │ │ ├── cpu_zos_s390x.go │ │ ├── endian_big.go │ │ ├── endian_little.go │ │ ├── hwcap_linux.go │ │ ├── parse.go │ │ ├── proc_cpuinfo_linux.go │ │ ├── runtime_auxv.go │ │ ├── runtime_auxv_go121.go │ │ ├── syscall_aix_gccgo.go │ │ ├── syscall_aix_ppc64_gc.go │ │ └── syscall_darwin_x86_gc.go │ ├── 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_go15_plan9.go │ │ ├── pwd_plan9.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_plan9.go │ │ ├── zsyscall_plan9_386.go │ │ ├── zsyscall_plan9_amd64.go │ │ ├── zsyscall_plan9_arm.go │ │ └── zsysnum_plan9.go │ ├── unix │ │ ├── .gitignore │ │ ├── README.md │ │ ├── affinity_linux.go │ │ ├── aliases.go │ │ ├── asm_aix_ppc64.s │ │ ├── asm_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 │ ├── encoding │ │ ├── charmap │ │ │ ├── charmap.go │ │ │ └── tables.go │ │ ├── encoding.go │ │ ├── htmlindex │ │ │ ├── htmlindex.go │ │ │ ├── map.go │ │ │ └── tables.go │ │ ├── internal │ │ │ ├── identifier │ │ │ │ ├── identifier.go │ │ │ │ └── mib.go │ │ │ └── internal.go │ │ ├── japanese │ │ │ ├── all.go │ │ │ ├── eucjp.go │ │ │ ├── iso2022jp.go │ │ │ ├── shiftjis.go │ │ │ └── tables.go │ │ ├── korean │ │ │ ├── euckr.go │ │ │ └── tables.go │ │ ├── simplifiedchinese │ │ │ ├── all.go │ │ │ ├── gbk.go │ │ │ ├── hzgb2312.go │ │ │ └── tables.go │ │ ├── traditionalchinese │ │ │ ├── big5.go │ │ │ └── tables.go │ │ └── unicode │ │ │ ├── override.go │ │ │ └── unicode.go │ ├── feature │ │ └── plural │ │ │ ├── common.go │ │ │ ├── message.go │ │ │ ├── plural.go │ │ │ └── tables.go │ ├── internal │ │ ├── catmsg │ │ │ ├── catmsg.go │ │ │ ├── codec.go │ │ │ └── varint.go │ │ ├── format │ │ │ ├── format.go │ │ │ └── parser.go │ │ ├── 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 │ │ ├── number │ │ │ ├── common.go │ │ │ ├── decimal.go │ │ │ ├── format.go │ │ │ ├── number.go │ │ │ ├── pattern.go │ │ │ ├── roundingmode_string.go │ │ │ └── tables.go │ │ ├── stringset │ │ │ └── set.go │ │ ├── tag │ │ │ └── tag.go │ │ └── utf8internal │ │ │ └── utf8internal.go │ ├── language │ │ ├── coverage.go │ │ ├── doc.go │ │ ├── language.go │ │ ├── match.go │ │ ├── parse.go │ │ ├── tables.go │ │ └── tags.go │ ├── message │ │ ├── catalog.go │ │ ├── catalog │ │ │ ├── catalog.go │ │ │ ├── dict.go │ │ │ ├── go19.go │ │ │ └── gopre19.go │ │ ├── doc.go │ │ ├── format.go │ │ ├── message.go │ │ └── print.go │ ├── runes │ │ ├── cond.go │ │ └── runes.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 │ └── width │ │ ├── kind_string.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 │ │ ├── trieval.go │ │ └── width.go │ ├── time │ ├── LICENSE │ ├── PATENTS │ └── rate │ │ ├── rate.go │ │ └── sometimes.go │ ├── tools │ ├── LICENSE │ ├── PATENTS │ ├── cmd │ │ ├── goimports │ │ │ ├── doc.go │ │ │ ├── goimports.go │ │ │ ├── goimports_gc.go │ │ │ └── goimports_not_gc.go │ │ └── stringer │ │ │ └── stringer.go │ ├── cover │ │ └── profile.go │ ├── go │ │ ├── analysis │ │ │ ├── analysis.go │ │ │ ├── diagnostic.go │ │ │ ├── doc.go │ │ │ ├── passes │ │ │ │ ├── appends │ │ │ │ │ ├── appends.go │ │ │ │ │ └── doc.go │ │ │ │ ├── asmdecl │ │ │ │ │ └── asmdecl.go │ │ │ │ ├── assign │ │ │ │ │ ├── assign.go │ │ │ │ │ └── doc.go │ │ │ │ ├── atomic │ │ │ │ │ ├── atomic.go │ │ │ │ │ └── doc.go │ │ │ │ ├── atomicalign │ │ │ │ │ └── atomicalign.go │ │ │ │ ├── bools │ │ │ │ │ └── bools.go │ │ │ │ ├── buildssa │ │ │ │ │ └── buildssa.go │ │ │ │ ├── buildtag │ │ │ │ │ └── buildtag.go │ │ │ │ ├── cgocall │ │ │ │ │ ├── cgocall.go │ │ │ │ │ ├── cgocall_go120.go │ │ │ │ │ └── cgocall_go121.go │ │ │ │ ├── composite │ │ │ │ │ ├── composite.go │ │ │ │ │ └── whitelist.go │ │ │ │ ├── copylock │ │ │ │ │ └── copylock.go │ │ │ │ ├── ctrlflow │ │ │ │ │ └── ctrlflow.go │ │ │ │ ├── deepequalerrors │ │ │ │ │ └── deepequalerrors.go │ │ │ │ ├── defers │ │ │ │ │ ├── defers.go │ │ │ │ │ └── doc.go │ │ │ │ ├── directive │ │ │ │ │ └── directive.go │ │ │ │ ├── errorsas │ │ │ │ │ └── errorsas.go │ │ │ │ ├── fieldalignment │ │ │ │ │ └── fieldalignment.go │ │ │ │ ├── findcall │ │ │ │ │ └── findcall.go │ │ │ │ ├── framepointer │ │ │ │ │ └── framepointer.go │ │ │ │ ├── httpresponse │ │ │ │ │ └── httpresponse.go │ │ │ │ ├── ifaceassert │ │ │ │ │ ├── doc.go │ │ │ │ │ └── ifaceassert.go │ │ │ │ ├── inspect │ │ │ │ │ └── inspect.go │ │ │ │ ├── internal │ │ │ │ │ └── analysisutil │ │ │ │ │ │ └── util.go │ │ │ │ ├── loopclosure │ │ │ │ │ ├── doc.go │ │ │ │ │ └── loopclosure.go │ │ │ │ ├── lostcancel │ │ │ │ │ ├── doc.go │ │ │ │ │ └── lostcancel.go │ │ │ │ ├── nilfunc │ │ │ │ │ ├── doc.go │ │ │ │ │ └── nilfunc.go │ │ │ │ ├── nilness │ │ │ │ │ ├── doc.go │ │ │ │ │ └── nilness.go │ │ │ │ ├── pkgfact │ │ │ │ │ └── pkgfact.go │ │ │ │ ├── printf │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── printf.go │ │ │ │ │ └── types.go │ │ │ │ ├── reflectvaluecompare │ │ │ │ │ ├── doc.go │ │ │ │ │ └── reflectvaluecompare.go │ │ │ │ ├── shadow │ │ │ │ │ ├── doc.go │ │ │ │ │ └── shadow.go │ │ │ │ ├── shift │ │ │ │ │ ├── dead.go │ │ │ │ │ └── shift.go │ │ │ │ ├── sigchanyzer │ │ │ │ │ ├── doc.go │ │ │ │ │ └── sigchanyzer.go │ │ │ │ ├── slog │ │ │ │ │ ├── doc.go │ │ │ │ │ └── slog.go │ │ │ │ ├── sortslice │ │ │ │ │ └── analyzer.go │ │ │ │ ├── stdmethods │ │ │ │ │ ├── doc.go │ │ │ │ │ └── stdmethods.go │ │ │ │ ├── stdversion │ │ │ │ │ └── stdversion.go │ │ │ │ ├── stringintconv │ │ │ │ │ ├── doc.go │ │ │ │ │ └── string.go │ │ │ │ ├── structtag │ │ │ │ │ └── structtag.go │ │ │ │ ├── testinggoroutine │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── testinggoroutine.go │ │ │ │ │ └── util.go │ │ │ │ ├── tests │ │ │ │ │ ├── doc.go │ │ │ │ │ └── tests.go │ │ │ │ ├── timeformat │ │ │ │ │ ├── doc.go │ │ │ │ │ └── timeformat.go │ │ │ │ ├── unmarshal │ │ │ │ │ ├── doc.go │ │ │ │ │ └── unmarshal.go │ │ │ │ ├── unreachable │ │ │ │ │ ├── doc.go │ │ │ │ │ └── unreachable.go │ │ │ │ ├── unsafeptr │ │ │ │ │ ├── doc.go │ │ │ │ │ └── unsafeptr.go │ │ │ │ ├── unusedresult │ │ │ │ │ ├── doc.go │ │ │ │ │ └── unusedresult.go │ │ │ │ ├── unusedwrite │ │ │ │ │ ├── doc.go │ │ │ │ │ └── unusedwrite.go │ │ │ │ └── waitgroup │ │ │ │ │ ├── doc.go │ │ │ │ │ └── waitgroup.go │ │ │ └── validate.go │ │ ├── ast │ │ │ ├── astutil │ │ │ │ ├── enclosing.go │ │ │ │ ├── imports.go │ │ │ │ ├── rewrite.go │ │ │ │ └── util.go │ │ │ └── inspector │ │ │ │ ├── inspector.go │ │ │ │ ├── iter.go │ │ │ │ ├── typeof.go │ │ │ │ └── walk.go │ │ ├── buildutil │ │ │ ├── allpackages.go │ │ │ ├── fakecontext.go │ │ │ ├── overlay.go │ │ │ ├── tags.go │ │ │ └── util.go │ │ ├── cfg │ │ │ ├── builder.go │ │ │ └── cfg.go │ │ ├── gcexportdata │ │ │ ├── gcexportdata.go │ │ │ └── importer.go │ │ ├── internal │ │ │ └── cgo │ │ │ │ ├── cgo.go │ │ │ │ └── cgo_pkgconfig.go │ │ ├── loader │ │ │ ├── doc.go │ │ │ ├── loader.go │ │ │ └── util.go │ │ ├── packages │ │ │ ├── doc.go │ │ │ ├── external.go │ │ │ ├── golist.go │ │ │ ├── golist_overlay.go │ │ │ ├── loadmode_string.go │ │ │ ├── packages.go │ │ │ └── visit.go │ │ ├── ssa │ │ │ ├── TODO │ │ │ ├── block.go │ │ │ ├── blockopt.go │ │ │ ├── builder.go │ │ │ ├── const.go │ │ │ ├── create.go │ │ │ ├── doc.go │ │ │ ├── dom.go │ │ │ ├── emit.go │ │ │ ├── func.go │ │ │ ├── instantiate.go │ │ │ ├── lift.go │ │ │ ├── lvalue.go │ │ │ ├── methods.go │ │ │ ├── mode.go │ │ │ ├── print.go │ │ │ ├── sanity.go │ │ │ ├── source.go │ │ │ ├── ssa.go │ │ │ ├── ssautil │ │ │ │ ├── deprecated.go │ │ │ │ ├── load.go │ │ │ │ ├── switch.go │ │ │ │ └── visit.go │ │ │ ├── subst.go │ │ │ ├── task.go │ │ │ ├── typeset.go │ │ │ ├── util.go │ │ │ └── wrappers.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 │ │ ├── analysisinternal │ │ ├── analysis.go │ │ └── extractdoc.go │ │ ├── astutil │ │ ├── cursor │ │ │ ├── cursor.go │ │ │ └── hooks.go │ │ └── edge │ │ │ └── edge.go │ │ ├── event │ │ ├── core │ │ │ ├── event.go │ │ │ ├── export.go │ │ │ └── fast.go │ │ ├── doc.go │ │ ├── event.go │ │ ├── keys │ │ │ ├── keys.go │ │ │ ├── standard.go │ │ │ └── util.go │ │ └── label │ │ │ └── label.go │ │ ├── fmtstr │ │ └── parse.go │ │ ├── gcimporter │ │ ├── bimport.go │ │ ├── exportdata.go │ │ ├── gcimporter.go │ │ ├── iexport.go │ │ ├── iimport.go │ │ ├── iimport_go122.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 │ │ └── types.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 │ │ ├── qualifier.go │ │ ├── recv.go │ │ ├── toonew.go │ │ ├── types.go │ │ ├── varkind.go │ │ └── zerovalue.go │ │ └── versions │ │ ├── features.go │ │ ├── gover.go │ │ ├── types.go │ │ └── versions.go │ └── xerrors │ ├── LICENSE │ ├── PATENTS │ ├── README │ ├── adaptor.go │ ├── codereview.cfg │ ├── doc.go │ ├── errors.go │ ├── fmt.go │ ├── format.go │ ├── frame.go │ ├── internal │ └── internal.go │ └── wrap.go ├── gomodules.xyz └── jsonpatch │ └── v2 │ ├── LICENSE │ └── jsonpatch.go ├── google.golang.org ├── api │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── googleapi │ │ ├── googleapi.go │ │ ├── transport │ │ │ └── apikey.go │ │ └── types.go │ ├── iamcredentials │ │ └── v1 │ │ │ ├── iamcredentials-api.json │ │ │ └── iamcredentials-gen.go │ ├── internal │ │ ├── cba.go │ │ ├── cert │ │ │ ├── default_cert.go │ │ │ ├── enterprise_cert.go │ │ │ └── secureconnect_cert.go │ │ ├── conn_pool.go │ │ ├── creds.go │ │ ├── gensupport │ │ │ ├── buffer.go │ │ │ ├── doc.go │ │ │ ├── error.go │ │ │ ├── json.go │ │ │ ├── jsonfloat.go │ │ │ ├── media.go │ │ │ ├── params.go │ │ │ ├── resumable.go │ │ │ ├── retry.go │ │ │ ├── send.go │ │ │ └── version.go │ │ ├── impersonate │ │ │ └── impersonate.go │ │ ├── s2a.go │ │ ├── settings.go │ │ ├── third_party │ │ │ └── uritemplates │ │ │ │ ├── LICENSE │ │ │ │ ├── METADATA │ │ │ │ ├── uritemplates.go │ │ │ │ └── utils.go │ │ └── version.go │ ├── iterator │ │ └── iterator.go │ ├── option │ │ ├── internaloption │ │ │ └── internaloption.go │ │ └── option.go │ ├── storage │ │ └── v1 │ │ │ ├── storage-api.json │ │ │ └── storage-gen.go │ └── transport │ │ ├── dial.go │ │ ├── doc.go │ │ ├── grpc │ │ ├── dial.go │ │ ├── dial_socketopt.go │ │ └── pool.go │ │ └── http │ │ └── dial.go ├── genproto │ ├── LICENSE │ └── googleapis │ │ ├── api │ │ ├── LICENSE │ │ ├── annotations │ │ │ ├── annotations.pb.go │ │ │ ├── client.pb.go │ │ │ ├── field_behavior.pb.go │ │ │ ├── field_info.pb.go │ │ │ ├── http.pb.go │ │ │ ├── resource.pb.go │ │ │ └── routing.pb.go │ │ ├── distribution │ │ │ └── distribution.pb.go │ │ ├── expr │ │ │ └── v1alpha1 │ │ │ │ ├── checked.pb.go │ │ │ │ ├── eval.pb.go │ │ │ │ ├── explain.pb.go │ │ │ │ ├── syntax.pb.go │ │ │ │ └── value.pb.go │ │ ├── label │ │ │ └── label.pb.go │ │ ├── launch_stage.pb.go │ │ ├── metric │ │ │ └── metric.pb.go │ │ └── monitoredres │ │ │ └── monitored_resource.pb.go │ │ ├── rpc │ │ ├── LICENSE │ │ ├── code │ │ │ └── code.pb.go │ │ ├── errdetails │ │ │ └── error_details.pb.go │ │ └── status │ │ │ └── status.pb.go │ │ └── type │ │ ├── calendarperiod │ │ └── calendar_period.pb.go │ │ ├── date │ │ └── date.pb.go │ │ └── expr │ │ └── expr.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 │ ├── authz │ │ └── audit │ │ │ ├── audit_logger.go │ │ │ └── stdout │ │ │ └── stdout_logger.go │ ├── backoff.go │ ├── backoff │ │ └── backoff.go │ ├── balancer │ │ ├── balancer.go │ │ ├── base │ │ │ ├── balancer.go │ │ │ └── base.go │ │ ├── conn_state_evaluator.go │ │ ├── endpointsharding │ │ │ └── endpointsharding.go │ │ ├── grpclb │ │ │ ├── grpc_lb_v1 │ │ │ │ ├── load_balancer.pb.go │ │ │ │ └── load_balancer_grpc.pb.go │ │ │ ├── grpclb.go │ │ │ ├── grpclb_config.go │ │ │ ├── grpclb_picker.go │ │ │ ├── grpclb_remote_balancer.go │ │ │ ├── grpclb_util.go │ │ │ └── state │ │ │ │ └── state.go │ │ ├── leastrequest │ │ │ └── leastrequest.go │ │ ├── pickfirst │ │ │ ├── internal │ │ │ │ └── internal.go │ │ │ ├── pickfirst.go │ │ │ └── pickfirstleaf │ │ │ │ └── pickfirstleaf.go │ │ ├── rls │ │ │ ├── balancer.go │ │ │ ├── cache.go │ │ │ ├── child_policy.go │ │ │ ├── config.go │ │ │ ├── control_channel.go │ │ │ ├── internal │ │ │ │ ├── adaptive │ │ │ │ │ ├── adaptive.go │ │ │ │ │ └── lookback.go │ │ │ │ └── keys │ │ │ │ │ └── builder.go │ │ │ └── picker.go │ │ ├── roundrobin │ │ │ └── roundrobin.go │ │ ├── subconn.go │ │ ├── weightedroundrobin │ │ │ ├── balancer.go │ │ │ ├── config.go │ │ │ ├── internal │ │ │ │ └── internal.go │ │ │ ├── logging.go │ │ │ ├── scheduler.go │ │ │ └── weightedroundrobin.go │ │ └── weightedtarget │ │ │ ├── logging.go │ │ │ ├── weightedaggregator │ │ │ └── aggregator.go │ │ │ ├── weightedtarget.go │ │ │ └── weightedtarget_config.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 │ │ ├── alts │ │ │ ├── alts.go │ │ │ ├── internal │ │ │ │ ├── authinfo │ │ │ │ │ └── authinfo.go │ │ │ │ ├── common.go │ │ │ │ ├── conn │ │ │ │ │ ├── aeadrekey.go │ │ │ │ │ ├── aes128gcm.go │ │ │ │ │ ├── aes128gcmrekey.go │ │ │ │ │ ├── common.go │ │ │ │ │ ├── counter.go │ │ │ │ │ ├── record.go │ │ │ │ │ └── utils.go │ │ │ │ ├── handshaker │ │ │ │ │ ├── handshaker.go │ │ │ │ │ └── service │ │ │ │ │ │ └── service.go │ │ │ │ └── proto │ │ │ │ │ └── grpc_gcp │ │ │ │ │ ├── altscontext.pb.go │ │ │ │ │ ├── handshaker.pb.go │ │ │ │ │ ├── handshaker_grpc.pb.go │ │ │ │ │ └── transport_security_common.pb.go │ │ │ └── utils.go │ │ ├── credentials.go │ │ ├── google │ │ │ ├── google.go │ │ │ └── xds.go │ │ ├── insecure │ │ │ └── insecure.go │ │ ├── oauth │ │ │ └── oauth.go │ │ ├── tls.go │ │ └── tls │ │ │ └── certprovider │ │ │ ├── distributor.go │ │ │ ├── pemfile │ │ │ ├── builder.go │ │ │ └── watcher.go │ │ │ ├── provider.go │ │ │ └── store.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 │ ├── interceptor.go │ ├── internal │ │ ├── admin │ │ │ └── admin.go │ │ ├── backoff │ │ │ └── backoff.go │ │ ├── balancer │ │ │ ├── gracefulswitch │ │ │ │ ├── config.go │ │ │ │ └── gracefulswitch.go │ │ │ └── nop │ │ │ │ └── nop.go │ │ ├── balancergroup │ │ │ ├── balancergroup.go │ │ │ └── balancerstateaggregator.go │ │ ├── balancerload │ │ │ └── load.go │ │ ├── binarylog │ │ │ ├── binarylog.go │ │ │ ├── binarylog_testutil.go │ │ │ ├── env_config.go │ │ │ ├── method_logger.go │ │ │ └── sink.go │ │ ├── buffer │ │ │ └── unbounded.go │ │ ├── cache │ │ │ └── timeoutCache.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 │ │ │ └── xds │ │ │ │ └── handshake_info.go │ │ ├── envconfig │ │ │ ├── envconfig.go │ │ │ ├── observability.go │ │ │ └── xds.go │ │ ├── experimental.go │ │ ├── googlecloud │ │ │ ├── googlecloud.go │ │ │ ├── manufacturer.go │ │ │ ├── manufacturer_linux.go │ │ │ └── manufacturer_windows.go │ │ ├── grpclog │ │ │ └── prefix_logger.go │ │ ├── grpcsync │ │ │ ├── callback_serializer.go │ │ │ ├── event.go │ │ │ ├── oncefunc.go │ │ │ └── pubsub.go │ │ ├── grpcutil │ │ │ ├── compressor.go │ │ │ ├── encode_duration.go │ │ │ ├── grpcutil.go │ │ │ ├── metadata.go │ │ │ ├── method.go │ │ │ └── regex.go │ │ ├── hierarchy │ │ │ └── hierarchy.go │ │ ├── idle │ │ │ └── idle.go │ │ ├── internal.go │ │ ├── metadata │ │ │ └── metadata.go │ │ ├── pretty │ │ │ └── pretty.go │ │ ├── proto │ │ │ └── grpc_lookup_v1 │ │ │ │ ├── rls.pb.go │ │ │ │ ├── rls_config.pb.go │ │ │ │ └── rls_grpc.pb.go │ │ ├── resolver │ │ │ ├── config_selector.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 │ │ ├── wrr │ │ │ ├── edf.go │ │ │ ├── random.go │ │ │ └── wrr.go │ │ └── xds │ │ │ ├── bootstrap │ │ │ ├── bootstrap.go │ │ │ ├── logging.go │ │ │ ├── template.go │ │ │ └── tlscreds │ │ │ │ └── bundle.go │ │ │ ├── matcher │ │ │ ├── matcher_header.go │ │ │ └── string_matcher.go │ │ │ ├── rbac │ │ │ ├── converter.go │ │ │ ├── matchers.go │ │ │ └── rbac_engine.go │ │ │ └── xds.go │ ├── keepalive │ │ └── keepalive.go │ ├── mem │ │ ├── buffer_pool.go │ │ ├── buffer_slice.go │ │ └── buffers.go │ ├── metadata │ │ └── metadata.go │ ├── orca │ │ ├── call_metrics.go │ │ ├── internal │ │ │ └── internal.go │ │ ├── orca.go │ │ ├── producer.go │ │ ├── server_metrics.go │ │ └── service.go │ ├── peer │ │ └── peer.go │ ├── picker_wrapper.go │ ├── preloader.go │ ├── resolver │ │ ├── dns │ │ │ └── dns_resolver.go │ │ ├── manual │ │ │ └── manual.go │ │ ├── map.go │ │ └── resolver.go │ ├── resolver_wrapper.go │ ├── rpc_util.go │ ├── server.go │ ├── service_config.go │ ├── serviceconfig │ │ └── serviceconfig.go │ ├── stats │ │ ├── handlers.go │ │ ├── metrics.go │ │ ├── opentelemetry │ │ │ ├── client_metrics.go │ │ │ ├── grpc_trace_bin_propagator.go │ │ │ ├── internal │ │ │ │ └── pluginoption.go │ │ │ ├── opentelemetry.go │ │ │ └── server_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 │ └── xds │ │ ├── bootstrap │ │ ├── bootstrap.go │ │ └── credentials.go │ │ ├── csds │ │ └── csds.go │ │ ├── googledirectpath │ │ ├── googlec2p.go │ │ └── utils.go │ │ ├── internal │ │ ├── balancer │ │ │ ├── balancer.go │ │ │ ├── cdsbalancer │ │ │ │ ├── cdsbalancer.go │ │ │ │ ├── cluster_watcher.go │ │ │ │ └── logging.go │ │ │ ├── clusterimpl │ │ │ │ ├── clusterimpl.go │ │ │ │ ├── config.go │ │ │ │ ├── logging.go │ │ │ │ └── picker.go │ │ │ ├── clustermanager │ │ │ │ ├── balancerstateaggregator.go │ │ │ │ ├── clustermanager.go │ │ │ │ ├── config.go │ │ │ │ └── picker.go │ │ │ ├── clusterresolver │ │ │ │ ├── clusterresolver.go │ │ │ │ ├── config.go │ │ │ │ ├── configbuilder.go │ │ │ │ ├── configbuilder_childname.go │ │ │ │ ├── logging.go │ │ │ │ ├── resource_resolver.go │ │ │ │ ├── resource_resolver_dns.go │ │ │ │ └── resource_resolver_eds.go │ │ │ ├── loadstore │ │ │ │ └── load_store_wrapper.go │ │ │ ├── outlierdetection │ │ │ │ ├── balancer.go │ │ │ │ ├── callcounter.go │ │ │ │ ├── config.go │ │ │ │ ├── logging.go │ │ │ │ └── subconn_wrapper.go │ │ │ ├── priority │ │ │ │ ├── balancer.go │ │ │ │ ├── balancer_child.go │ │ │ │ ├── balancer_priority.go │ │ │ │ ├── config.go │ │ │ │ ├── ignore_resolve_now.go │ │ │ │ ├── logging.go │ │ │ │ └── utils.go │ │ │ ├── ringhash │ │ │ │ ├── config.go │ │ │ │ ├── logging.go │ │ │ │ ├── picker.go │ │ │ │ ├── ring.go │ │ │ │ ├── ringhash.go │ │ │ │ └── util.go │ │ │ └── wrrlocality │ │ │ │ ├── balancer.go │ │ │ │ └── logging.go │ │ ├── clusterspecifier │ │ │ ├── cluster_specifier.go │ │ │ └── rls │ │ │ │ └── rls.go │ │ ├── httpfilter │ │ │ ├── fault │ │ │ │ └── fault.go │ │ │ ├── httpfilter.go │ │ │ ├── rbac │ │ │ │ └── rbac.go │ │ │ └── router │ │ │ │ └── router.go │ │ ├── internal.go │ │ ├── resolver │ │ │ ├── internal │ │ │ │ └── internal.go │ │ │ ├── logging.go │ │ │ ├── serviceconfig.go │ │ │ ├── watch_service.go │ │ │ └── xds_resolver.go │ │ ├── server │ │ │ ├── conn_wrapper.go │ │ │ ├── listener_wrapper.go │ │ │ └── rds_handler.go │ │ └── xdsclient │ │ │ ├── attributes.go │ │ │ ├── authority.go │ │ │ ├── channel.go │ │ │ ├── client.go │ │ │ ├── client_new.go │ │ │ ├── client_refcounted.go │ │ │ ├── clientimpl.go │ │ │ ├── clientimpl_dump.go │ │ │ ├── clientimpl_loadreport.go │ │ │ ├── clientimpl_watchers.go │ │ │ ├── internal │ │ │ └── internal.go │ │ │ ├── load │ │ │ ├── reporter.go │ │ │ └── store.go │ │ │ ├── logging.go │ │ │ ├── requests_counter.go │ │ │ ├── transport │ │ │ ├── ads │ │ │ │ └── ads_stream.go │ │ │ ├── grpctransport │ │ │ │ └── grpctransport.go │ │ │ ├── lrs │ │ │ │ └── lrs_stream.go │ │ │ └── transport_interface.go │ │ │ ├── xdslbregistry │ │ │ ├── converter │ │ │ │ └── converter.go │ │ │ └── xdslbregistry.go │ │ │ └── xdsresource │ │ │ ├── cluster_resource_type.go │ │ │ ├── endpoints_resource_type.go │ │ │ ├── errors.go │ │ │ ├── filter_chain.go │ │ │ ├── listener_resource_type.go │ │ │ ├── logging.go │ │ │ ├── matcher.go │ │ │ ├── matcher_path.go │ │ │ ├── name.go │ │ │ ├── resource_type.go │ │ │ ├── route_config_resource_type.go │ │ │ ├── type.go │ │ │ ├── type_cds.go │ │ │ ├── type_eds.go │ │ │ ├── type_lds.go │ │ │ ├── type_rds.go │ │ │ ├── unmarshal_cds.go │ │ │ ├── unmarshal_eds.go │ │ │ ├── unmarshal_lds.go │ │ │ ├── unmarshal_rds.go │ │ │ └── version │ │ │ └── version.go │ │ ├── server.go │ │ ├── server_options.go │ │ └── xds.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 │ ├── 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_go120.go │ │ └── strings_unsafe_go121.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_go120.go │ │ └── value_unsafe_go121.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 │ ├── emptypb │ └── empty.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 ├── ini.v1 │ ├── .editorconfig │ ├── .gitignore │ ├── .golangci.yml │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── codecov.yml │ ├── data_source.go │ ├── deprecated.go │ ├── error.go │ ├── file.go │ ├── helper.go │ ├── ini.go │ ├── key.go │ ├── parser.go │ ├── section.go │ └── struct.go ├── op │ └── go-logging.v1 │ │ ├── .travis.yml │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── backend.go │ │ ├── format.go │ │ ├── level.go │ │ ├── log_nix.go │ │ ├── log_windows.go │ │ ├── logger.go │ │ ├── memory.go │ │ ├── multi.go │ │ ├── syslog.go │ │ └── syslog_fallback.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 ├── honnef.co └── go │ └── tools │ ├── LICENSE │ ├── LICENSE-THIRD-PARTY │ ├── analysis │ ├── callcheck │ │ └── callcheck.go │ ├── code │ │ ├── code.go │ │ └── visit.go │ ├── edit │ │ └── edit.go │ ├── facts │ │ ├── deprecated │ │ │ └── deprecated.go │ │ ├── directives │ │ │ └── directives.go │ │ ├── generated │ │ │ └── generated.go │ │ ├── nilness │ │ │ └── nilness.go │ │ ├── purity │ │ │ └── purity.go │ │ ├── tokenfile │ │ │ └── token.go │ │ └── typedness │ │ │ └── typedness.go │ ├── lint │ │ └── lint.go │ └── report │ │ └── report.go │ ├── config │ ├── config.go │ └── example.conf │ ├── go │ ├── ast │ │ └── astutil │ │ │ ├── upstream.go │ │ │ └── util.go │ ├── ir │ │ ├── LICENSE │ │ ├── UPSTREAM │ │ ├── blockopt.go │ │ ├── builder.go │ │ ├── const.go │ │ ├── create.go │ │ ├── doc.go │ │ ├── dom.go │ │ ├── emit.go │ │ ├── exits.go │ │ ├── func.go │ │ ├── html.go │ │ ├── irutil │ │ │ ├── load.go │ │ │ ├── loops.go │ │ │ ├── stub.go │ │ │ ├── switch.go │ │ │ ├── terminates.go │ │ │ ├── util.go │ │ │ └── visit.go │ │ ├── lift.go │ │ ├── lvalue.go │ │ ├── methods.go │ │ ├── mode.go │ │ ├── print.go │ │ ├── sanity.go │ │ ├── source.go │ │ ├── ssa.go │ │ ├── util.go │ │ ├── wrappers.go │ │ └── write.go │ └── types │ │ └── typeutil │ │ ├── ext.go │ │ ├── typeparams.go │ │ ├── upstream.go │ │ └── util.go │ ├── internal │ ├── passes │ │ └── buildir │ │ │ └── buildir.go │ └── sharedcheck │ │ └── lint.go │ ├── knowledge │ ├── arg.go │ ├── deprecated.go │ ├── doc.go │ ├── signatures.go │ └── targets.go │ ├── pattern │ ├── convert.go │ ├── doc.go │ ├── lexer.go │ ├── match.go │ ├── parser.go │ └── pattern.go │ ├── printf │ ├── fuzz.go │ └── printf.go │ ├── simple │ ├── analysis.go │ ├── doc.go │ ├── s1000 │ │ └── s1000.go │ ├── s1001 │ │ └── s1001.go │ ├── s1002 │ │ └── s1002.go │ ├── s1003 │ │ └── s1003.go │ ├── s1004 │ │ └── s1004.go │ ├── s1005 │ │ └── s1005.go │ ├── s1006 │ │ └── s1006.go │ ├── s1007 │ │ └── s1007.go │ ├── s1008 │ │ └── s1008.go │ ├── s1009 │ │ └── s1009.go │ ├── s1010 │ │ └── s1010.go │ ├── s1011 │ │ └── s1011.go │ ├── s1012 │ │ └── s1012.go │ ├── s1016 │ │ └── s1016.go │ ├── s1017 │ │ └── s1017.go │ ├── s1018 │ │ └── s1018.go │ ├── s1019 │ │ └── s1019.go │ ├── s1020 │ │ └── s1020.go │ ├── s1021 │ │ └── s1021.go │ ├── s1023 │ │ └── s1023.go │ ├── s1024 │ │ └── s1024.go │ ├── s1025 │ │ └── s1025.go │ ├── s1028 │ │ └── s1028.go │ ├── s1029 │ │ └── s1029.go │ ├── s1030 │ │ └── s1030.go │ ├── s1031 │ │ └── s1031.go │ ├── s1032 │ │ └── s1032.go │ ├── s1033 │ │ └── s1033.go │ ├── s1034 │ │ └── s1034.go │ ├── s1035 │ │ └── s1035.go │ ├── s1036 │ │ └── s1036.go │ ├── s1037 │ │ └── s1037.go │ ├── s1038 │ │ └── s1038.go │ ├── s1039 │ │ └── s1039.go │ └── s1040 │ │ └── s1040.go │ ├── staticcheck │ ├── analysis.go │ ├── doc.go │ ├── fakejson │ │ └── encode.go │ ├── fakereflect │ │ └── fakereflect.go │ ├── fakexml │ │ ├── marshal.go │ │ ├── typeinfo.go │ │ └── xml.go │ ├── sa1000 │ │ └── sa1000.go │ ├── sa1001 │ │ └── sa1001.go │ ├── sa1002 │ │ └── sa1002.go │ ├── sa1003 │ │ └── sa1003.go │ ├── sa1004 │ │ └── sa1004.go │ ├── sa1005 │ │ └── sa1005.go │ ├── sa1006 │ │ └── sa1006.go │ ├── sa1007 │ │ └── sa1007.go │ ├── sa1008 │ │ └── sa1008.go │ ├── sa1010 │ │ └── sa1010.go │ ├── sa1011 │ │ └── sa1011.go │ ├── sa1012 │ │ └── sa1012.go │ ├── sa1013 │ │ └── sa1013.go │ ├── sa1014 │ │ └── sa1014.go │ ├── sa1015 │ │ └── sa1015.go │ ├── sa1016 │ │ └── sa1016.go │ ├── sa1017 │ │ └── sa1017.go │ ├── sa1018 │ │ └── sa1018.go │ ├── sa1019 │ │ └── sa1019.go │ ├── sa1020 │ │ └── sa1020.go │ ├── sa1021 │ │ └── sa1021.go │ ├── sa1023 │ │ └── sa1023.go │ ├── sa1024 │ │ └── sa1024.go │ ├── sa1025 │ │ └── sa1025.go │ ├── sa1026 │ │ └── sa1026.go │ ├── sa1027 │ │ └── sa1027.go │ ├── sa1028 │ │ └── sa1028.go │ ├── sa1029 │ │ └── sa1029.go │ ├── sa1030 │ │ └── sa1030.go │ ├── sa1031 │ │ └── sa1031.go │ ├── sa1032 │ │ └── sa1032.go │ ├── sa2000 │ │ └── sa2000.go │ ├── sa2001 │ │ └── sa2001.go │ ├── sa2002 │ │ └── sa2002.go │ ├── sa2003 │ │ └── sa2003.go │ ├── sa3000 │ │ └── sa3000.go │ ├── sa3001 │ │ └── sa3001.go │ ├── sa4000 │ │ └── sa4000.go │ ├── sa4001 │ │ └── sa4001.go │ ├── sa4003 │ │ └── sa4003.go │ ├── sa4004 │ │ └── sa4004.go │ ├── sa4005 │ │ └── sa4005.go │ ├── sa4006 │ │ └── sa4006.go │ ├── sa4008 │ │ └── sa4008.go │ ├── sa4009 │ │ └── sa4009.go │ ├── sa4010 │ │ └── sa4010.go │ ├── sa4011 │ │ └── sa4011.go │ ├── sa4012 │ │ └── sa4012.go │ ├── sa4013 │ │ └── sa4013.go │ ├── sa4014 │ │ └── sa4014.go │ ├── sa4015 │ │ └── sa4015.go │ ├── sa4016 │ │ └── sa4016.go │ ├── sa4017 │ │ └── sa4017.go │ ├── sa4018 │ │ └── sa4018.go │ ├── sa4019 │ │ └── sa4019.go │ ├── sa4020 │ │ └── sa4020.go │ ├── sa4021 │ │ └── sa4021.go │ ├── sa4022 │ │ └── sa4022.go │ ├── sa4023 │ │ └── sa4023.go │ ├── sa4024 │ │ └── sa4024.go │ ├── sa4025 │ │ └── sa4025.go │ ├── sa4026 │ │ └── sa4026.go │ ├── sa4027 │ │ └── sa4027.go │ ├── sa4028 │ │ └── sa4028.go │ ├── sa4029 │ │ └── sa4029.go │ ├── sa4030 │ │ └── sa4030.go │ ├── sa4031 │ │ └── sa4031.go │ ├── sa4032 │ │ └── sa4032.go │ ├── sa5000 │ │ └── sa5000.go │ ├── sa5001 │ │ └── sa5001.go │ ├── sa5002 │ │ └── sa5002.go │ ├── sa5003 │ │ └── sa5003.go │ ├── sa5004 │ │ └── sa5004.go │ ├── sa5005 │ │ └── sa5005.go │ ├── sa5007 │ │ └── sa5007.go │ ├── sa5008 │ │ ├── sa5008.go │ │ └── structtag.go │ ├── sa5009 │ │ └── sa5009.go │ ├── sa5010 │ │ └── sa5010.go │ ├── sa5011 │ │ └── sa5011.go │ ├── sa5012 │ │ └── sa5012.go │ ├── sa6000 │ │ └── sa6000.go │ ├── sa6001 │ │ └── sa6001.go │ ├── sa6002 │ │ └── sa6002.go │ ├── sa6003 │ │ └── sa6003.go │ ├── sa6005 │ │ └── sa6005.go │ ├── sa6006 │ │ └── sa6006.go │ ├── sa9001 │ │ └── sa9001.go │ ├── sa9002 │ │ └── sa9002.go │ ├── sa9003 │ │ └── sa9003.go │ ├── sa9004 │ │ └── sa9004.go │ ├── sa9005 │ │ └── sa9005.go │ ├── sa9006 │ │ └── sa9006.go │ ├── sa9007 │ │ └── sa9007.go │ ├── sa9008 │ │ └── sa9008.go │ └── sa9009 │ │ └── sa9009.go │ ├── stylecheck │ ├── analysis.go │ ├── doc.go │ ├── st1000 │ │ └── st1000.go │ ├── st1001 │ │ └── st1001.go │ ├── st1003 │ │ └── st1003.go │ ├── st1005 │ │ └── st1005.go │ ├── st1006 │ │ └── st1006.go │ ├── st1008 │ │ └── st1008.go │ ├── st1011 │ │ └── st1011.go │ ├── st1012 │ │ └── st1012.go │ ├── st1013 │ │ └── st1013.go │ ├── st1015 │ │ └── st1015.go │ ├── st1016 │ │ └── st1016.go │ ├── st1017 │ │ └── st1017.go │ ├── st1018 │ │ └── st1018.go │ ├── st1019 │ │ └── st1019.go │ ├── st1020 │ │ └── st1020.go │ ├── st1021 │ │ └── st1021.go │ ├── st1022 │ │ └── st1022.go │ └── st1023 │ │ └── st1023.go │ └── unused │ ├── implements.go │ ├── runtime.go │ ├── serialize.go │ └── unused.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 │ │ └── 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 │ ├── 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 │ ├── 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 │ │ ├── v1alpha1 │ │ │ ├── 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_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 │ │ ├── v1alpha3 │ │ │ ├── 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 │ │ │ ├── v1beta1 │ │ │ ├── .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 │ │ └── client │ │ ├── applyconfiguration │ │ └── apiextensions │ │ │ ├── v1 │ │ │ ├── customresourcecolumndefinition.go │ │ │ ├── customresourceconversion.go │ │ │ ├── customresourcedefinition.go │ │ │ ├── customresourcedefinitioncondition.go │ │ │ ├── customresourcedefinitionnames.go │ │ │ ├── customresourcedefinitionspec.go │ │ │ ├── customresourcedefinitionstatus.go │ │ │ ├── customresourcedefinitionversion.go │ │ │ ├── customresourcesubresources.go │ │ │ ├── customresourcesubresourcescale.go │ │ │ ├── customresourcevalidation.go │ │ │ ├── externaldocumentation.go │ │ │ ├── jsonschemaprops.go │ │ │ ├── selectablefield.go │ │ │ ├── servicereference.go │ │ │ ├── validationrule.go │ │ │ ├── webhookclientconfig.go │ │ │ └── webhookconversion.go │ │ │ └── v1beta1 │ │ │ ├── customresourcecolumndefinition.go │ │ │ ├── customresourceconversion.go │ │ │ ├── customresourcedefinition.go │ │ │ ├── customresourcedefinitioncondition.go │ │ │ ├── customresourcedefinitionnames.go │ │ │ ├── customresourcedefinitionspec.go │ │ │ ├── customresourcedefinitionstatus.go │ │ │ ├── customresourcedefinitionversion.go │ │ │ ├── customresourcesubresources.go │ │ │ ├── customresourcesubresourcescale.go │ │ │ ├── customresourcevalidation.go │ │ │ ├── externaldocumentation.go │ │ │ ├── jsonschemaprops.go │ │ │ ├── selectablefield.go │ │ │ ├── servicereference.go │ │ │ ├── validationrule.go │ │ │ └── webhookclientconfig.go │ │ └── clientset │ │ └── clientset │ │ ├── clientset.go │ │ ├── scheme │ │ ├── doc.go │ │ └── register.go │ │ └── typed │ │ └── apiextensions │ │ ├── v1 │ │ ├── apiextensions_client.go │ │ ├── customresourcedefinition.go │ │ ├── doc.go │ │ └── generated_expansion.go │ │ └── v1beta1 │ │ ├── apiextensions_client.go │ │ ├── customresourcedefinition.go │ │ ├── doc.go │ │ └── generated_expansion.go ├── apimachinery │ ├── LICENSE │ ├── pkg │ │ ├── api │ │ │ ├── equality │ │ │ │ └── semantic.go │ │ │ ├── errors │ │ │ │ ├── OWNERS │ │ │ │ ├── doc.go │ │ │ │ └── errors.go │ │ │ ├── meta │ │ │ │ ├── OWNERS │ │ │ │ ├── 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 │ │ │ │ ├── OWNERS │ │ │ │ ├── amount.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── math.go │ │ │ │ ├── quantity.go │ │ │ │ ├── quantity_proto.go │ │ │ │ ├── scale_int.go │ │ │ │ ├── suffix.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── validation │ │ │ │ ├── OWNERS │ │ │ │ ├── doc.go │ │ │ │ ├── generic.go │ │ │ │ └── objectmeta.go │ │ ├── apis │ │ │ └── meta │ │ │ │ ├── internalversion │ │ │ │ ├── defaults.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── scheme │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ ├── types.go │ │ │ │ ├── validation │ │ │ │ │ └── validation.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── v1 │ │ │ │ ├── OWNERS │ │ │ │ ├── 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 │ │ │ │ │ ├── unstructuredscheme │ │ │ │ │ │ └── scheme.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 │ │ │ │ │ │ │ ├── custom.go │ │ │ │ │ │ │ ├── decode.go │ │ │ │ │ │ │ ├── diagnostic.go │ │ │ │ │ │ │ └── encode.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 │ │ │ │ └── diff.go │ │ │ ├── dump │ │ │ │ └── dump.go │ │ │ ├── duration │ │ │ │ └── duration.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 │ │ │ │ │ ├── skipnonapplied.go │ │ │ │ │ ├── stripmeta.go │ │ │ │ │ ├── structuredmerge.go │ │ │ │ │ ├── typeconverter.go │ │ │ │ │ ├── versioncheck.go │ │ │ │ │ └── versionconverter.go │ │ │ │ ├── node.yaml │ │ │ │ ├── pod.yaml │ │ │ │ ├── scalehandler.go │ │ │ │ └── typeconverter.go │ │ │ ├── mergepatch │ │ │ │ ├── OWNERS │ │ │ │ ├── errors.go │ │ │ │ └── util.go │ │ │ ├── naming │ │ │ │ └── from_stack.go │ │ │ ├── net │ │ │ │ ├── http.go │ │ │ │ ├── interface.go │ │ │ │ ├── port_range.go │ │ │ │ ├── port_split.go │ │ │ │ └── util.go │ │ │ ├── rand │ │ │ │ └── rand.go │ │ │ ├── runtime │ │ │ │ └── runtime.go │ │ │ ├── sets │ │ │ │ ├── byte.go │ │ │ │ ├── doc.go │ │ │ │ ├── empty.go │ │ │ │ ├── int.go │ │ │ │ ├── int32.go │ │ │ │ ├── int64.go │ │ │ │ ├── set.go │ │ │ │ └── string.go │ │ │ ├── strategicpatch │ │ │ │ ├── OWNERS │ │ │ │ ├── errors.go │ │ │ │ ├── meta.go │ │ │ │ ├── patch.go │ │ │ │ └── types.go │ │ │ ├── uuid │ │ │ │ └── uuid.go │ │ │ ├── validation │ │ │ │ ├── OWNERS │ │ │ │ ├── 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 │ │ ├── OWNERS │ │ └── fields.go │ │ └── reflect │ │ └── deep_equal.go ├── cli-runtime │ ├── LICENSE │ └── pkg │ │ ├── genericclioptions │ │ ├── builder_flags.go │ │ ├── builder_flags_fake.go │ │ ├── client_config.go │ │ ├── command_headers.go │ │ ├── config_flags.go │ │ ├── config_flags_fake.go │ │ ├── doc.go │ │ ├── filename_flags.go │ │ ├── io_options.go │ │ ├── json_yaml_flags.go │ │ ├── jsonpath_flags.go │ │ ├── kube_template_flags.go │ │ ├── name_flags.go │ │ ├── print_flags.go │ │ ├── record_flags.go │ │ └── template_flags.go │ │ ├── genericiooptions │ │ └── io_options.go │ │ ├── printers │ │ ├── discard.go │ │ ├── doc.go │ │ ├── interface.go │ │ ├── json.go │ │ ├── jsonpath.go │ │ ├── managedfields.go │ │ ├── name.go │ │ ├── sourcechecker.go │ │ ├── tableprinter.go │ │ ├── tabwriter.go │ │ ├── template.go │ │ ├── terminal.go │ │ ├── typesetter.go │ │ ├── warningprinter.go │ │ └── yaml.go │ │ └── resource │ │ ├── builder.go │ │ ├── client.go │ │ ├── crd_finder.go │ │ ├── doc.go │ │ ├── fake.go │ │ ├── fallback_query_param_verifier.go │ │ ├── helper.go │ │ ├── interfaces.go │ │ ├── kustomizevisitor.go │ │ ├── mapper.go │ │ ├── metadata_decoder.go │ │ ├── query_param_verifier.go │ │ ├── query_param_verifier_v3.go │ │ ├── result.go │ │ ├── scheme.go │ │ ├── selector.go │ │ └── visitor.go ├── client-go │ ├── LICENSE │ ├── applyconfigurations │ │ ├── OWNERS │ │ ├── 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 │ │ │ │ ├── auditannotation.go │ │ │ │ ├── expressionwarning.go │ │ │ │ ├── matchcondition.go │ │ │ │ ├── matchresources.go │ │ │ │ ├── mutatingwebhook.go │ │ │ │ ├── mutatingwebhookconfiguration.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 │ │ │ └── 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 │ │ │ │ ├── containerimage.go │ │ │ │ ├── containerport.go │ │ │ │ ├── containerresizepolicy.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 │ │ │ │ ├── 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 │ │ │ │ ├── podcondition.go │ │ │ │ ├── poddnsconfig.go │ │ │ │ ├── poddnsconfigoption.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 │ │ │ ├── v1alpha1 │ │ │ │ ├── ipaddress.go │ │ │ │ ├── ipaddressspec.go │ │ │ │ ├── parentreference.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 │ │ │ ├── v1alpha3 │ │ │ │ ├── allocateddevicestatus.go │ │ │ │ ├── allocationresult.go │ │ │ │ ├── basicdevice.go │ │ │ │ ├── celdeviceselector.go │ │ │ │ ├── counter.go │ │ │ │ ├── counterset.go │ │ │ │ ├── device.go │ │ │ │ ├── deviceallocationconfiguration.go │ │ │ │ ├── deviceallocationresult.go │ │ │ │ ├── deviceattribute.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 │ │ │ │ ├── devicetaintrule.go │ │ │ │ ├── devicetaintrulespec.go │ │ │ │ ├── devicetaintselector.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 │ │ │ ├── v1beta1 │ │ │ │ ├── allocateddevicestatus.go │ │ │ │ ├── allocationresult.go │ │ │ │ ├── basicdevice.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 │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ ├── cached │ │ │ ├── disk │ │ │ │ ├── cached_discovery.go │ │ │ │ └── round_tripper.go │ │ │ └── memory │ │ │ │ └── memcache.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 │ │ │ │ ├── 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 │ │ │ └── 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 │ │ │ ├── v1alpha1 │ │ │ │ ├── interface.go │ │ │ │ ├── ipaddress.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 │ │ │ ├── v1alpha3 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── devicetaintrule.go │ │ │ │ ├── interface.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.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 │ │ │ ├── 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_mutatingwebhookconfiguration.go │ │ │ │ ├── fake_validatingadmissionpolicy.go │ │ │ │ ├── fake_validatingadmissionpolicybinding.go │ │ │ │ └── fake_validatingwebhookconfiguration.go │ │ │ │ ├── generated_expansion.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 │ │ │ │ └── generated_expansion.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 │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_ipaddress.go │ │ │ │ │ ├── fake_networking_client.go │ │ │ │ │ └── fake_servicecidr.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── ipaddress.go │ │ │ │ ├── networking_client.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 │ │ │ ├── v1alpha3 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── devicetaintrule.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_deviceclass.go │ │ │ │ │ ├── fake_devicetaintrule.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 │ │ │ ├── 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 │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── storage_client.go │ │ │ │ ├── storageclass.go │ │ │ │ └── volumeattachment.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 │ │ │ │ ├── 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 │ │ │ └── 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 │ │ │ ├── v1alpha1 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── ipaddress.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 │ │ │ ├── v1alpha3 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── devicetaintrule.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.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 │ │ │ ├── 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 │ ├── metadata │ │ ├── interface.go │ │ └── metadata.go │ ├── openapi │ │ ├── OWNERS │ │ ├── cached │ │ │ ├── client.go │ │ │ └── groupversion.go │ │ ├── client.go │ │ ├── groupversion.go │ │ └── typeconverter.go │ ├── openapi3 │ │ └── root.go │ ├── pkg │ │ ├── apis │ │ │ └── clientauthentication │ │ │ │ ├── OWNERS │ │ │ │ ├── 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 │ ├── rest │ │ ├── .mockery.yaml │ │ ├── OWNERS │ │ ├── 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 │ ├── restmapper │ │ ├── category_expansion.go │ │ ├── discovery.go │ │ └── shortcut.go │ ├── testing │ │ ├── actions.go │ │ ├── fake.go │ │ ├── fixture.go │ │ └── interface.go │ ├── third_party │ │ └── forked │ │ │ └── golang │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ └── template │ │ │ ├── exec.go │ │ │ └── funcs.go │ ├── tools │ │ ├── auth │ │ │ ├── OWNERS │ │ │ └── clientauth.go │ │ ├── cache │ │ │ ├── OWNERS │ │ │ ├── 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 │ │ │ ├── OWNERS │ │ │ ├── healthzadaptor.go │ │ │ ├── leaderelection.go │ │ │ ├── leasecandidate.go │ │ │ ├── metrics.go │ │ │ └── resourcelock │ │ │ │ ├── interface.go │ │ │ │ ├── leaselock.go │ │ │ │ └── multilock.go │ │ ├── metrics │ │ │ ├── OWNERS │ │ │ └── metrics.go │ │ ├── pager │ │ │ └── pager.go │ │ ├── record │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── events_cache.go │ │ │ ├── fake.go │ │ │ └── util │ │ │ │ └── util.go │ │ └── reference │ │ │ └── ref.go │ ├── transport │ │ ├── OWNERS │ │ ├── cache.go │ │ ├── cache_go118.go │ │ ├── cert_rotation.go │ │ ├── config.go │ │ ├── round_trippers.go │ │ ├── token_source.go │ │ └── transport.go │ └── util │ │ ├── apply │ │ └── apply.go │ │ ├── cert │ │ ├── OWNERS │ │ ├── cert.go │ │ ├── csr.go │ │ ├── io.go │ │ ├── pem.go │ │ └── server_inspection.go │ │ ├── connrotation │ │ └── connrotation.go │ │ ├── consistencydetector │ │ ├── data_consistency_detector.go │ │ ├── list_data_consistency_detector.go │ │ └── watch_list_data_consistency_detector.go │ │ ├── flowcontrol │ │ ├── backoff.go │ │ └── throttle.go │ │ ├── homedir │ │ └── homedir.go │ │ ├── jsonpath │ │ ├── doc.go │ │ ├── jsonpath.go │ │ ├── node.go │ │ └── parser.go │ │ ├── keyutil │ │ ├── OWNERS │ │ └── key.go │ │ ├── watchlist │ │ └── watch_list.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 │ ├── OWNERS │ ├── 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 │ │ │ ├── OWNERS │ │ │ ├── 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 │ │ │ ├── OWNERS │ │ │ ├── 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 │ │ │ └── plural_exceptions.go │ ├── third_party │ │ └── forked │ │ │ └── golang │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ └── reflect │ │ │ └── type.go │ └── tools.go ├── gengo │ └── v2 │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── 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 │ │ ├── OWNERS │ │ ├── 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 │ │ │ ├── OWNERS │ │ │ ├── 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 │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── document.go │ │ │ ├── document_v3.go │ │ │ └── openapi.go │ │ └── sets │ │ │ ├── empty.go │ │ │ └── string.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 │ ├── pointer │ ├── OWNERS │ ├── README.md │ └── pointer.go │ ├── ptr │ ├── OWNERS │ ├── README.md │ └── ptr.go │ └── trace │ ├── README.md │ └── trace.go ├── modules.txt ├── mvdan.cc ├── editorconfig │ ├── .gitmodules │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── editorconfig.go │ └── pattern_bundle.go ├── gofumpt │ ├── LICENSE │ ├── LICENSE.google │ ├── format │ │ ├── format.go │ │ ├── rewrite.go │ │ └── simplify.go │ └── internal │ │ ├── govendor │ │ └── go │ │ │ ├── doc │ │ │ └── comment │ │ │ │ ├── doc.go │ │ │ │ ├── html.go │ │ │ │ ├── markdown.go │ │ │ │ ├── parse.go │ │ │ │ ├── print.go │ │ │ │ ├── std.go │ │ │ │ └── text.go │ │ │ ├── format │ │ │ ├── format.go │ │ │ └── internal.go │ │ │ └── printer │ │ │ ├── comment.go │ │ │ ├── gobuild.go │ │ │ ├── nodes.go │ │ │ └── printer.go │ │ └── version │ │ └── version.go ├── sh │ └── v3 │ │ ├── LICENSE │ │ ├── cmd │ │ └── shfmt │ │ │ ├── Dockerfile │ │ │ ├── docker-entrypoint.sh │ │ │ ├── main.go │ │ │ └── shfmt.1.scd │ │ ├── fileutil │ │ └── file.go │ │ └── syntax │ │ ├── braces.go │ │ ├── canonical.sh │ │ ├── doc.go │ │ ├── lexer.go │ │ ├── nodes.go │ │ ├── parser.go │ │ ├── parser_arithm.go │ │ ├── printer.go │ │ ├── quote.go │ │ ├── quotestate_string.go │ │ ├── simplify.go │ │ ├── token_string.go │ │ ├── tokens.go │ │ ├── typedjson │ │ └── json.go │ │ └── walk.go └── unparam │ ├── LICENSE │ └── check │ └── check.go └── sigs.k8s.io ├── controller-runtime ├── .gitignore ├── .golangci.yml ├── .gomodcheck.yaml ├── CONTRIBUTING.md ├── FAQ.md ├── LICENSE ├── Makefile ├── OWNERS ├── OWNERS_ALIASES ├── README.md ├── RELEASE.md ├── SECURITY_CONTACTS ├── TMP-LOGGING.md ├── VERSIONING.md ├── alias.go ├── code-of-conduct.md ├── doc.go └── pkg │ ├── builder │ ├── controller.go │ ├── doc.go │ ├── options.go │ └── webhook.go │ ├── cache │ ├── cache.go │ ├── delegating_by_gvk_cache.go │ ├── doc.go │ ├── informer_cache.go │ ├── internal │ │ ├── cache_reader.go │ │ ├── informers.go │ │ └── selector.go │ └── multi_namespace_cache.go │ ├── certwatcher │ ├── certwatcher.go │ ├── doc.go │ └── metrics │ │ └── metrics.go │ ├── client │ ├── apiutil │ │ ├── apimachinery.go │ │ ├── errors.go │ │ └── restmapper.go │ ├── client.go │ ├── client_rest_resources.go │ ├── codec.go │ ├── config │ │ ├── config.go │ │ └── doc.go │ ├── doc.go │ ├── dryrun.go │ ├── fake │ │ ├── client.go │ │ └── doc.go │ ├── fieldowner.go │ ├── fieldvalidation.go │ ├── interceptor │ │ └── intercept.go │ ├── interfaces.go │ ├── metadata_client.go │ ├── namespaced_client.go │ ├── object.go │ ├── options.go │ ├── patch.go │ ├── typed_client.go │ ├── unstructured_client.go │ └── watch.go │ ├── cluster │ ├── cluster.go │ └── internal.go │ ├── config │ └── controller.go │ ├── controller │ ├── controller.go │ ├── controllerutil │ │ ├── controllerutil.go │ │ └── doc.go │ ├── doc.go │ ├── name.go │ └── priorityqueue │ │ ├── metrics.go │ │ └── priorityqueue.go │ ├── conversion │ └── conversion.go │ ├── event │ ├── doc.go │ └── event.go │ ├── handler │ ├── doc.go │ ├── enqueue.go │ ├── enqueue_mapped.go │ ├── enqueue_owner.go │ └── eventhandler.go │ ├── healthz │ ├── doc.go │ └── healthz.go │ ├── internal │ ├── controller │ │ ├── controller.go │ │ └── metrics │ │ │ └── metrics.go │ ├── field │ │ └── selector │ │ │ └── utils.go │ ├── httpserver │ │ └── server.go │ ├── log │ │ └── log.go │ ├── metrics │ │ └── workqueue.go │ ├── objectutil │ │ └── objectutil.go │ ├── recorder │ │ └── recorder.go │ ├── source │ │ ├── event_handler.go │ │ └── kind.go │ └── syncs │ │ └── syncs.go │ ├── leaderelection │ ├── doc.go │ └── leader_election.go │ ├── log │ ├── deleg.go │ ├── log.go │ ├── null.go │ ├── warning_handler.go │ └── zap │ │ ├── flags.go │ │ ├── kube_helpers.go │ │ └── zap.go │ ├── manager │ ├── doc.go │ ├── internal.go │ ├── manager.go │ ├── runnable_group.go │ ├── server.go │ └── signals │ │ ├── doc.go │ │ ├── signal.go │ │ ├── signal_posix.go │ │ └── signal_windows.go │ ├── metrics │ ├── client_go_adapter.go │ ├── doc.go │ ├── leaderelection.go │ ├── registry.go │ ├── server │ │ ├── doc.go │ │ └── server.go │ └── workqueue.go │ ├── predicate │ ├── doc.go │ └── predicate.go │ ├── reconcile │ ├── doc.go │ └── reconcile.go │ ├── recorder │ └── recorder.go │ ├── scheme │ └── scheme.go │ ├── source │ ├── doc.go │ └── source.go │ └── webhook │ ├── admission │ ├── decode.go │ ├── defaulter_custom.go │ ├── doc.go │ ├── http.go │ ├── metrics │ │ └── metrics.go │ ├── multi.go │ ├── response.go │ ├── validator_custom.go │ └── webhook.go │ ├── alias.go │ ├── conversion │ ├── conversion.go │ └── decoder.go │ ├── doc.go │ ├── internal │ └── metrics │ │ └── metrics.go │ └── server.go ├── controller-tools ├── LICENSE ├── cmd │ └── controller-gen │ │ └── main.go └── pkg │ ├── crd │ ├── conv.go │ ├── desc_visitor.go │ ├── doc.go │ ├── flatten.go │ ├── gen.go │ ├── known_types.go │ ├── markers │ │ ├── crd.go │ │ ├── doc.go │ │ ├── package.go │ │ ├── priority.go │ │ ├── register.go │ │ ├── topology.go │ │ ├── validation.go │ │ └── zz_generated.markerhelp.go │ ├── parser.go │ ├── schema.go │ ├── schema_visitor.go │ ├── spec.go │ └── zz_generated.markerhelp.go │ ├── deepcopy │ ├── doc.go │ ├── gen.go │ ├── traverse.go │ └── zz_generated.markerhelp.go │ ├── genall │ ├── doc.go │ ├── genall.go │ ├── help │ │ ├── doc.go │ │ ├── pretty │ │ │ ├── doc.go │ │ │ ├── help.go │ │ │ ├── print.go │ │ │ └── table.go │ │ ├── sort.go │ │ └── types.go │ ├── input.go │ ├── options.go │ ├── output.go │ └── zz_generated.markerhelp.go │ ├── loader │ ├── doc.go │ ├── errors.go │ ├── loader.go │ ├── paths.go │ ├── refs.go │ └── visit.go │ ├── markers │ ├── collect.go │ ├── doc.go │ ├── help.go │ ├── parse.go │ ├── reg.go │ ├── regutil.go │ └── zip.go │ ├── rbac │ ├── parser.go │ └── zz_generated.markerhelp.go │ ├── schemapatcher │ ├── gen.go │ ├── internal │ │ └── yaml │ │ │ ├── convert.go │ │ │ ├── nested.go │ │ │ └── set.go │ └── zz_generated.markerhelp.go │ ├── version │ └── version.go │ └── webhook │ ├── parser.go │ └── zz_generated.markerhelp.go ├── json ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── OWNERS ├── 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 ├── kustomize ├── api │ ├── LICENSE │ ├── filters │ │ ├── annotations │ │ │ ├── annotations.go │ │ │ └── doc.go │ │ ├── fieldspec │ │ │ ├── doc.go │ │ │ └── fieldspec.go │ │ ├── filtersutil │ │ │ └── setters.go │ │ ├── fsslice │ │ │ ├── doc.go │ │ │ └── fsslice.go │ │ ├── iampolicygenerator │ │ │ ├── doc.go │ │ │ └── iampolicygenerator.go │ │ ├── imagetag │ │ │ ├── doc.go │ │ │ ├── imagetag.go │ │ │ ├── legacy.go │ │ │ └── updater.go │ │ ├── labels │ │ │ ├── doc.go │ │ │ └── labels.go │ │ ├── nameref │ │ │ ├── doc.go │ │ │ ├── nameref.go │ │ │ └── seqfilter.go │ │ ├── namespace │ │ │ ├── doc.go │ │ │ └── namespace.go │ │ ├── patchjson6902 │ │ │ ├── doc.go │ │ │ └── patchjson6902.go │ │ ├── patchstrategicmerge │ │ │ ├── doc.go │ │ │ └── patchstrategicmerge.go │ │ ├── prefix │ │ │ ├── doc.go │ │ │ └── prefix.go │ │ ├── refvar │ │ │ ├── doc.go │ │ │ ├── expand.go │ │ │ └── refvar.go │ │ ├── replacement │ │ │ ├── doc.go │ │ │ └── replacement.go │ │ ├── replicacount │ │ │ ├── doc.go │ │ │ └── replicacount.go │ │ ├── suffix │ │ │ ├── doc.go │ │ │ └── suffix.go │ │ └── valueadd │ │ │ └── valueadd.go │ ├── hasher │ │ └── hasher.go │ ├── ifc │ │ └── ifc.go │ ├── internal │ │ ├── accumulator │ │ │ ├── loadconfigfromcrds.go │ │ │ ├── namereferencetransformer.go │ │ │ ├── refvartransformer.go │ │ │ └── resaccumulator.go │ │ ├── builtins │ │ │ ├── AnnotationsTransformer.go │ │ │ ├── ConfigMapGenerator.go │ │ │ ├── HashTransformer.go │ │ │ ├── HelmChartInflationGenerator.go │ │ │ ├── IAMPolicyGenerator.go │ │ │ ├── ImageTagTransformer.go │ │ │ ├── LabelTransformer.go │ │ │ ├── NamespaceTransformer.go │ │ │ ├── PatchJson6902Transformer.go │ │ │ ├── PatchStrategicMergeTransformer.go │ │ │ ├── PatchTransformer.go │ │ │ ├── PrefixTransformer.go │ │ │ ├── ReplacementTransformer.go │ │ │ ├── ReplicaCountTransformer.go │ │ │ ├── SecretGenerator.go │ │ │ ├── SortOrderTransformer.go │ │ │ ├── SuffixTransformer.go │ │ │ ├── ValueAddTransformer.go │ │ │ └── doc.go │ │ ├── generators │ │ │ ├── configmap.go │ │ │ ├── secret.go │ │ │ └── utils.go │ │ ├── git │ │ │ ├── cloner.go │ │ │ ├── gitrunner.go │ │ │ └── repospec.go │ │ ├── image │ │ │ └── image.go │ │ ├── konfig │ │ │ └── builtinpluginconsts │ │ │ │ ├── commonannotations.go │ │ │ │ ├── commonlabels.go │ │ │ │ ├── defaultconfig.go │ │ │ │ ├── doc.go │ │ │ │ ├── images.go │ │ │ │ ├── metadatalabels.go │ │ │ │ ├── nameprefix.go │ │ │ │ ├── namereference.go │ │ │ │ ├── namespace.go │ │ │ │ ├── namesuffix.go │ │ │ │ ├── replicas.go │ │ │ │ ├── templatelabels.go │ │ │ │ └── varreference.go │ │ ├── kusterr │ │ │ └── yamlformaterror.go │ │ ├── loader │ │ │ ├── errors.go │ │ │ ├── fileloader.go │ │ │ ├── loader.go │ │ │ └── loadrestrictions.go │ │ ├── plugins │ │ │ ├── builtinconfig │ │ │ │ ├── doc.go │ │ │ │ ├── loaddefaultconfig.go │ │ │ │ ├── namebackreferences.go │ │ │ │ └── transformerconfig.go │ │ │ ├── builtinhelpers │ │ │ │ ├── builtinplugintype_string.go │ │ │ │ └── builtins.go │ │ │ ├── execplugin │ │ │ │ └── execplugin.go │ │ │ ├── fnplugin │ │ │ │ └── fnplugin.go │ │ │ ├── loader │ │ │ │ ├── load_go_plugin.go │ │ │ │ ├── load_go_plugin_disabled.go │ │ │ │ └── loader.go │ │ │ └── utils │ │ │ │ └── utils.go │ │ ├── target │ │ │ ├── errmissingkustomization.go │ │ │ ├── kusttarget.go │ │ │ ├── kusttarget_configplugin.go │ │ │ └── multitransformer.go │ │ ├── utils │ │ │ ├── annotations.go │ │ │ ├── errtimeout.go │ │ │ ├── makeResIds.go │ │ │ ├── stringslice.go │ │ │ └── timedcall.go │ │ └── validate │ │ │ └── fieldvalidator.go │ ├── konfig │ │ ├── doc.go │ │ ├── general.go │ │ └── plugins.go │ ├── krusty │ │ ├── doc.go │ │ ├── kustomizer.go │ │ └── options.go │ ├── kv │ │ └── kv.go │ ├── provenance │ │ └── provenance.go │ ├── provider │ │ └── depprovider.go │ ├── resmap │ │ ├── factory.go │ │ ├── resmap.go │ │ └── reswrangler.go │ ├── resource │ │ ├── doc.go │ │ ├── factory.go │ │ ├── idset.go │ │ ├── origin.go │ │ └── resource.go │ └── types │ │ ├── builtinpluginloadingoptions_string.go │ │ ├── configmapargs.go │ │ ├── doc.go │ │ ├── erronlybuiltinpluginsallowed.go │ │ ├── errunabletofind.go │ │ ├── fieldspec.go │ │ ├── generationbehavior.go │ │ ├── generatorargs.go │ │ ├── generatoroptions.go │ │ ├── helmchartargs.go │ │ ├── iampolicygenerator.go │ │ ├── image.go │ │ ├── kustomization.go │ │ ├── kvpairsources.go │ │ ├── labels.go │ │ ├── loadrestrictions.go │ │ ├── loadrestrictions_string.go │ │ ├── objectmeta.go │ │ ├── pair.go │ │ ├── patch.go │ │ ├── patchstrategicmerge.go │ │ ├── pluginconfig.go │ │ ├── pluginrestrictions.go │ │ ├── pluginrestrictions_string.go │ │ ├── replacement.go │ │ ├── replacementfield.go │ │ ├── replica.go │ │ ├── secretargs.go │ │ ├── selector.go │ │ ├── sortoptions.go │ │ ├── typemeta.go │ │ └── var.go └── kyaml │ ├── LICENSE │ ├── comments │ └── comments.go │ ├── errors │ └── errors.go │ ├── ext │ └── ext.go │ ├── fieldmeta │ └── fieldmeta.go │ ├── filesys │ ├── confirmeddir.go │ ├── doc.go │ ├── file.go │ ├── fileinfo.go │ ├── fileondisk.go │ ├── filesystem.go │ ├── fsnode.go │ ├── fsondisk.go │ ├── fsondisk_unix.go │ ├── fsondisk_windows.go │ └── util.go │ ├── fn │ └── runtime │ │ ├── container │ │ └── container.go │ │ ├── exec │ │ ├── doc.go │ │ └── exec.go │ │ └── runtimeutil │ │ ├── doc.go │ │ ├── functiontypes.go │ │ ├── runtimeutil.go │ │ └── types.go │ ├── kio │ ├── byteio_reader.go │ ├── byteio_writer.go │ ├── doc.go │ ├── ignorefilesmatcher.go │ ├── kio.go │ ├── kioutil │ │ └── kioutil.go │ ├── pkgio_reader.go │ ├── pkgio_writer.go │ └── tree.go │ ├── openapi │ ├── Makefile │ ├── README.md │ ├── kubernetesapi │ │ ├── openapiinfo.go │ │ └── v1_21_2 │ │ │ ├── swagger.go │ │ │ └── swagger.pb │ ├── kustomizationapi │ │ ├── swagger.go │ │ └── swagger.json │ └── openapi.go │ ├── order │ └── syncorder.go │ ├── resid │ ├── gvk.go │ └── resid.go │ ├── runfn │ └── runfn.go │ ├── sets │ ├── string.go │ └── stringlist.go │ ├── sliceutil │ └── slice.go │ ├── utils │ └── pathsplitter.go │ └── yaml │ ├── alias.go │ ├── compatibility.go │ ├── const.go │ ├── datamap.go │ ├── doc.go │ ├── filters.go │ ├── fns.go │ ├── internal │ └── k8sgen │ │ └── pkg │ │ ├── labels │ │ ├── copied.deepcopy.go │ │ ├── labels.go │ │ └── selector.go │ │ ├── selection │ │ └── operator.go │ │ └── util │ │ ├── errors │ │ └── errors.go │ │ ├── sets │ │ ├── empty.go │ │ └── string.go │ │ └── validation │ │ ├── field │ │ ├── errors.go │ │ └── path.go │ │ └── validation.go │ ├── kfns.go │ ├── mapnode.go │ ├── match.go │ ├── merge2 │ ├── merge2.go │ ├── smpdirective.go │ └── smpdirective_string.go │ ├── order.go │ ├── rnode.go │ ├── schema │ └── schema.go │ ├── types.go │ ├── util.go │ └── walk │ ├── associative_sequence.go │ ├── map.go │ ├── nonassociative_sequence.go │ ├── scalar.go │ ├── visitor.go │ └── walk.go ├── randfill ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── OWNERS ├── OWNERS_ALIASES ├── README.md ├── SECURITY_CONTACTS ├── bytesource │ └── bytesource.go ├── code-of-conduct.md └── randfill.go ├── structured-merge-diff └── v4 │ ├── 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 ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── OWNERS ├── README.md ├── RELEASE.md ├── SECURITY_CONTACTS ├── code-of-conduct.md ├── fields.go ├── goyaml.v2 ├── LICENSE ├── LICENSE.libyaml ├── NOTICE ├── OWNERS ├── 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 ├── goyaml.v3 ├── LICENSE ├── NOTICE ├── OWNERS ├── README.md ├── apic.go ├── decode.go ├── emitterc.go ├── encode.go ├── parserc.go ├── patch.go ├── readerc.go ├── resolve.go ├── scannerc.go ├── sorter.go ├── writerc.go ├── yaml.go ├── yamlh.go └── yamlprivateh.go ├── yaml.go └── yaml_go110.go /.dockerignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | release/ 3 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/develop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/.github/workflows/develop.yaml -------------------------------------------------------------------------------- /.github/workflows/e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/.github/workflows/e2e.yaml -------------------------------------------------------------------------------- /.github/workflows/images.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/.github/workflows/images.yaml -------------------------------------------------------------------------------- /.github/workflows/latest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/.github/workflows/latest.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/versions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/.github/workflows/versions.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/.golangci.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/SECURITY.md -------------------------------------------------------------------------------- /charts/terranetes-controller/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/charts/terranetes-controller/Chart.yaml -------------------------------------------------------------------------------- /cmd/controller/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/cmd/controller/main.go -------------------------------------------------------------------------------- /cmd/preload/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/cmd/preload/main.go -------------------------------------------------------------------------------- /cmd/source/source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/cmd/source/source.go -------------------------------------------------------------------------------- /cmd/source/source_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/cmd/source/source_test.go -------------------------------------------------------------------------------- /cmd/step/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/cmd/step/main.go -------------------------------------------------------------------------------- /cmd/step/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/cmd/step/types.go -------------------------------------------------------------------------------- /cmd/tnctl/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/cmd/tnctl/main.go -------------------------------------------------------------------------------- /docs/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/docs/development.md -------------------------------------------------------------------------------- /docs/images/logo-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/docs/images/logo-blue.png -------------------------------------------------------------------------------- /docs/images/logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/docs/images/logo-white.png -------------------------------------------------------------------------------- /examples/checkov-all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/examples/checkov-all.yaml -------------------------------------------------------------------------------- /examples/cloudresource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/examples/cloudresource.yaml -------------------------------------------------------------------------------- /examples/configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/examples/configuration.yaml -------------------------------------------------------------------------------- /examples/contexts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/examples/contexts.yaml -------------------------------------------------------------------------------- /examples/policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/examples/policy.yaml -------------------------------------------------------------------------------- /examples/provider-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/examples/provider-secrets.yaml -------------------------------------------------------------------------------- /examples/provider.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/examples/provider.yaml -------------------------------------------------------------------------------- /examples/revision.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/examples/revision.yaml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/go.sum -------------------------------------------------------------------------------- /hack/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/hack/boilerplate.go.txt -------------------------------------------------------------------------------- /hack/create-development.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/hack/create-development.sh -------------------------------------------------------------------------------- /hack/gofmt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/hack/gofmt.sh -------------------------------------------------------------------------------- /hack/install-trivy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/hack/install-trivy.sh -------------------------------------------------------------------------------- /hack/patch-crd-gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/hack/patch-crd-gen.sh -------------------------------------------------------------------------------- /hack/replace_modtime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/hack/replace_modtime.sh -------------------------------------------------------------------------------- /hack/retry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/hack/retry.sh -------------------------------------------------------------------------------- /hack/verify-codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/hack/verify-codegen.sh -------------------------------------------------------------------------------- /images/Dockerfile.cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/images/Dockerfile.cli -------------------------------------------------------------------------------- /images/Dockerfile.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/images/Dockerfile.controller -------------------------------------------------------------------------------- /images/Dockerfile.executor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/images/Dockerfile.executor -------------------------------------------------------------------------------- /images/assets/ssh_config: -------------------------------------------------------------------------------- 1 | StrictHostKeyChecking no 2 | UserKnownHostsFile=/dev/null 3 | -------------------------------------------------------------------------------- /images/assets/watch_logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/images/assets/watch_logs.sh -------------------------------------------------------------------------------- /pkg/apis/core/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/apis/core/v1alpha1/doc.go -------------------------------------------------------------------------------- /pkg/apis/core/v1alpha1/status_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/apis/core/v1alpha1/status_types.go -------------------------------------------------------------------------------- /pkg/apis/terraform/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/apis/terraform/v1alpha1/doc.go -------------------------------------------------------------------------------- /pkg/apiserver/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/apiserver/handlers.go -------------------------------------------------------------------------------- /pkg/apiserver/logging/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/apiserver/logging/filter.go -------------------------------------------------------------------------------- /pkg/apiserver/logging/filter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/apiserver/logging/filter_test.go -------------------------------------------------------------------------------- /pkg/apiserver/logging/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/apiserver/logging/metrics.go -------------------------------------------------------------------------------- /pkg/apiserver/recovery/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/apiserver/recovery/filter.go -------------------------------------------------------------------------------- /pkg/apiserver/recovery/filter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/apiserver/recovery/filter_test.go -------------------------------------------------------------------------------- /pkg/apiserver/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/apiserver/server.go -------------------------------------------------------------------------------- /pkg/apiserver/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/apiserver/server_test.go -------------------------------------------------------------------------------- /pkg/assets/assets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/assets/assets.go -------------------------------------------------------------------------------- /pkg/assets/assets_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/assets/assets_test.go -------------------------------------------------------------------------------- /pkg/assets/job.yaml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/assets/job.yaml.tpl -------------------------------------------------------------------------------- /pkg/assets/preload.yaml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/assets/preload.yaml.tpl -------------------------------------------------------------------------------- /pkg/cmd/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/config.go -------------------------------------------------------------------------------- /pkg/cmd/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/config_test.go -------------------------------------------------------------------------------- /pkg/cmd/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/errors.go -------------------------------------------------------------------------------- /pkg/cmd/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/errors_test.go -------------------------------------------------------------------------------- /pkg/cmd/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/factory.go -------------------------------------------------------------------------------- /pkg/cmd/factory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/factory_test.go -------------------------------------------------------------------------------- /pkg/cmd/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/helper.go -------------------------------------------------------------------------------- /pkg/cmd/icons.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/icons.go -------------------------------------------------------------------------------- /pkg/cmd/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/option.go -------------------------------------------------------------------------------- /pkg/cmd/preload/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/preload/command.go -------------------------------------------------------------------------------- /pkg/cmd/preload/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/preload/context.go -------------------------------------------------------------------------------- /pkg/cmd/preload/preload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/preload/preload.go -------------------------------------------------------------------------------- /pkg/cmd/preload/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/preload/types.go -------------------------------------------------------------------------------- /pkg/cmd/search/github/github.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/search/github/github.go -------------------------------------------------------------------------------- /pkg/cmd/search/terraform/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/search/terraform/registry.go -------------------------------------------------------------------------------- /pkg/cmd/search/terraform/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/search/terraform/types.go -------------------------------------------------------------------------------- /pkg/cmd/search/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/search/types.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/apply/apply.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/apply/apply.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/approve/approve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/approve/approve.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/approve/approve_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/approve/approve_test.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/approve/cloudresource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/approve/cloudresource.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/approve/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/approve/configuration.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/config/config.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/config/config_test.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/config/sources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/config/sources.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/config/sources_add.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/config/sources_add.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/config/sources_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/config/sources_list.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/config/sources_remove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/config/sources_remove.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/config/sources_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/config/sources_test.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/config/view.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/config/view.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/config/view_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/config/view_test.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/convert/cloudresource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/convert/cloudresource.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/convert/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/convert/configuration.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/convert/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/convert/convert.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/convert/convert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/convert/convert_test.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/convert/revision.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/convert/revision.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/create/assets/assets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/create/assets/assets.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/create/cloudresource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/create/cloudresource.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/create/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/create/create.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/create/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/create/helper.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/create/revision.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/create/revision.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/create/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/create/types.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/delete/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/delete/delete.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/describe/assets/assets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/describe/assets/assets.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/describe/cloudresource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/describe/cloudresource.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/describe/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/describe/configuration.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/describe/describe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/describe/describe.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/generate/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/generate/docs.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/generate/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/generate/generate.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/get/generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/get/generic.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/get/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/get/get.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/kubectl/kubectl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/kubectl/kubectl.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/kubectl/kubectl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/kubectl/kubectl_test.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/kubectl/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/kubectl/plugin.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/kubectl/plugin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/kubectl/plugin_test.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/kubectl/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/kubectl/suite_test.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/logs/cloudresource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/logs/cloudresource.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/logs/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/logs/configuration.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/logs/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/logs/logs.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/logs/logs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/logs/logs_test.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/retry/cloudresource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/retry/cloudresource.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/retry/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/retry/configuration.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/retry/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/retry/retry.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/retry/retry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/retry/retry_test.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/search/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/search/search.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/state/clean.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/state/clean.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/state/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/state/get.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/state/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/state/helper.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/state/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/state/list.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/state/list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/state/list_test.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/state/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/state/state.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/state/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/state/suite_test.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/tnctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/tnctl.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/tnctl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/tnctl_test.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/verify/checks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/verify/checks.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/verify/revision.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/verify/revision.go -------------------------------------------------------------------------------- /pkg/cmd/tnctl/verify/verify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/tnctl/verify/verify.go -------------------------------------------------------------------------------- /pkg/cmd/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/types.go -------------------------------------------------------------------------------- /pkg/cmd/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/cmd/types_test.go -------------------------------------------------------------------------------- /pkg/controller/cloudresource/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/controller/cloudresource/delete.go -------------------------------------------------------------------------------- /pkg/controller/cloudresource/ensure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/controller/cloudresource/ensure.go -------------------------------------------------------------------------------- /pkg/controller/cloudresource/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/controller/cloudresource/metrics.go -------------------------------------------------------------------------------- /pkg/controller/conditions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/controller/conditions.go -------------------------------------------------------------------------------- /pkg/controller/configuration/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/controller/configuration/delete.go -------------------------------------------------------------------------------- /pkg/controller/configuration/ensure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/controller/configuration/ensure.go -------------------------------------------------------------------------------- /pkg/controller/configuration/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/controller/configuration/helper.go -------------------------------------------------------------------------------- /pkg/controller/configuration/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/controller/configuration/metrics.go -------------------------------------------------------------------------------- /pkg/controller/context/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/controller/context/controller.go -------------------------------------------------------------------------------- /pkg/controller/drift/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/controller/drift/controller.go -------------------------------------------------------------------------------- /pkg/controller/drift/ensure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/controller/drift/ensure.go -------------------------------------------------------------------------------- /pkg/controller/drift/reconcile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/controller/drift/reconcile.go -------------------------------------------------------------------------------- /pkg/controller/drift/reconcile_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/controller/drift/reconcile_test.go -------------------------------------------------------------------------------- /pkg/controller/ensure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/controller/ensure.go -------------------------------------------------------------------------------- /pkg/controller/ensure_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/controller/ensure_test.go -------------------------------------------------------------------------------- /pkg/controller/expire/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/controller/expire/controller.go -------------------------------------------------------------------------------- /pkg/controller/expire/ensure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/controller/expire/ensure.go -------------------------------------------------------------------------------- /pkg/controller/expire/reconcile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/controller/expire/reconcile.go -------------------------------------------------------------------------------- /pkg/controller/expire/reconcile_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/controller/expire/reconcile_test.go -------------------------------------------------------------------------------- /pkg/controller/finalizers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/controller/finalizers.go -------------------------------------------------------------------------------- /pkg/controller/namespace/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/controller/namespace/controller.go -------------------------------------------------------------------------------- /pkg/controller/plan/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/controller/plan/controller.go -------------------------------------------------------------------------------- /pkg/controller/plan/ensure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/controller/plan/ensure.go -------------------------------------------------------------------------------- /pkg/controller/plan/reconcile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/controller/plan/reconcile.go -------------------------------------------------------------------------------- /pkg/controller/plan/reconcile_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/controller/plan/reconcile_test.go -------------------------------------------------------------------------------- /pkg/controller/policy/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/controller/policy/controller.go -------------------------------------------------------------------------------- /pkg/controller/predicate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/controller/predicate.go -------------------------------------------------------------------------------- /pkg/controller/predicate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/controller/predicate_test.go -------------------------------------------------------------------------------- /pkg/controller/preload/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/controller/preload/controller.go -------------------------------------------------------------------------------- /pkg/controller/preload/ensure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/controller/preload/ensure.go -------------------------------------------------------------------------------- /pkg/controller/preload/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/controller/preload/metrics.go -------------------------------------------------------------------------------- /pkg/controller/preload/reconcile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/controller/preload/reconcile.go -------------------------------------------------------------------------------- /pkg/controller/provider/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/controller/provider/controller.go -------------------------------------------------------------------------------- /pkg/controller/provider/ensure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/controller/provider/ensure.go -------------------------------------------------------------------------------- /pkg/controller/provider/reconcile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/controller/provider/reconcile.go -------------------------------------------------------------------------------- /pkg/controller/revision/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/controller/revision/controller.go -------------------------------------------------------------------------------- /pkg/controller/revision/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/controller/revision/delete.go -------------------------------------------------------------------------------- /pkg/controller/revision/delete_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/controller/revision/delete_test.go -------------------------------------------------------------------------------- /pkg/controller/revision/ensure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/controller/revision/ensure.go -------------------------------------------------------------------------------- /pkg/controller/revision/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/controller/revision/metrics.go -------------------------------------------------------------------------------- /pkg/controller/revision/reconcile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/controller/revision/reconcile.go -------------------------------------------------------------------------------- /pkg/controller/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/controller/status.go -------------------------------------------------------------------------------- /pkg/controller/status_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/controller/status_test.go -------------------------------------------------------------------------------- /pkg/controller/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/controller/types.go -------------------------------------------------------------------------------- /pkg/handlers/cloudresources/mutation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/handlers/cloudresources/mutation.go -------------------------------------------------------------------------------- /pkg/handlers/configurations/mutation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/handlers/configurations/mutation.go -------------------------------------------------------------------------------- /pkg/handlers/contexts/validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/handlers/contexts/validation.go -------------------------------------------------------------------------------- /pkg/handlers/namespaces/validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/handlers/namespaces/validation.go -------------------------------------------------------------------------------- /pkg/handlers/policies/validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/handlers/policies/validation.go -------------------------------------------------------------------------------- /pkg/handlers/providers/validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/handlers/providers/validation.go -------------------------------------------------------------------------------- /pkg/handlers/revisions/mutation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/handlers/revisions/mutation.go -------------------------------------------------------------------------------- /pkg/handlers/revisions/mutation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/handlers/revisions/mutation_test.go -------------------------------------------------------------------------------- /pkg/handlers/revisions/validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/handlers/revisions/validation.go -------------------------------------------------------------------------------- /pkg/register/assets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/register/assets.go -------------------------------------------------------------------------------- /pkg/schema/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/schema/decode.go -------------------------------------------------------------------------------- /pkg/schema/decode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/schema/decode_test.go -------------------------------------------------------------------------------- /pkg/schema/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/schema/schema.go -------------------------------------------------------------------------------- /pkg/schema/schema_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/schema/schema_test.go -------------------------------------------------------------------------------- /pkg/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/server/server.go -------------------------------------------------------------------------------- /pkg/server/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/server/types.go -------------------------------------------------------------------------------- /pkg/server/webhooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/server/webhooks.go -------------------------------------------------------------------------------- /pkg/utils/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/convert.go -------------------------------------------------------------------------------- /pkg/utils/convert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/convert_test.go -------------------------------------------------------------------------------- /pkg/utils/download.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/download.go -------------------------------------------------------------------------------- /pkg/utils/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/env.go -------------------------------------------------------------------------------- /pkg/utils/env_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/env_test.go -------------------------------------------------------------------------------- /pkg/utils/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/file.go -------------------------------------------------------------------------------- /pkg/utils/file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/file_test.go -------------------------------------------------------------------------------- /pkg/utils/filters/jobs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/filters/jobs.go -------------------------------------------------------------------------------- /pkg/utils/filters/jobs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/filters/jobs_test.go -------------------------------------------------------------------------------- /pkg/utils/jobs/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/jobs/helper.go -------------------------------------------------------------------------------- /pkg/utils/jobs/jobs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/jobs/jobs.go -------------------------------------------------------------------------------- /pkg/utils/jobs/jobs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/jobs/jobs_test.go -------------------------------------------------------------------------------- /pkg/utils/kubernetes/clients.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/kubernetes/clients.go -------------------------------------------------------------------------------- /pkg/utils/kubernetes/crds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/kubernetes/crds.go -------------------------------------------------------------------------------- /pkg/utils/kubernetes/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/kubernetes/delete.go -------------------------------------------------------------------------------- /pkg/utils/kubernetes/delete_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/kubernetes/delete_test.go -------------------------------------------------------------------------------- /pkg/utils/kubernetes/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/kubernetes/get.go -------------------------------------------------------------------------------- /pkg/utils/kubernetes/get_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/kubernetes/get_test.go -------------------------------------------------------------------------------- /pkg/utils/kubernetes/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/kubernetes/labels.go -------------------------------------------------------------------------------- /pkg/utils/kubernetes/labels_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/kubernetes/labels_test.go -------------------------------------------------------------------------------- /pkg/utils/kubernetes/pods.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/kubernetes/pods.go -------------------------------------------------------------------------------- /pkg/utils/kubernetes/pods_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/kubernetes/pods_test.go -------------------------------------------------------------------------------- /pkg/utils/kubernetes/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/kubernetes/time.go -------------------------------------------------------------------------------- /pkg/utils/kubernetes/time_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/kubernetes/time_test.go -------------------------------------------------------------------------------- /pkg/utils/kubernetes/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/kubernetes/update.go -------------------------------------------------------------------------------- /pkg/utils/kubernetes/update_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/kubernetes/update_test.go -------------------------------------------------------------------------------- /pkg/utils/maps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/maps.go -------------------------------------------------------------------------------- /pkg/utils/maps_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/maps_test.go -------------------------------------------------------------------------------- /pkg/utils/policies/find.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/policies/find.go -------------------------------------------------------------------------------- /pkg/utils/policies/find_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/policies/find_test.go -------------------------------------------------------------------------------- /pkg/utils/preload/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/preload/data.go -------------------------------------------------------------------------------- /pkg/utils/preload/data_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/preload/data_test.go -------------------------------------------------------------------------------- /pkg/utils/preload/eks/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/preload/eks/helper.go -------------------------------------------------------------------------------- /pkg/utils/preload/eks/helper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/preload/eks/helper_test.go -------------------------------------------------------------------------------- /pkg/utils/preload/eks/loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/preload/eks/loader.go -------------------------------------------------------------------------------- /pkg/utils/preload/eks/loader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/preload/eks/loader_test.go -------------------------------------------------------------------------------- /pkg/utils/preload/eks/mocks/ec2_zz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/preload/eks/mocks/ec2_zz.go -------------------------------------------------------------------------------- /pkg/utils/preload/eks/mocks/eks_zz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/preload/eks/mocks/eks_zz.go -------------------------------------------------------------------------------- /pkg/utils/preload/eks/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/preload/eks/types.go -------------------------------------------------------------------------------- /pkg/utils/preload/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/preload/types.go -------------------------------------------------------------------------------- /pkg/utils/random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/random.go -------------------------------------------------------------------------------- /pkg/utils/random_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/random_test.go -------------------------------------------------------------------------------- /pkg/utils/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/retry.go -------------------------------------------------------------------------------- /pkg/utils/retry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/retry_test.go -------------------------------------------------------------------------------- /pkg/utils/semvar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/semvar.go -------------------------------------------------------------------------------- /pkg/utils/semvar_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/semvar_test.go -------------------------------------------------------------------------------- /pkg/utils/semver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/semver.go -------------------------------------------------------------------------------- /pkg/utils/semver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/semver_test.go -------------------------------------------------------------------------------- /pkg/utils/similarity/similarity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/similarity/similarity.go -------------------------------------------------------------------------------- /pkg/utils/similarity/similarity_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/similarity/similarity_test.go -------------------------------------------------------------------------------- /pkg/utils/similarity/tokenize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/similarity/tokenize.go -------------------------------------------------------------------------------- /pkg/utils/similarity/tokenize_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/similarity/tokenize_test.go -------------------------------------------------------------------------------- /pkg/utils/slices.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/slices.go -------------------------------------------------------------------------------- /pkg/utils/slices_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/slices_test.go -------------------------------------------------------------------------------- /pkg/utils/template/templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/template/templates.go -------------------------------------------------------------------------------- /pkg/utils/template/templates_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/template/templates_test.go -------------------------------------------------------------------------------- /pkg/utils/terraform/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/terraform/errors.go -------------------------------------------------------------------------------- /pkg/utils/terraform/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/terraform/errors_test.go -------------------------------------------------------------------------------- /pkg/utils/terraform/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/terraform/logs.go -------------------------------------------------------------------------------- /pkg/utils/terraform/logs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/terraform/logs_test.go -------------------------------------------------------------------------------- /pkg/utils/terraform/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/terraform/template.go -------------------------------------------------------------------------------- /pkg/utils/terraform/template_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/terraform/template_test.go -------------------------------------------------------------------------------- /pkg/utils/terraform/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/terraform/types.go -------------------------------------------------------------------------------- /pkg/utils/terraform/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/terraform/utils.go -------------------------------------------------------------------------------- /pkg/utils/terraform/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/terraform/utils_test.go -------------------------------------------------------------------------------- /pkg/utils/wait.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/wait.go -------------------------------------------------------------------------------- /pkg/utils/wait_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/wait_test.go -------------------------------------------------------------------------------- /pkg/utils/weights/weights.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/weights/weights.go -------------------------------------------------------------------------------- /pkg/utils/weights/weights_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/weights/weights_test.go -------------------------------------------------------------------------------- /pkg/utils/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/yaml.go -------------------------------------------------------------------------------- /pkg/utils/yaml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/utils/yaml_test.go -------------------------------------------------------------------------------- /pkg/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/version/version.go -------------------------------------------------------------------------------- /pkg/version/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/pkg/version/version_test.go -------------------------------------------------------------------------------- /test/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/test/controller.go -------------------------------------------------------------------------------- /test/e2e/assets/checkov/external.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/test/e2e/assets/checkov/external.yaml -------------------------------------------------------------------------------- /test/e2e/assets/terraform/dummy/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/test/e2e/assets/terraform/dummy/main.tf -------------------------------------------------------------------------------- /test/e2e/check-suite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/test/e2e/check-suite.sh -------------------------------------------------------------------------------- /test/e2e/integration/apply.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/test/e2e/integration/apply.bats -------------------------------------------------------------------------------- /test/e2e/integration/checkov.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/test/e2e/integration/checkov.bats -------------------------------------------------------------------------------- /test/e2e/integration/cloudresource.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/test/e2e/integration/cloudresource.bats -------------------------------------------------------------------------------- /test/e2e/integration/contexts.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/test/e2e/integration/contexts.bats -------------------------------------------------------------------------------- /test/e2e/integration/destroy.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/test/e2e/integration/destroy.bats -------------------------------------------------------------------------------- /test/e2e/integration/drift.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/test/e2e/integration/drift.bats -------------------------------------------------------------------------------- /test/e2e/integration/error-handler.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/test/e2e/integration/error-handler.bats -------------------------------------------------------------------------------- /test/e2e/integration/infracost.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/test/e2e/integration/infracost.bats -------------------------------------------------------------------------------- /test/e2e/integration/plan.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/test/e2e/integration/plan.bats -------------------------------------------------------------------------------- /test/e2e/integration/private.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/test/e2e/integration/private.bats -------------------------------------------------------------------------------- /test/e2e/integration/protection.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/test/e2e/integration/protection.bats -------------------------------------------------------------------------------- /test/e2e/integration/revisions.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/test/e2e/integration/revisions.bats -------------------------------------------------------------------------------- /test/e2e/integration/setup.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/test/e2e/integration/setup.bats -------------------------------------------------------------------------------- /test/e2e/lib/helper.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/test/e2e/lib/helper.bash -------------------------------------------------------------------------------- /test/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/test/events.go -------------------------------------------------------------------------------- /test/fixtures/configurations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/test/fixtures/configurations.go -------------------------------------------------------------------------------- /test/fixtures/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/test/fixtures/context.go -------------------------------------------------------------------------------- /test/fixtures/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/test/fixtures/factory.go -------------------------------------------------------------------------------- /test/fixtures/jobs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/test/fixtures/jobs.go -------------------------------------------------------------------------------- /test/fixtures/namespaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/test/fixtures/namespaces.go -------------------------------------------------------------------------------- /test/fixtures/plan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/test/fixtures/plan.go -------------------------------------------------------------------------------- /test/fixtures/policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/test/fixtures/policy.go -------------------------------------------------------------------------------- /test/fixtures/providers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/test/fixtures/providers.go -------------------------------------------------------------------------------- /test/fixtures/revision.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/test/fixtures/revision.go -------------------------------------------------------------------------------- /test/fixtures/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/test/fixtures/state.go -------------------------------------------------------------------------------- /test/fixtures/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/test/fixtures/template.go -------------------------------------------------------------------------------- /tools/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/tools/tools.go -------------------------------------------------------------------------------- /vendor/cel.dev/expr/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.0.1 2 | # Keep this pinned version in parity with cel-go 3 | -------------------------------------------------------------------------------- /vendor/cel.dev/expr/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/cel.dev/expr/.gitattributes -------------------------------------------------------------------------------- /vendor/cel.dev/expr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/cel.dev/expr/.gitignore -------------------------------------------------------------------------------- /vendor/cel.dev/expr/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/cel.dev/expr/BUILD.bazel -------------------------------------------------------------------------------- /vendor/cel.dev/expr/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/cel.dev/expr/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /vendor/cel.dev/expr/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/cel.dev/expr/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/cel.dev/expr/GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/cel.dev/expr/GOVERNANCE.md -------------------------------------------------------------------------------- /vendor/cel.dev/expr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/cel.dev/expr/LICENSE -------------------------------------------------------------------------------- /vendor/cel.dev/expr/MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/cel.dev/expr/MAINTAINERS.md -------------------------------------------------------------------------------- /vendor/cel.dev/expr/MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/cel.dev/expr/MODULE.bazel -------------------------------------------------------------------------------- /vendor/cel.dev/expr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/cel.dev/expr/README.md -------------------------------------------------------------------------------- /vendor/cel.dev/expr/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/cel.dev/expr/WORKSPACE -------------------------------------------------------------------------------- /vendor/cel.dev/expr/WORKSPACE.bzlmod: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/cel.dev/expr/checked.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/cel.dev/expr/checked.pb.go -------------------------------------------------------------------------------- /vendor/cel.dev/expr/cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/cel.dev/expr/cloudbuild.yaml -------------------------------------------------------------------------------- /vendor/cel.dev/expr/eval.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/cel.dev/expr/eval.pb.go -------------------------------------------------------------------------------- /vendor/cel.dev/expr/explain.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/cel.dev/expr/explain.pb.go -------------------------------------------------------------------------------- /vendor/cel.dev/expr/regen_go_proto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/cel.dev/expr/regen_go_proto.sh -------------------------------------------------------------------------------- /vendor/cel.dev/expr/syntax.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/cel.dev/expr/syntax.pb.go -------------------------------------------------------------------------------- /vendor/cel.dev/expr/value.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/cel.dev/expr/value.pb.go -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/cloud.google.com/go/LICENSE -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/auth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/cloud.google.com/go/auth/LICENSE -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/cloud.google.com/go/auth/auth.go -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/iam/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/cloud.google.com/go/iam/LICENSE -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/iam/iam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/cloud.google.com/go/iam/iam.go -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/dario.cat/mergo/.deepsource.toml -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/dario.cat/mergo/.gitignore -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/dario.cat/mergo/.travis.yml -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/dario.cat/mergo/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/dario.cat/mergo/LICENSE -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/dario.cat/mergo/README.md -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/dario.cat/mergo/SECURITY.md -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/dario.cat/mergo/doc.go -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/dario.cat/mergo/map.go -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/dario.cat/mergo/merge.go -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/mergo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/dario.cat/mergo/mergo.go -------------------------------------------------------------------------------- /vendor/github.com/AlecAivazis/survey/v2/filter.go: -------------------------------------------------------------------------------- 1 | package survey 2 | -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/semver/v3/.gitignore: -------------------------------------------------------------------------------- 1 | _fuzz/ -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/sprig/v3/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | /.glide 3 | -------------------------------------------------------------------------------- /vendor/github.com/Songmu/retry/.gitignore: -------------------------------------------------------------------------------- 1 | .* 2 | !.gitignore 3 | !.travis.yml 4 | dist/ 5 | -------------------------------------------------------------------------------- /vendor/github.com/Songmu/retry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/Songmu/retry/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/Songmu/retry/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/Songmu/retry/Makefile -------------------------------------------------------------------------------- /vendor/github.com/Songmu/retry/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/Songmu/retry/retry.go -------------------------------------------------------------------------------- /vendor/github.com/agext/levenshtein/DCO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/agext/levenshtein/DCO -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go/aws/corehandlers/awsinternal.go: -------------------------------------------------------------------------------- 1 | // DO NOT EDIT 2 | package corehandlers 3 | 4 | const isAwsInternal = "" -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/beorn7/perks/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/blizzy78/varnamelen/.gitignore: -------------------------------------------------------------------------------- 1 | /cmd/__debug_bin 2 | -------------------------------------------------------------------------------- /vendor/github.com/breml/bidichk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/breml/bidichk/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/ccojocar/zxcvbn-go/.gitignore: -------------------------------------------------------------------------------- 1 | zxcvbn 2 | debug.test 3 | 4 | # SBOMs generated during CI 5 | /bom.json 6 | -------------------------------------------------------------------------------- /vendor/github.com/census-instrumentation/opencensus-proto/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. -------------------------------------------------------------------------------- /vendor/github.com/charithe/durationcheck/.gitignore: -------------------------------------------------------------------------------- 1 | /durationcheck 2 | -------------------------------------------------------------------------------- /vendor/github.com/chavacava/garif/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | *.out 3 | .devcontainer/ -------------------------------------------------------------------------------- /vendor/github.com/chavacava/garif/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/chavacava/garif/io.go -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/* 2 | -------------------------------------------------------------------------------- /vendor/github.com/ckaznocha/intrange/go.work: -------------------------------------------------------------------------------- 1 | go 1.22 2 | 3 | use ( 4 | . 5 | ./testdata 6 | ) 7 | -------------------------------------------------------------------------------- /vendor/github.com/cncf/xds/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/cncf/xds/go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/curioswitch/go-reassign/.gitattributes: -------------------------------------------------------------------------------- 1 | *.go text eol=lf 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/curioswitch/go-reassign/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .VSCode 3 | .envrc 4 | 5 | build 6 | dist 7 | -------------------------------------------------------------------------------- /vendor/github.com/daixiang0/gci/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/daixiang0/gci/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/denis-tingaikin/go-header/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ -------------------------------------------------------------------------------- /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/ettle/strcase/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/ettle/strcase/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/ettle/strcase/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/ettle/strcase/doc.go -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/fatih/color/README.md -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/fatih/color/color.go -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/fatih/color/doc.go -------------------------------------------------------------------------------- /vendor/github.com/felixge/httpsnoop/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/.gitattributes: -------------------------------------------------------------------------------- 1 | go.sum linguist-generated 2 | -------------------------------------------------------------------------------- /vendor/github.com/fzipp/gocyclo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/fzipp/gocyclo/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/fzipp/gocyclo/recv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/fzipp/gocyclo/recv.go -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/ghodss/yaml/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/ghodss/yaml/README.md -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/ghodss/yaml/fields.go -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/ghodss/yaml/yaml.go -------------------------------------------------------------------------------- /vendor/github.com/go-bindata/go-bindata/v3/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | make -C testdata 3 | -------------------------------------------------------------------------------- /vendor/github.com/go-bindata/go-bindata/v3/go-bindata/.gitignore: -------------------------------------------------------------------------------- 1 | go-bindata 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/go-logr/logr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/logr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/go-logr/logr/logr.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/slogr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/go-logr/logr/slogr.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/go-logr/stdr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/stdr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/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/appvia/terranetes-controller/HEAD/vendor/github.com/go-logr/zapr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/zapr/zapr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/go-logr/zapr/zapr.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/analysis/.gitattributes: -------------------------------------------------------------------------------- 1 | *.go text eol=lf 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/errors/.gitattributes: -------------------------------------------------------------------------------- 1 | *.go text eol=lf -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/errors/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /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/runtime/.gitattributes: -------------------------------------------------------------------------------- 1 | *.go text eol=lf 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/spec/.gitignore: -------------------------------------------------------------------------------- 1 | *.out 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/strfmt/.gitattributes: -------------------------------------------------------------------------------- 1 | *.go text eol=lf 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/strfmt/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | vendor 3 | Godeps 4 | .idea 5 | *.out 6 | -------------------------------------------------------------------------------- /vendor/github.com/go-swagger/go-swagger/generator/.gitignore: -------------------------------------------------------------------------------- 1 | generated/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-task/slim-sprig/v3/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-task/slim-sprig/v3/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | /.glide 3 | -------------------------------------------------------------------------------- /vendor/github.com/go-toolsmith/astequal/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | pkg 3 | src/main 4 | tmp 5 | 6 | -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/gobwas/glob/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/bench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/gobwas/glob/bench.sh -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/glob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/gobwas/glob/glob.go -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/gobwas/glob/readme.md -------------------------------------------------------------------------------- /vendor/github.com/goccy/go-yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/goccy/go-yaml/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gofrs/flock/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/gofrs/flock/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gofrs/flock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/gofrs/flock/Makefile -------------------------------------------------------------------------------- /vendor/github.com/gofrs/flock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/gofrs/flock/README.md -------------------------------------------------------------------------------- /vendor/github.com/gofrs/flock/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/gofrs/flock/build.sh -------------------------------------------------------------------------------- /vendor/github.com/golang/mock/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/golang/mock/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/golang/mock/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/golang/mock/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golangci/revgrep/.gitignore: -------------------------------------------------------------------------------- 1 | testdata/git 2 | -------------------------------------------------------------------------------- /vendor/github.com/google/shlex/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/google/shlex/README -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/google/uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/google/uuid/dce.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/google/uuid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/google/uuid/hash.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/google/uuid/node.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/null.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/google/uuid/null.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/google/uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/google/uuid/time.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/google/uuid/util.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/google/uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gax-go/v2/.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "v2": "2.14.1" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/gorilla/mux/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/gorilla/mux/doc.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/gorilla/mux/mux.go -------------------------------------------------------------------------------- /vendor/github.com/gostaticanalysis/comment/version.txt: -------------------------------------------------------------------------------- 1 | v1.5.0 2 | -------------------------------------------------------------------------------- /vendor/github.com/gostaticanalysis/forcetypeassert/version.txt: -------------------------------------------------------------------------------- 1 | v0.2.0 2 | -------------------------------------------------------------------------------- /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/julz/importas/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | importas 3 | -------------------------------------------------------------------------------- /vendor/github.com/karamaru-alpha/copyloopvar/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | copyloopvar 3 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/gen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd s2/cmd/_s2sx/ || exit 1 4 | go generate . 5 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/huff0/.gitignore: -------------------------------------------------------------------------------- 1 | /huff0-fuzz.zip 2 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/s2sx.mod: -------------------------------------------------------------------------------- 1 | module github.com/klauspost/compress 2 | 3 | go 1.22 4 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/s2sx.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/kr/pretty/.gitignore: -------------------------------------------------------------------------------- 1 | [568].out 2 | _go* 3 | _test* 4 | _obj 5 | /.idea 6 | -------------------------------------------------------------------------------- /vendor/github.com/kr/pretty/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/kr/pretty/License -------------------------------------------------------------------------------- /vendor/github.com/kr/pretty/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/kr/pretty/Readme -------------------------------------------------------------------------------- /vendor/github.com/kr/pretty/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/kr/pretty/diff.go -------------------------------------------------------------------------------- /vendor/github.com/kr/pretty/pretty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/kr/pretty/pretty.go -------------------------------------------------------------------------------- /vendor/github.com/kr/pretty/zero.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/kr/pretty/zero.go -------------------------------------------------------------------------------- /vendor/github.com/kr/text/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/kr/text/License -------------------------------------------------------------------------------- /vendor/github.com/kr/text/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/kr/text/Readme -------------------------------------------------------------------------------- /vendor/github.com/kr/text/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/kr/text/doc.go -------------------------------------------------------------------------------- /vendor/github.com/kr/text/indent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/kr/text/indent.go -------------------------------------------------------------------------------- /vendor/github.com/kr/text/wrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/kr/text/wrap.go -------------------------------------------------------------------------------- /vendor/github.com/lasiar/canonicalheader/.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /vendor/github.com/ldez/exptostd/.gitignore: -------------------------------------------------------------------------------- 1 | /exptostd 2 | .idea 3 | -------------------------------------------------------------------------------- /vendor/github.com/ldez/gomoddirectives/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | /gomoddirectives 3 | -------------------------------------------------------------------------------- /vendor/github.com/ldez/tagliatelle/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | /tagliatelle 3 | notes.md 4 | -------------------------------------------------------------------------------- /vendor/github.com/ldez/usetesting/.gitignore: -------------------------------------------------------------------------------- 1 | /usetesting 2 | .idea 3 | -------------------------------------------------------------------------------- /vendor/github.com/manifoldco/promptui/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | all-cover.txt 3 | bin/ 4 | -------------------------------------------------------------------------------- /vendor/github.com/mgutz/ansi/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | -------------------------------------------------------------------------------- /vendor/github.com/mgutz/ansi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/mgutz/ansi/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mgutz/ansi/ansi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/mgutz/ansi/ansi.go -------------------------------------------------------------------------------- /vendor/github.com/mgutz/ansi/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/mgutz/ansi/doc.go -------------------------------------------------------------------------------- /vendor/github.com/mgutz/ansi/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/mgutz/ansi/print.go -------------------------------------------------------------------------------- /vendor/github.com/mikefarah/yq/v3/.dockerignore: -------------------------------------------------------------------------------- 1 | bin 2 | -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/gox/.gitattributes: -------------------------------------------------------------------------------- 1 | * text 2 | -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/gox/.gitignore: -------------------------------------------------------------------------------- 1 | gox 2 | -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/gox/go.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/mitchellh/gox/go.go -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/reflectwalk/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/term/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/moby/term/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/moby/term/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/moby/term/README.md -------------------------------------------------------------------------------- /vendor/github.com/moby/term/ascii.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/moby/term/ascii.go -------------------------------------------------------------------------------- /vendor/github.com/moby/term/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/moby/term/doc.go -------------------------------------------------------------------------------- /vendor/github.com/moby/term/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/moby/term/proxy.go -------------------------------------------------------------------------------- /vendor/github.com/moby/term/term.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/moby/term/term.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/.gitignore: -------------------------------------------------------------------------------- 1 | /coverage.txt 2 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /coverage.txt 3 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/reflect2_amd64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_386.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_amd64p32.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mips64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mipsx.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_ppc64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_s390x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/moricho/tparallel/.gitignore: -------------------------------------------------------------------------------- 1 | /tparallel 2 | .envrc 3 | /dist 4 | -------------------------------------------------------------------------------- /vendor/github.com/nunnatsa/ginkgolinter/.gitignore: -------------------------------------------------------------------------------- 1 | ginkgolinter 2 | bin/ 3 | e2e -------------------------------------------------------------------------------- /vendor/github.com/oklog/ulid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/oklog/ulid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/oklog/ulid/ulid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/oklog/ulid/ulid.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/v2/types/version.go: -------------------------------------------------------------------------------- 1 | package types 2 | 3 | const VERSION = "2.23.4" 4 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.test 3 | . 4 | .idea 5 | gomega.iml 6 | TODO 7 | .vscode -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/onsi/gomega/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/v2/internal/tracker/tracker.go: -------------------------------------------------------------------------------- 1 | package tracker 2 | -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/pkg/errors/Makefile -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/go113.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/pkg/errors/go113.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/pkg/errors/stack.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_golang/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | command-line-arguments.test 2 | -------------------------------------------------------------------------------- /vendor/github.com/quasilyte/gogrep/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .vscode 3 | coverage.txt 4 | bin 5 | -------------------------------------------------------------------------------- /vendor/github.com/raeperd/recvcheck/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | coverage.txt 3 | /recvcheck 4 | -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/rivo/uniseg/doc.go -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/line.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/rivo/uniseg/line.go -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/step.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/rivo/uniseg/step.go -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/word.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/rivo/uniseg/word.go -------------------------------------------------------------------------------- /vendor/github.com/ryancurrah/gomodguard/.dockerignore: -------------------------------------------------------------------------------- 1 | dist/ -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | vendor 3 | 4 | .idea/ 5 | -------------------------------------------------------------------------------- /vendor/github.com/sonatard/noctx/.gitignore: -------------------------------------------------------------------------------- 1 | coverage.out 2 | /noctx 3 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/iofs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/spf13/afero/iofs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/os.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/spf13/afero/os.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/spf13/afero/path.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/spf13/afero/util.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/spf13/cast/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/spf13/cast/Makefile -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/cast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/spf13/cast/cast.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/caste.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/spf13/cast/caste.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/spf13/cobra/args.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/spf13/viper/.envrc -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/.yamlignore: -------------------------------------------------------------------------------- 1 | # TODO: FIXME 2 | /.github/ 3 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/spf13/viper/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/spf13/viper/file.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/spf13/viper/util.go -------------------------------------------------------------------------------- /vendor/github.com/subosito/gotenv/.env: -------------------------------------------------------------------------------- 1 | HELLO=world 2 | -------------------------------------------------------------------------------- /vendor/github.com/subosito/gotenv/.env.invalid: -------------------------------------------------------------------------------- 1 | lol$wut 2 | -------------------------------------------------------------------------------- /vendor/github.com/subosito/gotenv/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | *.out 3 | annotate.json 4 | profile.cov 5 | -------------------------------------------------------------------------------- /vendor/github.com/tcnksm/ghr/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/tcnksm/ghr/CREDITS -------------------------------------------------------------------------------- /vendor/github.com/tcnksm/ghr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/tcnksm/ghr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/tcnksm/ghr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/tcnksm/ghr/Makefile -------------------------------------------------------------------------------- /vendor/github.com/tcnksm/ghr/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/tcnksm/ghr/cli.go -------------------------------------------------------------------------------- /vendor/github.com/tcnksm/ghr/ghr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/tcnksm/ghr/ghr.go -------------------------------------------------------------------------------- /vendor/github.com/tcnksm/ghr/local.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/tcnksm/ghr/local.go -------------------------------------------------------------------------------- /vendor/github.com/tcnksm/ghr/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/tcnksm/ghr/main.go -------------------------------------------------------------------------------- /vendor/github.com/tcnksm/go-gitconfig/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | -------------------------------------------------------------------------------- /vendor/github.com/ulikunitz/xz/crc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/ulikunitz/xz/crc.go -------------------------------------------------------------------------------- /vendor/github.com/ulikunitz/xz/fox.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/github.com/ulikunitz/xz/fox.xz -------------------------------------------------------------------------------- /vendor/github.com/ultraware/funlen/.golangci.yml: -------------------------------------------------------------------------------- 1 | run: 2 | timeout: 5m 3 | -------------------------------------------------------------------------------- /vendor/github.com/xlab/treeprint/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/** 2 | .idea 3 | **/**.iml 4 | -------------------------------------------------------------------------------- /vendor/github.com/yagipy/maintidx/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | bin 3 | -------------------------------------------------------------------------------- /vendor/go-simpler.org/musttag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/go-simpler.org/musttag/LICENSE -------------------------------------------------------------------------------- /vendor/go.opencensus.io/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/go.opencensus.io/.gitignore -------------------------------------------------------------------------------- /vendor/go.opencensus.io/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/go.opencensus.io/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/go.opencensus.io/LICENSE -------------------------------------------------------------------------------- /vendor/go.opencensus.io/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/go.opencensus.io/Makefile -------------------------------------------------------------------------------- /vendor/go.opencensus.io/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/go.opencensus.io/README.md -------------------------------------------------------------------------------- /vendor/go.opencensus.io/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/go.opencensus.io/appveyor.yml -------------------------------------------------------------------------------- /vendor/go.opencensus.io/opencensus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/go.opencensus.io/opencensus.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/go.opencensus.io/trace/doc.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/requirements.txt: -------------------------------------------------------------------------------- 1 | codespell==2.3.0 2 | -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/go.uber.org/multierr/Makefile -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/go.uber.org/multierr/README.md -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/go.uber.org/multierr/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/go.uber.org/zap/.codecov.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/go.uber.org/zap/.gitignore -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/go.uber.org/zap/.golangci.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.readme.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/go.uber.org/zap/.readme.tmpl -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/go.uber.org/zap/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/go.uber.org/zap/FAQ.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/go.uber.org/zap/LICENSE -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/go.uber.org/zap/Makefile -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/go.uber.org/zap/README.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/go.uber.org/zap/array.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/buffer/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/go.uber.org/zap/buffer/pool.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/go.uber.org/zap/config.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/go.uber.org/zap/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/go.uber.org/zap/encoder.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/go.uber.org/zap/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/go.uber.org/zap/field.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/go.uber.org/zap/flag.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/go.uber.org/zap/glide.yaml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/go.uber.org/zap/global.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/go.uber.org/zap/level.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/go.uber.org/zap/logger.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/go.uber.org/zap/options.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/sink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/go.uber.org/zap/sink.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/sugar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/go.uber.org/zap/sugar.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/go.uber.org/zap/time.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/go.uber.org/zap/writer.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/go.uber.org/zap/zapcore/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/tee.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/go.uber.org/zap/zapcore/tee.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/exp/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/exp/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/slices/cmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/exp/slices/cmp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/slog/attr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/exp/slog/attr.go -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/slog/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/exp/slog/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/slog/level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/exp/slog/level.go -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/slog/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/exp/slog/value.go -------------------------------------------------------------------------------- /vendor/golang.org/x/lint/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/lint/.travis.yml -------------------------------------------------------------------------------- /vendor/golang.org/x/lint/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/lint/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/lint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/lint/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/lint/lint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/lint/lint.go -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/mod/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/mod/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/net/html/const.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/net/html/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/net/html/iter.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/net/html/node.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/net/html/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/net/html/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/go118.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/net/idna/go118.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/oauth2/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/oauth2/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/jws/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/oauth2/jws/jws.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/jwt/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/oauth2/jwt/jwt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/oauth2/oauth2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/pkce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/oauth2/pkce.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/oauth2/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/sync/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/sync/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/sys/cpu/cpu.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/sys/cpu/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/sys/plan9/asm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/sys/plan9/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/sys/plan9/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/auxv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/sys/unix/auxv.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fdset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/sys/unix/fdset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/term/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/term/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/term/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/term/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/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/appvia/terranetes-controller/HEAD/vendor/golang.org/x/term/term.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/term/term_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/terminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/term/terminal.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/icu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/text/cases/icu.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/text/cases/map.go -------------------------------------------------------------------------------- /vendor/golang.org/x/time/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/time/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/time/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/time/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/rate/rate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/time/rate/rate.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/tools/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/tools/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/ssa/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/tools/go/ssa/TODO -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/xerrors/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/xerrors/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/xerrors/README -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/xerrors/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/xerrors/errors.go -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/fmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/xerrors/fmt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/xerrors/format.go -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/xerrors/frame.go -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/wrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/golang.org/x/xerrors/wrap.go -------------------------------------------------------------------------------- /vendor/google.golang.org/api/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/google.golang.org/api/AUTHORS -------------------------------------------------------------------------------- /vendor/google.golang.org/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/google.golang.org/api/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/google.golang.org/grpc/call.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/google.golang.org/grpc/doc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/inf.v0/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/dec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/inf.v0/dec.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/rounder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/inf.v0/rounder.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/ini.v1/.editorconfig -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/ini.v1/.gitignore -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/ini.v1/.golangci.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/ini.v1/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/ini.v1/Makefile -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/ini.v1/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/ini.v1/codecov.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/data_source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/ini.v1/data_source.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/deprecated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/ini.v1/deprecated.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/ini.v1/error.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/ini.v1/file.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/ini.v1/helper.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/ini.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/ini.v1/ini.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/ini.v1/key.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/ini.v1/parser.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/section.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/ini.v1/section.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/ini.v1/struct.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/yaml.v3/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/yaml.v3/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/yaml.v3/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/yaml.v3/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/yaml.v3/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/yaml.v3/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/yaml.v3/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/yaml.v3/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/yaml.v3/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/yaml.v3/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/yaml.v3/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/yaml.v3/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/yaml.v3/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/yaml.v3/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/gopkg.in/yaml.v3/yamlh.go -------------------------------------------------------------------------------- /vendor/honnef.co/go/tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/honnef.co/go/tools/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/api/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/api/admission/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/api/admission/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/api/apps/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/api/apps/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/api/apps/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/api/apps/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/api/apps/v1beta2/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/api/batch/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/api/batch/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/api/core/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/api/core/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/api/core/v1/resource.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/taint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/api/core/v1/taint.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/api/core/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/discovery/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/api/discovery/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/api/events/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/api/events/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/api/node/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/api/node/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/api/node/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/api/node/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/api/policy/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/api/policy/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/api/rbac/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/api/rbac/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/api/rbac/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/api/rbac/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/api/storage/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/api/storage/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/apimachinery/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/cli-runtime/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/cli-runtime/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/client-go/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/openapi/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - apelisse 5 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/client-go/rest/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/client-go/rest/exec.go -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/code-generator/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/code-generator/OWNERS -------------------------------------------------------------------------------- /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/appvia/terranetes-controller/HEAD/vendor/k8s.io/code-generator/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/code-generator/tools.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/gengo/v2/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/gengo/v2/Makefile -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/gengo/v2/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/comments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/gengo/v2/comments.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/execute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/gengo/v2/execute.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/namer/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/gengo/v2/namer/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/namer/namer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/gengo/v2/namer/namer.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/namer/order.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/gengo/v2/namer/order.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/parser/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/gengo/v2/parser/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/types/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/gengo/v2/types/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/gengo/v2/types/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/klog/v2/.gitignore -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/klog/v2/.golangci.yaml -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/klog/v2/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/klog/v2/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/klog/v2/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/klog/v2/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/klog/v2/RELEASE.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/klog/v2/SECURITY.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/contextual.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/klog/v2/contextual.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/exit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/klog/v2/exit.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/klog/v2/format.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/imports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/klog/v2/imports.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/klog/v2/klog.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/klog/v2/klog_file.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klogr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/klog/v2/klogr.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klogr_slog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/klog/v2/klogr_slog.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/safeptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/klog/v2/safeptr.go -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/kube-openapi/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/pkg/util/proto/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - apelisse 3 | -------------------------------------------------------------------------------- /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/appvia/terranetes-controller/HEAD/vendor/k8s.io/utils/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/utils/clock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/utils/clock/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/clock/clock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/utils/clock/clock.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/lru/lru.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/utils/lru/lru.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/ipfamily.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/utils/net/ipfamily.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/utils/net/ipnet.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/utils/net/net.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/utils/net/parse.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/port.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/utils/net/port.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/pointer/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/utils/pointer/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/utils/pointer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/utils/pointer/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/ptr/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/utils/ptr/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/utils/ptr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/utils/ptr/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/ptr/ptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/utils/ptr/ptr.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/trace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/utils/trace/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/k8s.io/utils/trace/trace.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/modules.txt -------------------------------------------------------------------------------- /vendor/mvdan.cc/editorconfig/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/mvdan.cc/editorconfig/LICENSE -------------------------------------------------------------------------------- /vendor/mvdan.cc/gofumpt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/mvdan.cc/gofumpt/LICENSE -------------------------------------------------------------------------------- /vendor/mvdan.cc/sh/v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/mvdan.cc/sh/v3/LICENSE -------------------------------------------------------------------------------- /vendor/mvdan.cc/sh/v3/syntax/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/mvdan.cc/sh/v3/syntax/doc.go -------------------------------------------------------------------------------- /vendor/mvdan.cc/sh/v3/syntax/lexer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/mvdan.cc/sh/v3/syntax/lexer.go -------------------------------------------------------------------------------- /vendor/mvdan.cc/sh/v3/syntax/nodes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/mvdan.cc/sh/v3/syntax/nodes.go -------------------------------------------------------------------------------- /vendor/mvdan.cc/sh/v3/syntax/quote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/mvdan.cc/sh/v3/syntax/quote.go -------------------------------------------------------------------------------- /vendor/mvdan.cc/sh/v3/syntax/walk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/mvdan.cc/sh/v3/syntax/walk.go -------------------------------------------------------------------------------- /vendor/mvdan.cc/unparam/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/mvdan.cc/unparam/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/sigs.k8s.io/json/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/sigs.k8s.io/json/Makefile -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/sigs.k8s.io/json/OWNERS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/sigs.k8s.io/json/README.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/sigs.k8s.io/json/SECURITY.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/sigs.k8s.io/json/doc.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/sigs.k8s.io/json/json.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/randfill/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/sigs.k8s.io/randfill/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/randfill/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/sigs.k8s.io/randfill/NOTICE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/randfill/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/sigs.k8s.io/randfill/OWNERS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/randfill/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/sigs.k8s.io/randfill/README.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/sigs.k8s.io/yaml/.gitignore -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/sigs.k8s.io/yaml/.travis.yml -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/sigs.k8s.io/yaml/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/sigs.k8s.io/yaml/OWNERS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/sigs.k8s.io/yaml/README.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/sigs.k8s.io/yaml/RELEASE.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/sigs.k8s.io/yaml/fields.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/sigs.k8s.io/yaml/yaml.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/yaml_go110.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appvia/terranetes-controller/HEAD/vendor/sigs.k8s.io/yaml/yaml_go110.go --------------------------------------------------------------------------------