├── .errcheck.txt ├── .gitattributes ├── .github ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── codeql.yml │ ├── go-coverage.yml │ ├── golangci-lint.yaml │ └── presubmit-ci.yaml ├── .gitignore ├── .golangci.yml ├── .yamllint ├── LICENSE ├── Makefile ├── OWNERS ├── cmd ├── api │ ├── README.md │ ├── main.go │ └── main_test.go ├── cli-docs │ └── main.go ├── retention-policy-agent │ └── main.go ├── tkn-results │ ├── README.md │ └── main.go └── watcher │ └── main.go ├── config ├── README.md ├── base │ ├── 100-api-serviceaccount.yaml │ ├── 100-watcher-serviceaccount.yaml │ ├── api.yaml │ ├── config-info.yaml │ ├── config-leader-election.yaml │ ├── config-logging.yaml │ ├── config-observability.yaml │ ├── config-results-retention-policy.yaml │ ├── default-clusterroles.yaml │ ├── env │ │ └── config │ ├── kustomization.yaml │ ├── retention-policy-agent.yaml │ └── watcher.yaml ├── components │ ├── local-db │ │ ├── 201-sql-deployment.yaml │ │ └── kustomization.yaml │ ├── logs-file │ │ ├── api.yaml │ │ ├── kustomization.yaml │ │ ├── pvc.yaml │ │ └── watcher.yaml │ └── metadata │ │ └── kustomization.yaml └── overlays │ ├── base-only │ └── kustomization.yaml │ ├── default-local-db │ └── kustomization.yaml │ └── logs-local-db │ └── kustomization.yaml ├── docs ├── DEVELOPMENT.md ├── README.md ├── api │ ├── README.md │ ├── openapi.yaml │ ├── rest-api-spec.md │ └── summary-api.md ├── cli │ ├── tkn-results.md │ ├── tkn-results_config.md │ ├── tkn-results_config_reset.md │ ├── tkn-results_config_set.md │ ├── tkn-results_config_view.md │ ├── tkn-results_list.md │ ├── tkn-results_logs.md │ ├── tkn-results_logs_get.md │ ├── tkn-results_logs_list.md │ ├── tkn-results_pipelinerun.md │ ├── tkn-results_pipelinerun_describe.md │ ├── tkn-results_pipelinerun_list.md │ ├── tkn-results_pipelinerun_logs.md │ ├── tkn-results_records.md │ ├── tkn-results_records_get.md │ ├── tkn-results_records_list.md │ ├── tkn-results_result.md │ ├── tkn-results_result_describe.md │ ├── tkn-results_result_list.md │ ├── tkn-results_taskrun.md │ ├── tkn-results_taskrun_describe.md │ ├── tkn-results_taskrun_list.md │ └── tkn-results_taskrun_logs.md ├── database-ssl-mode-custom-CA-cert.md ├── external-database.md ├── install.md ├── logging-support.md ├── man │ └── man1 │ │ ├── tkn-results-config-reset.1 │ │ ├── tkn-results-config-set.1 │ │ ├── tkn-results-config-view.1 │ │ ├── tkn-results-config.1 │ │ ├── tkn-results-logs-get.1 │ │ ├── tkn-results-logs-list.1 │ │ ├── tkn-results-logs.1 │ │ ├── tkn-results-pipelinerun-describe.1 │ │ ├── tkn-results-pipelinerun-list.1 │ │ ├── tkn-results-pipelinerun-logs.1 │ │ ├── tkn-results-pipelinerun.1 │ │ ├── tkn-results-records-get.1 │ │ ├── tkn-results-records-list.1 │ │ ├── tkn-results-records.1 │ │ ├── tkn-results-result-describe.1 │ │ ├── tkn-results-result-list.1 │ │ ├── tkn-results-result.1 │ │ ├── tkn-results-taskrun-describe.1 │ │ ├── tkn-results-taskrun-list.1 │ │ ├── tkn-results-taskrun-logs.1 │ │ ├── tkn-results-taskrun.1 │ │ └── tkn-results.1 ├── metrics.md ├── retention-policy-agent │ └── README.md ├── roadmap.md └── watcher │ └── README.md ├── go.mod ├── go.sum ├── internal └── fieldmask │ ├── fieldmask.go │ ├── fieldmask_test.go │ └── test │ ├── generate.go │ ├── test.pb.go │ └── test.proto ├── pkg ├── api │ └── server │ │ ├── cel │ │ ├── cel.go │ │ ├── cel_test.go │ │ └── env.go │ │ ├── cel2sql │ │ ├── concat.go │ │ ├── convert.go │ │ ├── convert_test.go │ │ ├── functions.go │ │ ├── index.go │ │ ├── interpreter.go │ │ ├── operators.go │ │ ├── select.go │ │ └── type_coercion.go │ │ ├── config │ │ └── config.go │ │ ├── db │ │ ├── errors │ │ │ ├── errors.go │ │ │ ├── postgres │ │ │ │ ├── postgres.go │ │ │ │ └── postgres_test.go │ │ │ └── sqlite │ │ │ │ └── sqlite.go │ │ ├── log_level.go │ │ ├── model.go │ │ ├── model_test.go │ │ └── pagination │ │ │ ├── pagination.go │ │ │ ├── pagination_test.go │ │ │ └── proto │ │ │ ├── generate.go │ │ │ ├── internal_go_proto │ │ │ └── pagination.pb.go │ │ │ └── pagination.proto │ │ ├── features │ │ ├── features.go │ │ └── features_test.go │ │ ├── logger │ │ └── logger.go │ │ ├── test │ │ └── db.go │ │ └── v1alpha2 │ │ ├── auth │ │ ├── auth.go │ │ ├── impersonation │ │ │ ├── impersonation.go │ │ │ └── impersonation_test.go │ │ ├── nop.go │ │ ├── rbac.go │ │ └── rbac_test.go │ │ ├── handlers.go │ │ ├── lister │ │ ├── aggregator.go │ │ ├── aggregator_test.go │ │ ├── filter.go │ │ ├── filter_test.go │ │ ├── limit.go │ │ ├── limit_test.go │ │ ├── lister.go │ │ ├── lister_test.go │ │ ├── offset.go │ │ ├── offset_test.go │ │ ├── order.go │ │ ├── order_test.go │ │ ├── page_token.go │ │ ├── page_token_test.go │ │ └── proto │ │ │ ├── generate.go │ │ │ ├── page_token.proto │ │ │ └── pagetoken_go_proto │ │ │ └── page_token.pb.go │ │ ├── log │ │ ├── file.go │ │ ├── file_test.go │ │ ├── gcs.go │ │ ├── gcs_test.go │ │ ├── log.go │ │ ├── log_test.go │ │ ├── s3.go │ │ ├── s3_test.go │ │ └── testdata │ │ │ ├── TestGCSDelete.replay │ │ │ ├── TestGCSReadFrom.replay │ │ │ └── TestGCSWriteTo.replay │ │ ├── logs.go │ │ ├── logs_test.go │ │ ├── ordering.go │ │ ├── ordering_test.go │ │ ├── pagination.go │ │ ├── pagination_test.go │ │ ├── plugin │ │ ├── export_test.go │ │ ├── plugin_logs.go │ │ ├── plugin_logs_test.go │ │ └── server.go │ │ ├── record │ │ ├── record.go │ │ └── record_test.go │ │ ├── records.go │ │ ├── records_test.go │ │ ├── result │ │ ├── result.go │ │ └── result_test.go │ │ ├── results.go │ │ ├── results_test.go │ │ ├── server.go │ │ ├── server_test.go │ │ ├── summary.go │ │ └── test │ │ └── token ├── apis │ ├── config │ │ ├── metrics.go │ │ ├── retention.go │ │ ├── retention_test.go │ │ ├── store.go │ │ ├── store_test.go │ │ └── testdata │ │ │ └── config-observability.yaml │ └── v1alpha3 │ │ └── types.go ├── cli │ ├── client │ │ ├── base.go │ │ ├── base_test.go │ │ ├── logs │ │ │ └── logs.go │ │ ├── records │ │ │ ├── records.go │ │ │ └── records_test.go │ │ └── response.go │ ├── cmd │ │ ├── config │ │ │ ├── config.go │ │ │ ├── config_test.go │ │ │ ├── reset.go │ │ │ ├── reset_test.go │ │ │ ├── set.go │ │ │ ├── set_test.go │ │ │ ├── view.go │ │ │ └── view_test.go │ │ ├── help.txt │ │ ├── pipelinerun │ │ │ ├── describe.go │ │ │ ├── describe_test.go │ │ │ ├── list.go │ │ │ ├── list_test.go │ │ │ ├── logs.go │ │ │ ├── logs_test.go │ │ │ ├── pipelinerun.go │ │ │ └── pipelinerun_test.go │ │ ├── root.go │ │ ├── root_test.go │ │ └── taskrun │ │ │ ├── describe.go │ │ │ ├── describe_test.go │ │ │ ├── list.go │ │ │ ├── list_test.go │ │ │ ├── logs.go │ │ │ ├── logs_test.go │ │ │ ├── taskrun.go │ │ │ └── taskrun_test.go │ ├── common │ │ ├── constants.go │ │ ├── format.go │ │ ├── interface.go │ │ ├── labels.go │ │ ├── params.go │ │ ├── prerun │ │ │ └── prerun.go │ │ └── utils.go │ ├── config │ │ ├── config.go │ │ ├── config_test.go │ │ ├── extension.go │ │ ├── extension_test.go │ │ ├── host.go │ │ ├── host_test.go │ │ ├── platform.go │ │ └── platform_test.go │ ├── dev │ │ ├── client │ │ │ ├── client.go │ │ │ └── client_test.go │ │ ├── cmd │ │ │ ├── logs │ │ │ │ ├── get.go │ │ │ │ ├── list.go │ │ │ │ └── logs.go │ │ │ ├── records │ │ │ │ ├── get.go │ │ │ │ ├── list.go │ │ │ │ └── records.go │ │ │ └── result │ │ │ │ ├── describe.go │ │ │ │ ├── describe_test.go │ │ │ │ ├── list.go │ │ │ │ └── result.go │ │ ├── config │ │ │ ├── config.go │ │ │ ├── config_test.go │ │ │ └── testdata │ │ │ │ ├── config.yaml │ │ │ │ └── empty.yaml │ │ ├── flags │ │ │ └── flags.go │ │ ├── format │ │ │ └── format.go │ │ └── portforward │ │ │ └── portforward.go │ ├── flags │ │ ├── flags.go │ │ └── flags_test.go │ ├── options │ │ ├── describe.go │ │ ├── list.go │ │ └── logs.go │ └── testutils │ │ ├── cobra.go │ │ ├── kubeconfig.go │ │ ├── mock_rest_client.go │ │ ├── params.go │ │ └── utils.go ├── converter │ └── convert.go ├── internal │ ├── jsonutil │ │ └── jsonutil.go │ ├── protoutil │ │ ├── protoutil.go │ │ └── protoutil_test.go │ └── test │ │ └── clients.go ├── logs │ ├── writer.go │ └── writer_test.go ├── metrics │ ├── metrics.go │ └── metrics_test.go ├── pipelinerunmetrics │ ├── metrics.go │ └── metrics_test.go ├── retention │ ├── config.go │ ├── injection.go │ ├── job.go │ └── job_test.go ├── taskrunmetrics │ ├── metrics.go │ └── metrics_test.go ├── test │ ├── expect.go │ └── fake │ │ └── results.go └── watcher │ ├── convert │ ├── convert.go │ └── convert_test.go │ ├── grpc │ ├── creds.go │ └── doc.go │ ├── logs │ └── client.go │ ├── reconciler │ ├── annotation │ │ ├── annotation.go │ │ └── annotation_test.go │ ├── client │ │ └── client.go │ ├── config.go │ ├── config_test.go │ ├── dynamic │ │ ├── dynamic.go │ │ └── dynamic_test.go │ ├── leaderelection │ │ └── leader_election.go │ ├── pipelinerun │ │ ├── controller.go │ │ ├── reconciler.go │ │ └── reconciler_test.go │ ├── reconciler_test.go │ └── taskrun │ │ ├── controller.go │ │ ├── reconciler.go │ │ └── reconciler_test.go │ └── results │ ├── eventlist.go │ ├── logs.go │ ├── logs_test.go │ ├── results.go │ └── results_test.go ├── proto ├── README.md ├── pipeline │ └── v1 │ │ ├── common.proto │ │ ├── generate.go │ │ ├── pipeline_go_proto │ │ ├── common.pb.go │ │ ├── pipelinerun.pb.go │ │ └── taskrun.pb.go │ │ ├── pipelinerun.proto │ │ └── taskrun.proto ├── v1alpha2 │ ├── api.proto │ ├── generate.go │ ├── resources.proto │ └── results_go_proto │ │ ├── api.pb.go │ │ ├── api.pb.gw.go │ │ ├── api_grpc.pb.go │ │ └── resources.pb.go └── v1alpha3 │ ├── generate.go │ ├── log.proto │ └── results_go_proto │ ├── log.pb.go │ └── log_grpc.pb.go ├── release ├── kustomization.yaml ├── localdb │ └── kustomization.yaml ├── release.sh └── release.yaml ├── tekton ├── ci-run.yaml ├── ci.yaml ├── release-cheatsheet.md ├── release-run.yaml ├── release.yaml ├── serviceaccount.yaml └── trigger.yaml ├── test ├── e2e-tests.sh ├── e2e │ ├── 00-setup.sh │ ├── 01-install.sh │ ├── 02-logs-setup.sh │ ├── 02-loki-vector.sh │ ├── README.md │ ├── blob-logs │ │ ├── vector-minio-config.yaml │ │ └── vector-s3.yaml │ ├── client │ │ ├── grpc.go │ │ └── rest.go │ ├── e2e.sh │ ├── e2e_gcs_test.go │ ├── e2e_test.go │ ├── gcs-emulator.yaml │ ├── kind-cluster.yaml │ ├── kind-runner │ │ └── Dockerfile │ ├── kustomize │ │ ├── api-service.yaml │ │ ├── kustomization.yaml │ │ ├── rbac.yaml │ │ └── watcher.yaml │ ├── loki_vector │ │ ├── loki-vector-api-config.yaml │ │ ├── loki.yaml │ │ └── vector.yaml │ ├── tekton │ │ └── task.yaml │ └── testdata │ │ ├── pipelinerun.yaml │ │ ├── pipelinerungcs.yaml │ │ └── taskrun.yaml ├── presubmit-tests.sh └── vendor │ └── github.com │ └── tektoncd │ └── plumbing │ ├── LICENSE │ └── scripts │ ├── README.md │ ├── dummy.go │ ├── e2e-tests.sh │ ├── library.sh │ ├── markdown-link-check-config.rc │ ├── markdown-lint-config.rc │ └── presubmit-tests.sh ├── tools ├── postgres-migrate │ ├── README.md │ ├── config │ │ ├── common.yaml │ │ ├── kustomization.yaml │ │ ├── mysql.yaml │ │ └── postgres.yaml │ ├── legacy_model.go │ ├── main.go │ ├── main_test.go │ ├── test.sh │ └── testdata_test.go └── simpleui │ ├── README.md │ ├── main.go │ ├── template.go │ └── templates │ ├── records.html │ └── results.html └── vendor ├── 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 │ │ ├── idtoken │ │ │ ├── cache.go │ │ │ ├── compute.go │ │ │ ├── file.go │ │ │ ├── idtoken.go │ │ │ └── validate.go │ │ ├── impersonate │ │ │ ├── doc.go │ │ │ ├── idtoken.go │ │ │ ├── impersonate.go │ │ │ └── user.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 │ │ ├── retry │ │ │ └── retry.go │ │ ├── transport │ │ │ ├── cba.go │ │ │ ├── cert │ │ │ │ ├── default_cert.go │ │ │ │ ├── enterprise_cert.go │ │ │ │ ├── secureconnect_cert.go │ │ │ │ └── workload_cert.go │ │ │ ├── headers │ │ │ │ └── headers.go │ │ │ ├── s2a.go │ │ │ └── transport.go │ │ ├── trustboundary │ │ │ ├── external_accounts_config_providers.go │ │ │ └── trust_boundary.go │ │ └── version.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 │ │ │ └── resource_policy_member.pb.go │ ├── credentials │ │ └── apiv1 │ │ │ ├── auxiliary.go │ │ │ ├── auxiliary_go123.go │ │ │ ├── credentialspb │ │ │ ├── common.pb.go │ │ │ └── iamcredentials.pb.go │ │ │ ├── doc.go │ │ │ ├── helpers.go │ │ │ ├── iam_credentials_client.go │ │ │ └── version.go │ ├── iam.go │ └── internal │ │ └── version.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 │ │ │ ├── helpers.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 │ ├── grpc_reader.go │ ├── grpc_reader_multi_range.go │ ├── grpc_writer.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 │ ├── trace.go │ └── writer.go ├── contrib.go.opencensus.io └── exporter │ ├── ocagent │ ├── .gitignore │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── common.go │ ├── connection.go │ ├── nodeinfo.go │ ├── ocagent.go │ ├── options.go │ ├── span_config.go │ ├── transform_spans.go │ ├── transform_stats_to_metrics.go │ └── version.go │ └── prometheus │ ├── .gitignore │ ├── .golangci.yml │ ├── .travis.yml │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── prometheus.go │ └── sanitize.go ├── filippo.io └── edwards25519 │ ├── LICENSE │ ├── README.md │ ├── doc.go │ ├── edwards25519.go │ ├── extra.go │ ├── field │ ├── fe.go │ ├── fe_amd64.go │ ├── fe_amd64.s │ ├── fe_amd64_noasm.go │ ├── fe_arm64.go │ ├── fe_arm64.s │ ├── fe_arm64_noasm.go │ ├── fe_extra.go │ └── fe_generic.go │ ├── scalar.go │ ├── scalar_fiat.go │ ├── scalarmult.go │ └── tables.go ├── github.com ├── 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 ├── Azure │ ├── azure-sdk-for-go │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ ├── services │ │ │ └── preview │ │ │ │ └── containerregistry │ │ │ │ └── runtime │ │ │ │ └── 2019-08-15-preview │ │ │ │ └── containerregistry │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── accesstokens.go │ │ │ │ ├── blob.go │ │ │ │ ├── client.go │ │ │ │ ├── dataplane_meta.json │ │ │ │ ├── manifests.go │ │ │ │ ├── models.go │ │ │ │ ├── refreshtokens.go │ │ │ │ ├── repository.go │ │ │ │ ├── tag.go │ │ │ │ ├── v2support.go │ │ │ │ └── version.go │ │ └── version │ │ │ └── version.go │ ├── 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 │ └── go-autorest │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── GNUmakefile │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── autorest │ │ ├── LICENSE │ │ ├── adal │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── config.go │ │ │ ├── devicetoken.go │ │ │ ├── go_mod_tidy_hack.go │ │ │ ├── persist.go │ │ │ ├── sender.go │ │ │ ├── token.go │ │ │ ├── token_1.13.go │ │ │ ├── token_legacy.go │ │ │ └── version.go │ │ ├── authorization.go │ │ ├── authorization_sas.go │ │ ├── authorization_storage.go │ │ ├── autorest.go │ │ ├── azure │ │ │ ├── async.go │ │ │ ├── auth │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── auth.go │ │ │ │ └── go_mod_tidy_hack.go │ │ │ ├── azure.go │ │ │ ├── cli │ │ │ │ ├── LICENSE │ │ │ │ ├── go_mod_tidy_hack.go │ │ │ │ ├── profile.go │ │ │ │ └── token.go │ │ │ ├── environments.go │ │ │ ├── metadata_environment.go │ │ │ └── rp.go │ │ ├── client.go │ │ ├── date │ │ │ ├── LICENSE │ │ │ ├── date.go │ │ │ ├── go_mod_tidy_hack.go │ │ │ ├── time.go │ │ │ ├── timerfc1123.go │ │ │ ├── unixtime.go │ │ │ └── utility.go │ │ ├── error.go │ │ ├── go_mod_tidy_hack.go │ │ ├── preparer.go │ │ ├── responder.go │ │ ├── retriablerequest.go │ │ ├── retriablerequest_1.7.go │ │ ├── retriablerequest_1.8.go │ │ ├── sender.go │ │ ├── utility.go │ │ ├── utility_1.13.go │ │ ├── utility_legacy.go │ │ └── version.go │ │ ├── azure-pipelines.yml │ │ ├── doc.go │ │ ├── logger │ │ ├── LICENSE │ │ ├── go_mod_tidy_hack.go │ │ └── logger.go │ │ └── tracing │ │ ├── LICENSE │ │ ├── go_mod_tidy_hack.go │ │ └── tracing.go ├── DATA-DOG │ └── go-sqlmock │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── argument.go │ │ ├── column.go │ │ ├── driver.go │ │ ├── expectations.go │ │ ├── expectations_before_go18.go │ │ ├── expectations_go18.go │ │ ├── options.go │ │ ├── query.go │ │ ├── result.go │ │ ├── rows.go │ │ ├── rows_go18.go │ │ ├── sqlmock.go │ │ ├── sqlmock_before_go18.go │ │ ├── sqlmock_go18.go │ │ ├── sqlmock_go18_19.go │ │ ├── sqlmock_go19.go │ │ ├── statement.go │ │ ├── statement_before_go18.go │ │ └── statement_go18.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 ├── Microsoft │ └── go-winio │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODEOWNERS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── backup.go │ │ ├── doc.go │ │ ├── ea.go │ │ ├── file.go │ │ ├── fileinfo.go │ │ ├── hvsock.go │ │ ├── internal │ │ ├── fs │ │ │ ├── doc.go │ │ │ ├── fs.go │ │ │ ├── security.go │ │ │ └── zsyscall_windows.go │ │ ├── socket │ │ │ ├── rawaddr.go │ │ │ ├── socket.go │ │ │ └── zsyscall_windows.go │ │ └── stringbuffer │ │ │ └── wstring.go │ │ ├── pipe.go │ │ ├── pkg │ │ └── guid │ │ │ ├── guid.go │ │ │ ├── guid_nonwindows.go │ │ │ ├── guid_windows.go │ │ │ └── variant_string.go │ │ ├── privilege.go │ │ ├── reparse.go │ │ ├── sd.go │ │ ├── syscall.go │ │ └── zsyscall_windows.go ├── antlr4-go │ └── antlr │ │ └── v4 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── antlrdoc.go │ │ ├── atn.go │ │ ├── atn_config.go │ │ ├── atn_config_set.go │ │ ├── atn_deserialization_options.go │ │ ├── atn_deserializer.go │ │ ├── atn_simulator.go │ │ ├── atn_state.go │ │ ├── atn_type.go │ │ ├── char_stream.go │ │ ├── common_token_factory.go │ │ ├── common_token_stream.go │ │ ├── comparators.go │ │ ├── configuration.go │ │ ├── dfa.go │ │ ├── dfa_serializer.go │ │ ├── dfa_state.go │ │ ├── diagnostic_error_listener.go │ │ ├── error_listener.go │ │ ├── error_strategy.go │ │ ├── errors.go │ │ ├── file_stream.go │ │ ├── input_stream.go │ │ ├── int_stream.go │ │ ├── interval_set.go │ │ ├── jcollect.go │ │ ├── lexer.go │ │ ├── lexer_action.go │ │ ├── lexer_action_executor.go │ │ ├── lexer_atn_simulator.go │ │ ├── ll1_analyzer.go │ │ ├── nostatistics.go │ │ ├── parser.go │ │ ├── parser_atn_simulator.go │ │ ├── parser_rule_context.go │ │ ├── prediction_context.go │ │ ├── prediction_context_cache.go │ │ ├── prediction_mode.go │ │ ├── recognizer.go │ │ ├── rule_context.go │ │ ├── semantic_context.go │ │ ├── statistics.go │ │ ├── stats_data.go │ │ ├── token.go │ │ ├── token_source.go │ │ ├── token_stream.go │ │ ├── tokenstream_rewriter.go │ │ ├── trace_listener.go │ │ ├── transition.go │ │ ├── tree.go │ │ ├── trees.go │ │ └── utils.go ├── aws │ ├── aws-sdk-go-v2 │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ ├── aws │ │ │ ├── accountid_endpoint_mode.go │ │ │ ├── arn │ │ │ │ └── arn.go │ │ │ ├── checksum.go │ │ │ ├── config.go │ │ │ ├── context.go │ │ │ ├── credential_cache.go │ │ │ ├── credentials.go │ │ │ ├── defaults │ │ │ │ ├── auto.go │ │ │ │ ├── configuration.go │ │ │ │ ├── defaults.go │ │ │ │ └── doc.go │ │ │ ├── defaultsmode.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── errors.go │ │ │ ├── from_ptr.go │ │ │ ├── go_module_metadata.go │ │ │ ├── logging.go │ │ │ ├── logging_generate.go │ │ │ ├── middleware │ │ │ │ ├── metadata.go │ │ │ │ ├── middleware.go │ │ │ │ ├── osname.go │ │ │ │ ├── osname_go115.go │ │ │ │ ├── recursion_detection.go │ │ │ │ ├── request_id.go │ │ │ │ ├── request_id_retriever.go │ │ │ │ └── user_agent.go │ │ │ ├── protocol │ │ │ │ ├── eventstream │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── debug.go │ │ │ │ │ ├── decode.go │ │ │ │ │ ├── encode.go │ │ │ │ │ ├── error.go │ │ │ │ │ ├── eventstreamapi │ │ │ │ │ │ ├── headers.go │ │ │ │ │ │ ├── middleware.go │ │ │ │ │ │ ├── transport.go │ │ │ │ │ │ └── transport_go117.go │ │ │ │ │ ├── go_module_metadata.go │ │ │ │ │ ├── header.go │ │ │ │ │ ├── header_value.go │ │ │ │ │ └── message.go │ │ │ │ ├── query │ │ │ │ │ ├── array.go │ │ │ │ │ ├── encoder.go │ │ │ │ │ ├── map.go │ │ │ │ │ ├── middleware.go │ │ │ │ │ ├── object.go │ │ │ │ │ └── value.go │ │ │ │ ├── restjson │ │ │ │ │ └── decoder_util.go │ │ │ │ └── xml │ │ │ │ │ └── error_utils.go │ │ │ ├── ratelimit │ │ │ │ ├── none.go │ │ │ │ ├── token_bucket.go │ │ │ │ └── token_rate_limit.go │ │ │ ├── request.go │ │ │ ├── retry │ │ │ │ ├── adaptive.go │ │ │ │ ├── adaptive_ratelimit.go │ │ │ │ ├── adaptive_token_bucket.go │ │ │ │ ├── attempt_metrics.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── jitter_backoff.go │ │ │ │ ├── metadata.go │ │ │ │ ├── middleware.go │ │ │ │ ├── retry.go │ │ │ │ ├── retryable_error.go │ │ │ │ ├── standard.go │ │ │ │ ├── throttle_error.go │ │ │ │ └── timeout_error.go │ │ │ ├── retryer.go │ │ │ ├── runtime.go │ │ │ ├── signer │ │ │ │ ├── internal │ │ │ │ │ └── v4 │ │ │ │ │ │ ├── cache.go │ │ │ │ │ │ ├── const.go │ │ │ │ │ │ ├── header_rules.go │ │ │ │ │ │ ├── headers.go │ │ │ │ │ │ ├── hmac.go │ │ │ │ │ │ ├── host.go │ │ │ │ │ │ ├── scope.go │ │ │ │ │ │ ├── time.go │ │ │ │ │ │ └── util.go │ │ │ │ └── v4 │ │ │ │ │ ├── middleware.go │ │ │ │ │ ├── presign_middleware.go │ │ │ │ │ ├── stream.go │ │ │ │ │ └── v4.go │ │ │ ├── to_ptr.go │ │ │ ├── transport │ │ │ │ └── http │ │ │ │ │ ├── client.go │ │ │ │ │ ├── content_type.go │ │ │ │ │ ├── response_error.go │ │ │ │ │ ├── response_error_middleware.go │ │ │ │ │ └── timeout_read_closer.go │ │ │ ├── types.go │ │ │ └── version.go │ │ ├── config │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── auth_scheme_preference.go │ │ │ ├── config.go │ │ │ ├── defaultsmode.go │ │ │ ├── doc.go │ │ │ ├── env_config.go │ │ │ ├── generate.go │ │ │ ├── go_module_metadata.go │ │ │ ├── load_options.go │ │ │ ├── local.go │ │ │ ├── provider.go │ │ │ ├── resolve.go │ │ │ ├── resolve_bearer_token.go │ │ │ ├── resolve_credentials.go │ │ │ └── shared_config.go │ │ ├── credentials │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── doc.go │ │ │ ├── ec2rolecreds │ │ │ │ ├── doc.go │ │ │ │ └── provider.go │ │ │ ├── endpointcreds │ │ │ │ ├── internal │ │ │ │ │ └── client │ │ │ │ │ │ ├── auth.go │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ ├── endpoints.go │ │ │ │ │ │ └── middleware.go │ │ │ │ └── provider.go │ │ │ ├── go_module_metadata.go │ │ │ ├── logincreds │ │ │ │ ├── dpop.go │ │ │ │ ├── file.go │ │ │ │ ├── provider.go │ │ │ │ └── token.go │ │ │ ├── processcreds │ │ │ │ ├── doc.go │ │ │ │ └── provider.go │ │ │ ├── ssocreds │ │ │ │ ├── doc.go │ │ │ │ ├── sso_cached_token.go │ │ │ │ ├── sso_credentials_provider.go │ │ │ │ └── sso_token_provider.go │ │ │ ├── static_provider.go │ │ │ └── stscreds │ │ │ │ ├── assume_role_provider.go │ │ │ │ └── web_identity_provider.go │ │ ├── feature │ │ │ ├── ec2 │ │ │ │ └── imds │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── api_client.go │ │ │ │ │ ├── api_op_GetDynamicData.go │ │ │ │ │ ├── api_op_GetIAMInfo.go │ │ │ │ │ ├── api_op_GetInstanceIdentityDocument.go │ │ │ │ │ ├── api_op_GetMetadata.go │ │ │ │ │ ├── api_op_GetRegion.go │ │ │ │ │ ├── api_op_GetToken.go │ │ │ │ │ ├── api_op_GetUserData.go │ │ │ │ │ ├── auth.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── endpoints.go │ │ │ │ │ ├── go_module_metadata.go │ │ │ │ │ ├── internal │ │ │ │ │ └── config │ │ │ │ │ │ └── resolvers.go │ │ │ │ │ ├── request_middleware.go │ │ │ │ │ └── token_provider.go │ │ │ └── s3 │ │ │ │ └── manager │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── api.go │ │ │ │ ├── arn.go │ │ │ │ ├── bucket_region.go │ │ │ │ ├── buffered_read_seeker.go │ │ │ │ ├── default_read_seeker_write_to.go │ │ │ │ ├── default_read_seeker_write_to_windows.go │ │ │ │ ├── default_writer_read_from.go │ │ │ │ ├── default_writer_read_from_windows.go │ │ │ │ ├── doc.go │ │ │ │ ├── download.go │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── pool.go │ │ │ │ ├── read_seeker_write_to.go │ │ │ │ ├── types.go │ │ │ │ ├── upload.go │ │ │ │ └── writer_read_from.go │ │ ├── internal │ │ │ ├── auth │ │ │ │ ├── auth.go │ │ │ │ ├── scheme.go │ │ │ │ └── smithy │ │ │ │ │ ├── bearer_token_adapter.go │ │ │ │ │ ├── bearer_token_signer_adapter.go │ │ │ │ │ ├── credentials_adapter.go │ │ │ │ │ ├── smithy.go │ │ │ │ │ └── v4signer_adapter.go │ │ │ ├── awsutil │ │ │ │ ├── copy.go │ │ │ │ ├── equal.go │ │ │ │ ├── prettify.go │ │ │ │ └── string_value.go │ │ │ ├── configsources │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── config.go │ │ │ │ ├── endpoints.go │ │ │ │ └── go_module_metadata.go │ │ │ ├── context │ │ │ │ └── context.go │ │ │ ├── endpoints │ │ │ │ ├── awsrulesfn │ │ │ │ │ ├── arn.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generate.go │ │ │ │ │ ├── host.go │ │ │ │ │ ├── partition.go │ │ │ │ │ ├── partitions.go │ │ │ │ │ └── partitions.json │ │ │ │ ├── endpoints.go │ │ │ │ └── v2 │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── endpoints.go │ │ │ │ │ └── go_module_metadata.go │ │ │ ├── ini │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── errors.go │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── ini.go │ │ │ │ ├── parse.go │ │ │ │ ├── sections.go │ │ │ │ ├── strings.go │ │ │ │ ├── token.go │ │ │ │ ├── tokenize.go │ │ │ │ └── value.go │ │ │ ├── middleware │ │ │ │ └── middleware.go │ │ │ ├── rand │ │ │ │ └── rand.go │ │ │ ├── sdk │ │ │ │ ├── interfaces.go │ │ │ │ └── time.go │ │ │ ├── sdkio │ │ │ │ └── byte.go │ │ │ ├── shareddefaults │ │ │ │ └── shared_config.go │ │ │ ├── strings │ │ │ │ └── strings.go │ │ │ ├── sync │ │ │ │ └── singleflight │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── docs.go │ │ │ │ │ └── singleflight.go │ │ │ ├── timeconv │ │ │ │ └── duration.go │ │ │ └── v4a │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── credentials.go │ │ │ │ ├── error.go │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── internal │ │ │ │ ├── crypto │ │ │ │ │ ├── compare.go │ │ │ │ │ └── ecc.go │ │ │ │ └── v4 │ │ │ │ │ ├── const.go │ │ │ │ │ ├── header_rules.go │ │ │ │ │ ├── headers.go │ │ │ │ │ ├── hmac.go │ │ │ │ │ ├── host.go │ │ │ │ │ ├── time.go │ │ │ │ │ └── util.go │ │ │ │ ├── middleware.go │ │ │ │ ├── presign_middleware.go │ │ │ │ ├── smithy.go │ │ │ │ └── v4a.go │ │ └── service │ │ │ ├── ecr │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── api_client.go │ │ │ ├── api_op_BatchCheckLayerAvailability.go │ │ │ ├── api_op_BatchDeleteImage.go │ │ │ ├── api_op_BatchGetImage.go │ │ │ ├── api_op_BatchGetRepositoryScanningConfiguration.go │ │ │ ├── api_op_CompleteLayerUpload.go │ │ │ ├── api_op_CreatePullThroughCacheRule.go │ │ │ ├── api_op_CreateRepository.go │ │ │ ├── api_op_CreateRepositoryCreationTemplate.go │ │ │ ├── api_op_DeleteLifecyclePolicy.go │ │ │ ├── api_op_DeletePullThroughCacheRule.go │ │ │ ├── api_op_DeleteRegistryPolicy.go │ │ │ ├── api_op_DeleteRepository.go │ │ │ ├── api_op_DeleteRepositoryCreationTemplate.go │ │ │ ├── api_op_DeleteRepositoryPolicy.go │ │ │ ├── api_op_DescribeImageReplicationStatus.go │ │ │ ├── api_op_DescribeImageScanFindings.go │ │ │ ├── api_op_DescribeImages.go │ │ │ ├── api_op_DescribePullThroughCacheRules.go │ │ │ ├── api_op_DescribeRegistry.go │ │ │ ├── api_op_DescribeRepositories.go │ │ │ ├── api_op_DescribeRepositoryCreationTemplates.go │ │ │ ├── api_op_GetAccountSetting.go │ │ │ ├── api_op_GetAuthorizationToken.go │ │ │ ├── api_op_GetDownloadUrlForLayer.go │ │ │ ├── api_op_GetLifecyclePolicy.go │ │ │ ├── api_op_GetLifecyclePolicyPreview.go │ │ │ ├── api_op_GetRegistryPolicy.go │ │ │ ├── api_op_GetRegistryScanningConfiguration.go │ │ │ ├── api_op_GetRepositoryPolicy.go │ │ │ ├── api_op_InitiateLayerUpload.go │ │ │ ├── api_op_ListImages.go │ │ │ ├── api_op_ListTagsForResource.go │ │ │ ├── api_op_PutAccountSetting.go │ │ │ ├── api_op_PutImage.go │ │ │ ├── api_op_PutImageScanningConfiguration.go │ │ │ ├── api_op_PutImageTagMutability.go │ │ │ ├── api_op_PutLifecyclePolicy.go │ │ │ ├── api_op_PutRegistryPolicy.go │ │ │ ├── api_op_PutRegistryScanningConfiguration.go │ │ │ ├── api_op_PutReplicationConfiguration.go │ │ │ ├── api_op_SetRepositoryPolicy.go │ │ │ ├── api_op_StartImageScan.go │ │ │ ├── api_op_StartLifecyclePolicyPreview.go │ │ │ ├── api_op_TagResource.go │ │ │ ├── api_op_UntagResource.go │ │ │ ├── api_op_UpdatePullThroughCacheRule.go │ │ │ ├── api_op_UpdateRepositoryCreationTemplate.go │ │ │ ├── api_op_UploadLayerPart.go │ │ │ ├── api_op_ValidatePullThroughCacheRule.go │ │ │ ├── auth.go │ │ │ ├── deserializers.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── generated.json │ │ │ ├── go_module_metadata.go │ │ │ ├── internal │ │ │ │ └── endpoints │ │ │ │ │ └── endpoints.go │ │ │ ├── options.go │ │ │ ├── serializers.go │ │ │ ├── types │ │ │ │ ├── enums.go │ │ │ │ ├── errors.go │ │ │ │ └── types.go │ │ │ └── validators.go │ │ │ ├── ecrpublic │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── api_client.go │ │ │ ├── api_op_BatchCheckLayerAvailability.go │ │ │ ├── api_op_BatchDeleteImage.go │ │ │ ├── api_op_CompleteLayerUpload.go │ │ │ ├── api_op_CreateRepository.go │ │ │ ├── api_op_DeleteRepository.go │ │ │ ├── api_op_DeleteRepositoryPolicy.go │ │ │ ├── api_op_DescribeImageTags.go │ │ │ ├── api_op_DescribeImages.go │ │ │ ├── api_op_DescribeRegistries.go │ │ │ ├── api_op_DescribeRepositories.go │ │ │ ├── api_op_GetAuthorizationToken.go │ │ │ ├── api_op_GetRegistryCatalogData.go │ │ │ ├── api_op_GetRepositoryCatalogData.go │ │ │ ├── api_op_GetRepositoryPolicy.go │ │ │ ├── api_op_InitiateLayerUpload.go │ │ │ ├── api_op_ListTagsForResource.go │ │ │ ├── api_op_PutImage.go │ │ │ ├── api_op_PutRegistryCatalogData.go │ │ │ ├── api_op_PutRepositoryCatalogData.go │ │ │ ├── api_op_SetRepositoryPolicy.go │ │ │ ├── api_op_TagResource.go │ │ │ ├── api_op_UntagResource.go │ │ │ ├── api_op_UploadLayerPart.go │ │ │ ├── auth.go │ │ │ ├── deserializers.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── generated.json │ │ │ ├── go_module_metadata.go │ │ │ ├── internal │ │ │ │ └── endpoints │ │ │ │ │ └── endpoints.go │ │ │ ├── options.go │ │ │ ├── serializers.go │ │ │ ├── types │ │ │ │ ├── enums.go │ │ │ │ ├── errors.go │ │ │ │ └── types.go │ │ │ └── validators.go │ │ │ ├── internal │ │ │ ├── accept-encoding │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── accept_encoding_gzip.go │ │ │ │ ├── doc.go │ │ │ │ └── go_module_metadata.go │ │ │ ├── checksum │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── algorithms.go │ │ │ │ ├── aws_chunked_encoding.go │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── middleware_add.go │ │ │ │ ├── middleware_checksum_metrics_tracking.go │ │ │ │ ├── middleware_compute_input_checksum.go │ │ │ │ ├── middleware_setup_context.go │ │ │ │ └── middleware_validate_output.go │ │ │ ├── presigned-url │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── context.go │ │ │ │ ├── doc.go │ │ │ │ ├── go_module_metadata.go │ │ │ │ └── middleware.go │ │ │ └── s3shared │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── arn │ │ │ │ ├── accesspoint_arn.go │ │ │ │ ├── arn.go │ │ │ │ ├── arn_member.go │ │ │ │ ├── outpost_arn.go │ │ │ │ └── s3_object_lambda_arn.go │ │ │ │ ├── arn_lookup.go │ │ │ │ ├── config │ │ │ │ └── config.go │ │ │ │ ├── endpoint_error.go │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── host_id.go │ │ │ │ ├── metadata.go │ │ │ │ ├── metadata_retriever.go │ │ │ │ ├── resource_request.go │ │ │ │ ├── response_error.go │ │ │ │ ├── response_error_middleware.go │ │ │ │ ├── s3100continue.go │ │ │ │ ├── update_endpoint.go │ │ │ │ └── xml_utils.go │ │ │ ├── s3 │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── api_client.go │ │ │ ├── api_op_AbortMultipartUpload.go │ │ │ ├── api_op_CompleteMultipartUpload.go │ │ │ ├── api_op_CopyObject.go │ │ │ ├── api_op_CreateBucket.go │ │ │ ├── api_op_CreateBucketMetadataConfiguration.go │ │ │ ├── api_op_CreateBucketMetadataTableConfiguration.go │ │ │ ├── api_op_CreateMultipartUpload.go │ │ │ ├── api_op_CreateSession.go │ │ │ ├── api_op_DeleteBucket.go │ │ │ ├── api_op_DeleteBucketAnalyticsConfiguration.go │ │ │ ├── api_op_DeleteBucketCors.go │ │ │ ├── api_op_DeleteBucketEncryption.go │ │ │ ├── api_op_DeleteBucketIntelligentTieringConfiguration.go │ │ │ ├── api_op_DeleteBucketInventoryConfiguration.go │ │ │ ├── api_op_DeleteBucketLifecycle.go │ │ │ ├── api_op_DeleteBucketMetadataConfiguration.go │ │ │ ├── api_op_DeleteBucketMetadataTableConfiguration.go │ │ │ ├── api_op_DeleteBucketMetricsConfiguration.go │ │ │ ├── api_op_DeleteBucketOwnershipControls.go │ │ │ ├── api_op_DeleteBucketPolicy.go │ │ │ ├── api_op_DeleteBucketReplication.go │ │ │ ├── api_op_DeleteBucketTagging.go │ │ │ ├── api_op_DeleteBucketWebsite.go │ │ │ ├── api_op_DeleteObject.go │ │ │ ├── api_op_DeleteObjectTagging.go │ │ │ ├── api_op_DeleteObjects.go │ │ │ ├── api_op_DeletePublicAccessBlock.go │ │ │ ├── api_op_GetBucketAccelerateConfiguration.go │ │ │ ├── api_op_GetBucketAcl.go │ │ │ ├── api_op_GetBucketAnalyticsConfiguration.go │ │ │ ├── api_op_GetBucketCors.go │ │ │ ├── api_op_GetBucketEncryption.go │ │ │ ├── api_op_GetBucketIntelligentTieringConfiguration.go │ │ │ ├── api_op_GetBucketInventoryConfiguration.go │ │ │ ├── api_op_GetBucketLifecycleConfiguration.go │ │ │ ├── api_op_GetBucketLocation.go │ │ │ ├── api_op_GetBucketLogging.go │ │ │ ├── api_op_GetBucketMetadataConfiguration.go │ │ │ ├── api_op_GetBucketMetadataTableConfiguration.go │ │ │ ├── api_op_GetBucketMetricsConfiguration.go │ │ │ ├── api_op_GetBucketNotificationConfiguration.go │ │ │ ├── api_op_GetBucketOwnershipControls.go │ │ │ ├── api_op_GetBucketPolicy.go │ │ │ ├── api_op_GetBucketPolicyStatus.go │ │ │ ├── api_op_GetBucketReplication.go │ │ │ ├── api_op_GetBucketRequestPayment.go │ │ │ ├── api_op_GetBucketTagging.go │ │ │ ├── api_op_GetBucketVersioning.go │ │ │ ├── api_op_GetBucketWebsite.go │ │ │ ├── api_op_GetObject.go │ │ │ ├── api_op_GetObjectAcl.go │ │ │ ├── api_op_GetObjectAttributes.go │ │ │ ├── api_op_GetObjectLegalHold.go │ │ │ ├── api_op_GetObjectLockConfiguration.go │ │ │ ├── api_op_GetObjectRetention.go │ │ │ ├── api_op_GetObjectTagging.go │ │ │ ├── api_op_GetObjectTorrent.go │ │ │ ├── api_op_GetPublicAccessBlock.go │ │ │ ├── api_op_HeadBucket.go │ │ │ ├── api_op_HeadObject.go │ │ │ ├── api_op_ListBucketAnalyticsConfigurations.go │ │ │ ├── api_op_ListBucketIntelligentTieringConfigurations.go │ │ │ ├── api_op_ListBucketInventoryConfigurations.go │ │ │ ├── api_op_ListBucketMetricsConfigurations.go │ │ │ ├── api_op_ListBuckets.go │ │ │ ├── api_op_ListDirectoryBuckets.go │ │ │ ├── api_op_ListMultipartUploads.go │ │ │ ├── api_op_ListObjectVersions.go │ │ │ ├── api_op_ListObjects.go │ │ │ ├── api_op_ListObjectsV2.go │ │ │ ├── api_op_ListParts.go │ │ │ ├── api_op_PutBucketAccelerateConfiguration.go │ │ │ ├── api_op_PutBucketAcl.go │ │ │ ├── api_op_PutBucketAnalyticsConfiguration.go │ │ │ ├── api_op_PutBucketCors.go │ │ │ ├── api_op_PutBucketEncryption.go │ │ │ ├── api_op_PutBucketIntelligentTieringConfiguration.go │ │ │ ├── api_op_PutBucketInventoryConfiguration.go │ │ │ ├── api_op_PutBucketLifecycleConfiguration.go │ │ │ ├── api_op_PutBucketLogging.go │ │ │ ├── api_op_PutBucketMetricsConfiguration.go │ │ │ ├── api_op_PutBucketNotificationConfiguration.go │ │ │ ├── api_op_PutBucketOwnershipControls.go │ │ │ ├── api_op_PutBucketPolicy.go │ │ │ ├── api_op_PutBucketReplication.go │ │ │ ├── api_op_PutBucketRequestPayment.go │ │ │ ├── api_op_PutBucketTagging.go │ │ │ ├── api_op_PutBucketVersioning.go │ │ │ ├── api_op_PutBucketWebsite.go │ │ │ ├── api_op_PutObject.go │ │ │ ├── api_op_PutObjectAcl.go │ │ │ ├── api_op_PutObjectLegalHold.go │ │ │ ├── api_op_PutObjectLockConfiguration.go │ │ │ ├── api_op_PutObjectRetention.go │ │ │ ├── api_op_PutObjectTagging.go │ │ │ ├── api_op_PutPublicAccessBlock.go │ │ │ ├── api_op_RenameObject.go │ │ │ ├── api_op_RestoreObject.go │ │ │ ├── api_op_SelectObjectContent.go │ │ │ ├── api_op_UpdateBucketMetadataInventoryTableConfiguration.go │ │ │ ├── api_op_UpdateBucketMetadataJournalTableConfiguration.go │ │ │ ├── api_op_UploadPart.go │ │ │ ├── api_op_UploadPartCopy.go │ │ │ ├── api_op_WriteGetObjectResponse.go │ │ │ ├── auth.go │ │ │ ├── bucket_context.go │ │ │ ├── bucketer.go │ │ │ ├── create_mpu_checksum.go │ │ │ ├── deserializers.go │ │ │ ├── doc.go │ │ │ ├── endpoint_auth_resolver.go │ │ │ ├── endpoints.go │ │ │ ├── eventstream.go │ │ │ ├── express.go │ │ │ ├── express_default.go │ │ │ ├── express_resolve.go │ │ │ ├── express_user_agent.go │ │ │ ├── generated.json │ │ │ ├── go_module_metadata.go │ │ │ ├── handwritten_paginators.go │ │ │ ├── internal │ │ │ │ ├── arn │ │ │ │ │ └── arn_parser.go │ │ │ │ ├── customizations │ │ │ │ │ ├── context.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── express.go │ │ │ │ │ ├── express_config.go │ │ │ │ │ ├── express_default_checksum.go │ │ │ │ │ ├── express_properties.go │ │ │ │ │ ├── express_signer.go │ │ │ │ │ ├── express_signer_smithy.go │ │ │ │ │ ├── handle_200_error.go │ │ │ │ │ ├── host.go │ │ │ │ │ ├── presigned_expires.go │ │ │ │ │ ├── process_arn_resource.go │ │ │ │ │ ├── remove_bucket_middleware.go │ │ │ │ │ ├── s3_object_lambda.go │ │ │ │ │ ├── signer_wrapper.go │ │ │ │ │ └── update_endpoint.go │ │ │ │ └── endpoints │ │ │ │ │ └── endpoints.go │ │ │ ├── options.go │ │ │ ├── presign_post.go │ │ │ ├── serialize_immutable_hostname_bucket.go │ │ │ ├── serializers.go │ │ │ ├── types │ │ │ │ ├── enums.go │ │ │ │ ├── errors.go │ │ │ │ └── types.go │ │ │ ├── uri_context.go │ │ │ └── validators.go │ │ │ ├── signin │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── api_client.go │ │ │ ├── api_op_CreateOAuth2Token.go │ │ │ ├── auth.go │ │ │ ├── deserializers.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── generated.json │ │ │ ├── go_module_metadata.go │ │ │ ├── internal │ │ │ │ └── endpoints │ │ │ │ │ └── endpoints.go │ │ │ ├── options.go │ │ │ ├── serializers.go │ │ │ ├── types │ │ │ │ ├── enums.go │ │ │ │ ├── errors.go │ │ │ │ └── types.go │ │ │ └── validators.go │ │ │ ├── sso │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── api_client.go │ │ │ ├── api_op_GetRoleCredentials.go │ │ │ ├── api_op_ListAccountRoles.go │ │ │ ├── api_op_ListAccounts.go │ │ │ ├── api_op_Logout.go │ │ │ ├── auth.go │ │ │ ├── deserializers.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── generated.json │ │ │ ├── go_module_metadata.go │ │ │ ├── internal │ │ │ │ └── endpoints │ │ │ │ │ └── endpoints.go │ │ │ ├── options.go │ │ │ ├── serializers.go │ │ │ ├── types │ │ │ │ ├── errors.go │ │ │ │ └── types.go │ │ │ └── validators.go │ │ │ ├── ssooidc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── api_client.go │ │ │ ├── api_op_CreateToken.go │ │ │ ├── api_op_CreateTokenWithIAM.go │ │ │ ├── api_op_RegisterClient.go │ │ │ ├── api_op_StartDeviceAuthorization.go │ │ │ ├── auth.go │ │ │ ├── deserializers.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── generated.json │ │ │ ├── go_module_metadata.go │ │ │ ├── internal │ │ │ │ └── endpoints │ │ │ │ │ └── endpoints.go │ │ │ ├── options.go │ │ │ ├── serializers.go │ │ │ ├── types │ │ │ │ ├── enums.go │ │ │ │ ├── errors.go │ │ │ │ └── types.go │ │ │ └── validators.go │ │ │ └── sts │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── api_client.go │ │ │ ├── api_op_AssumeRole.go │ │ │ ├── api_op_AssumeRoleWithSAML.go │ │ │ ├── api_op_AssumeRoleWithWebIdentity.go │ │ │ ├── api_op_AssumeRoot.go │ │ │ ├── api_op_DecodeAuthorizationMessage.go │ │ │ ├── api_op_GetAccessKeyInfo.go │ │ │ ├── api_op_GetCallerIdentity.go │ │ │ ├── api_op_GetDelegatedAccessToken.go │ │ │ ├── api_op_GetFederationToken.go │ │ │ ├── api_op_GetSessionToken.go │ │ │ ├── api_op_GetWebIdentityToken.go │ │ │ ├── auth.go │ │ │ ├── deserializers.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── generated.json │ │ │ ├── go_module_metadata.go │ │ │ ├── internal │ │ │ └── endpoints │ │ │ │ └── endpoints.go │ │ │ ├── options.go │ │ │ ├── serializers.go │ │ │ ├── types │ │ │ ├── errors.go │ │ │ └── types.go │ │ │ └── validators.go │ ├── 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 │ │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── s3iface │ │ │ │ └── interface.go │ │ │ ├── s3manager │ │ │ │ ├── arn.go │ │ │ │ ├── batch.go │ │ │ │ ├── bucket_region.go │ │ │ │ ├── buffered_read_seeker.go │ │ │ │ ├── default_read_seeker_write_to.go │ │ │ │ ├── default_read_seeker_write_to_windows.go │ │ │ │ ├── default_writer_read_from.go │ │ │ │ ├── default_writer_read_from_windows.go │ │ │ │ ├── doc.go │ │ │ │ ├── download.go │ │ │ │ ├── pool.go │ │ │ │ ├── read_seeker_write_to.go │ │ │ │ ├── upload.go │ │ │ │ ├── upload_input.go │ │ │ │ └── writer_read_from.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 │ └── smithy-go │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── NOTICE │ │ ├── README.md │ │ ├── auth │ │ ├── auth.go │ │ ├── bearer │ │ │ ├── docs.go │ │ │ ├── middleware.go │ │ │ ├── token.go │ │ │ └── token_cache.go │ │ ├── identity.go │ │ ├── option.go │ │ └── scheme_id.go │ │ ├── changelog-template.json │ │ ├── container │ │ └── private │ │ │ └── cache │ │ │ ├── cache.go │ │ │ └── lru │ │ │ └── lru.go │ │ ├── context │ │ └── suppress_expired.go │ │ ├── doc.go │ │ ├── document.go │ │ ├── document │ │ ├── doc.go │ │ ├── document.go │ │ └── errors.go │ │ ├── encoding │ │ ├── doc.go │ │ ├── encoding.go │ │ ├── httpbinding │ │ │ ├── encode.go │ │ │ ├── header.go │ │ │ ├── path_replace.go │ │ │ ├── query.go │ │ │ └── uri.go │ │ ├── json │ │ │ ├── array.go │ │ │ ├── constants.go │ │ │ ├── decoder_util.go │ │ │ ├── encoder.go │ │ │ ├── escape.go │ │ │ ├── object.go │ │ │ └── value.go │ │ └── xml │ │ │ ├── array.go │ │ │ ├── constants.go │ │ │ ├── doc.go │ │ │ ├── element.go │ │ │ ├── encoder.go │ │ │ ├── error_utils.go │ │ │ ├── escape.go │ │ │ ├── map.go │ │ │ ├── value.go │ │ │ └── xml_decoder.go │ │ ├── endpoints │ │ ├── endpoint.go │ │ └── private │ │ │ └── rulesfn │ │ │ ├── doc.go │ │ │ ├── strings.go │ │ │ └── uri.go │ │ ├── errors.go │ │ ├── go_module_metadata.go │ │ ├── internal │ │ └── sync │ │ │ └── singleflight │ │ │ ├── LICENSE │ │ │ ├── docs.go │ │ │ └── singleflight.go │ │ ├── io │ │ ├── byte.go │ │ ├── doc.go │ │ ├── reader.go │ │ └── ringbuffer.go │ │ ├── local-mod-replace.sh │ │ ├── logging │ │ └── logger.go │ │ ├── metrics │ │ ├── metrics.go │ │ └── nop.go │ │ ├── middleware │ │ ├── context.go │ │ ├── doc.go │ │ ├── logging.go │ │ ├── metadata.go │ │ ├── middleware.go │ │ ├── ordered_group.go │ │ ├── stack.go │ │ ├── stack_values.go │ │ ├── step_build.go │ │ ├── step_deserialize.go │ │ ├── step_finalize.go │ │ ├── step_initialize.go │ │ └── step_serialize.go │ │ ├── modman.toml │ │ ├── private │ │ └── requestcompression │ │ │ ├── gzip.go │ │ │ ├── middleware_capture_request_compression.go │ │ │ └── request_compression.go │ │ ├── properties.go │ │ ├── ptr │ │ ├── doc.go │ │ ├── from_ptr.go │ │ ├── gen_scalars.go │ │ └── to_ptr.go │ │ ├── rand │ │ ├── doc.go │ │ ├── rand.go │ │ └── uuid.go │ │ ├── sync │ │ └── error.go │ │ ├── time │ │ └── time.go │ │ ├── tracing │ │ ├── context.go │ │ ├── nop.go │ │ └── tracing.go │ │ ├── transport │ │ └── http │ │ │ ├── auth.go │ │ │ ├── auth_schemes.go │ │ │ ├── checksum_middleware.go │ │ │ ├── client.go │ │ │ ├── doc.go │ │ │ ├── headerlist.go │ │ │ ├── host.go │ │ │ ├── interceptor.go │ │ │ ├── interceptor_middleware.go │ │ │ ├── internal │ │ │ └── io │ │ │ │ └── safe.go │ │ │ ├── md5_checksum.go │ │ │ ├── metrics.go │ │ │ ├── middleware_close_response_body.go │ │ │ ├── middleware_content_length.go │ │ │ ├── middleware_header_comment.go │ │ │ ├── middleware_headers.go │ │ │ ├── middleware_http_logging.go │ │ │ ├── middleware_metadata.go │ │ │ ├── middleware_min_proto.go │ │ │ ├── properties.go │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ ├── time.go │ │ │ ├── url.go │ │ │ └── user_agent.go │ │ ├── validation.go │ │ └── waiter │ │ ├── logger.go │ │ └── waiter.go ├── awslabs │ └── amazon-ecr-credential-helper │ │ └── ecr-login │ │ ├── LICENSE │ │ ├── api │ │ ├── client.go │ │ └── factory.go │ │ ├── cache │ │ ├── build.go │ │ ├── credentials.go │ │ ├── file.go │ │ └── null.go │ │ ├── config │ │ ├── cache_dir.go │ │ └── log.go │ │ ├── ecr.go │ │ └── version │ │ └── version.go ├── beorn7 │ └── perks │ │ ├── LICENSE │ │ └── quantile │ │ ├── exampledata.txt │ │ └── stream.go ├── blang │ └── semver │ │ └── v4 │ │ ├── LICENSE │ │ ├── json.go │ │ ├── range.go │ │ ├── semver.go │ │ ├── sort.go │ │ └── sql.go ├── blendle │ └── zapdriver │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── config.go │ │ ├── core.go │ │ ├── encoder.go │ │ ├── http.go │ │ ├── label.go │ │ ├── logger.go │ │ ├── operation.go │ │ ├── report.go │ │ ├── service.go │ │ ├── source.go │ │ └── trace.go ├── census-instrumentation │ └── opencensus-proto │ │ ├── AUTHORS │ │ ├── LICENSE │ │ └── gen-go │ │ ├── agent │ │ ├── common │ │ │ └── v1 │ │ │ │ └── common.pb.go │ │ ├── metrics │ │ │ └── v1 │ │ │ │ ├── metrics_service.pb.go │ │ │ │ └── metrics_service.pb.gw.go │ │ └── trace │ │ │ └── v1 │ │ │ ├── trace_service.pb.go │ │ │ └── trace_service.pb.gw.go │ │ ├── metrics │ │ └── v1 │ │ │ └── metrics.pb.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 ├── chrismellard │ └── docker-credential-acr-env │ │ ├── LICENSE │ │ └── pkg │ │ ├── credhelper │ │ └── helper.go │ │ ├── registry │ │ ├── const.go │ │ └── registry.go │ │ └── token │ │ └── token.go ├── cloudevents │ └── sdk-go │ │ └── v2 │ │ ├── LICENSE │ │ ├── alias.go │ │ ├── binding │ │ ├── binary_writer.go │ │ ├── doc.go │ │ ├── encoding.go │ │ ├── event_message.go │ │ ├── finish_message.go │ │ ├── format │ │ │ ├── doc.go │ │ │ └── format.go │ │ ├── message.go │ │ ├── spec │ │ │ ├── attributes.go │ │ │ ├── doc.go │ │ │ ├── match_exact_version.go │ │ │ └── spec.go │ │ ├── structured_writer.go │ │ ├── to_event.go │ │ ├── transformer.go │ │ └── write.go │ │ ├── client │ │ ├── client.go │ │ ├── client_http.go │ │ ├── client_observed.go │ │ ├── defaulters.go │ │ ├── doc.go │ │ ├── http_receiver.go │ │ ├── invoker.go │ │ ├── observability.go │ │ ├── options.go │ │ └── receiver.go │ │ ├── context │ │ ├── context.go │ │ ├── delegating.go │ │ ├── doc.go │ │ ├── logger.go │ │ └── retry.go │ │ ├── event │ │ ├── content_type.go │ │ ├── data_content_encoding.go │ │ ├── datacodec │ │ │ ├── codec.go │ │ │ ├── doc.go │ │ │ ├── json │ │ │ │ ├── data.go │ │ │ │ └── doc.go │ │ │ ├── text │ │ │ │ ├── data.go │ │ │ │ └── doc.go │ │ │ └── xml │ │ │ │ ├── data.go │ │ │ │ └── doc.go │ │ ├── doc.go │ │ ├── event.go │ │ ├── event_data.go │ │ ├── event_interface.go │ │ ├── event_marshal.go │ │ ├── event_reader.go │ │ ├── event_unmarshal.go │ │ ├── event_validation.go │ │ ├── event_writer.go │ │ ├── eventcontext.go │ │ ├── eventcontext_v03.go │ │ ├── eventcontext_v03_reader.go │ │ ├── eventcontext_v03_writer.go │ │ ├── eventcontext_v1.go │ │ ├── eventcontext_v1_reader.go │ │ ├── eventcontext_v1_writer.go │ │ └── extensions.go │ │ ├── protocol │ │ ├── doc.go │ │ ├── error.go │ │ ├── http │ │ │ ├── abuse_protection.go │ │ │ ├── context.go │ │ │ ├── doc.go │ │ │ ├── headers.go │ │ │ ├── message.go │ │ │ ├── options.go │ │ │ ├── protocol.go │ │ │ ├── protocol_lifecycle.go │ │ │ ├── protocol_rate.go │ │ │ ├── protocol_retry.go │ │ │ ├── result.go │ │ │ ├── retries_result.go │ │ │ ├── utility.go │ │ │ ├── write_request.go │ │ │ └── write_responsewriter.go │ │ ├── inbound.go │ │ ├── lifecycle.go │ │ ├── outbound.go │ │ └── result.go │ │ ├── staticcheck.conf │ │ └── types │ │ ├── allocate.go │ │ ├── doc.go │ │ ├── timestamp.go │ │ ├── uri.go │ │ ├── uriref.go │ │ └── value.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 ├── containerd │ └── stargz-snapshotter │ │ └── estargz │ │ ├── LICENSE │ │ ├── build.go │ │ ├── errorutil │ │ └── errors.go │ │ ├── estargz.go │ │ ├── gzip.go │ │ ├── testutil.go │ │ └── types.go ├── cpuguy83 │ └── go-md2man │ │ └── v2 │ │ ├── LICENSE.md │ │ └── md2man │ │ ├── debug.go │ │ ├── md2man.go │ │ └── roff.go ├── davecgh │ └── go-spew │ │ ├── LICENSE │ │ └── spew │ │ ├── bypass.go │ │ ├── bypasssafe.go │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── dump.go │ │ ├── format.go │ │ └── spew.go ├── dimchansky │ └── utfbom │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── utfbom.go ├── docker │ ├── cli │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── cli │ │ │ └── config │ │ │ ├── config.go │ │ │ ├── configfile │ │ │ ├── file.go │ │ │ ├── file_unix.go │ │ │ └── file_windows.go │ │ │ ├── credentials │ │ │ ├── credentials.go │ │ │ ├── default_store.go │ │ │ ├── default_store_darwin.go │ │ │ ├── default_store_linux.go │ │ │ ├── default_store_unsupported.go │ │ │ ├── default_store_windows.go │ │ │ ├── file_store.go │ │ │ └── native_store.go │ │ │ └── types │ │ │ └── authconfig.go │ ├── distribution │ │ ├── LICENSE │ │ └── registry │ │ │ └── client │ │ │ └── auth │ │ │ └── challenge │ │ │ ├── addr.go │ │ │ └── authchallenge.go │ └── docker-credential-helpers │ │ ├── LICENSE │ │ ├── client │ │ ├── client.go │ │ └── command.go │ │ └── credentials │ │ ├── credentials.go │ │ ├── error.go │ │ ├── helper.go │ │ └── version.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 ├── envoyproxy │ ├── go-control-plane │ │ └── envoy │ │ │ ├── LICENSE │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── address.pb.go │ │ │ │ ├── address.pb.validate.go │ │ │ │ ├── address_vtproto.pb.go │ │ │ │ ├── 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 ├── 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 ├── 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 ├── fsnotify │ └── fsnotify │ │ ├── .cirrus.yml │ │ ├── .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 │ │ ├── internal │ │ ├── darwin.go │ │ ├── debug_darwin.go │ │ ├── debug_dragonfly.go │ │ ├── debug_freebsd.go │ │ ├── debug_kqueue.go │ │ ├── debug_linux.go │ │ ├── debug_netbsd.go │ │ ├── debug_openbsd.go │ │ ├── debug_solaris.go │ │ ├── debug_windows.go │ │ ├── freebsd.go │ │ ├── internal.go │ │ ├── unix.go │ │ ├── unix2.go │ │ └── windows.go │ │ ├── shared.go │ │ ├── staticcheck.conf │ │ ├── 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 ├── gdamore │ ├── encoding │ │ ├── .appveyor.yml │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── ascii.go │ │ ├── charmap.go │ │ ├── doc.go │ │ ├── ebcdic.go │ │ ├── latin1.go │ │ ├── latin5.go │ │ └── utf8.go │ └── tcell │ │ └── v2 │ │ ├── .appveyor.yml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CHANGESv2.md │ │ ├── LICENSE │ │ ├── README-wasm.md │ │ ├── README.md │ │ ├── TUTORIAL.md │ │ ├── UKRAINE.md │ │ ├── attr.go │ │ ├── cell.go │ │ ├── charset_stub.go │ │ ├── charset_unix.go │ │ ├── charset_windows.go │ │ ├── color.go │ │ ├── colorfit.go │ │ ├── console_stub.go │ │ ├── console_win.go │ │ ├── doc.go │ │ ├── encoding.go │ │ ├── errors.go │ │ ├── event.go │ │ ├── interrupt.go │ │ ├── key.go │ │ ├── mouse.go │ │ ├── nonblock_bsd.go │ │ ├── nonblock_unix.go │ │ ├── paste.go │ │ ├── resize.go │ │ ├── runes.go │ │ ├── screen.go │ │ ├── simulation.go │ │ ├── stdin_unix.go │ │ ├── style.go │ │ ├── terminfo │ │ ├── .gitignore │ │ ├── README.md │ │ ├── TERMINALS.md │ │ ├── a │ │ │ ├── aixterm │ │ │ │ └── term.go │ │ │ ├── alacritty │ │ │ │ ├── direct.go │ │ │ │ └── term.go │ │ │ └── ansi │ │ │ │ └── term.go │ │ ├── b │ │ │ └── beterm │ │ │ │ └── term.go │ │ ├── base │ │ │ └── base.go │ │ ├── c │ │ │ └── cygwin │ │ │ │ └── term.go │ │ ├── d │ │ │ └── dtterm │ │ │ │ └── term.go │ │ ├── dynamic │ │ │ └── dynamic.go │ │ ├── e │ │ │ └── emacs │ │ │ │ └── term.go │ │ ├── extended │ │ │ └── extended.go │ │ ├── f │ │ │ └── foot │ │ │ │ └── foot.go │ │ ├── g │ │ │ └── gnome │ │ │ │ └── term.go │ │ ├── gen.sh │ │ ├── h │ │ │ └── hpterm │ │ │ │ └── term.go │ │ ├── k │ │ │ ├── konsole │ │ │ │ └── term.go │ │ │ └── kterm │ │ │ │ └── term.go │ │ ├── l │ │ │ └── linux │ │ │ │ └── term.go │ │ ├── models.txt │ │ ├── p │ │ │ └── pcansi │ │ │ │ └── term.go │ │ ├── r │ │ │ └── rxvt │ │ │ │ └── term.go │ │ ├── s │ │ │ ├── screen │ │ │ │ └── term.go │ │ │ ├── simpleterm │ │ │ │ └── term.go │ │ │ └── sun │ │ │ │ └── term.go │ │ ├── t │ │ │ ├── termite │ │ │ │ └── term.go │ │ │ └── tmux │ │ │ │ └── term.go │ │ ├── terminfo.go │ │ ├── v │ │ │ ├── vt100 │ │ │ │ └── term.go │ │ │ ├── vt102 │ │ │ │ └── term.go │ │ │ ├── vt220 │ │ │ │ └── term.go │ │ │ ├── vt320 │ │ │ │ └── term.go │ │ │ ├── vt400 │ │ │ │ └── term.go │ │ │ ├── vt420 │ │ │ │ └── term.go │ │ │ └── vt52 │ │ │ │ └── term.go │ │ ├── w │ │ │ ├── wy50 │ │ │ │ └── term.go │ │ │ ├── wy60 │ │ │ │ └── term.go │ │ │ └── wy99_ansi │ │ │ │ └── term.go │ │ └── x │ │ │ ├── xfce │ │ │ └── term.go │ │ │ ├── xterm │ │ │ ├── direct.go │ │ │ └── term.go │ │ │ ├── xterm_kitty │ │ │ └── term.go │ │ │ └── xterm_termite │ │ │ └── term.go │ │ ├── terms_default.go │ │ ├── terms_dynamic.go │ │ ├── terms_static.go │ │ ├── tscreen.go │ │ ├── tscreen_stub.go │ │ ├── tscreen_unix.go │ │ ├── tty.go │ │ ├── tty_unix.go │ │ └── wscreen.go ├── go-errors │ └── errors │ │ ├── .travis.yml │ │ ├── LICENSE.MIT │ │ ├── README.md │ │ ├── error.go │ │ ├── error_1_13.go │ │ ├── error_backward.go │ │ ├── parse_panic.go │ │ └── stackframe.go ├── go-jose │ └── go-jose │ │ └── v4 │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── asymmetric.go │ │ ├── cipher │ │ ├── cbc_hmac.go │ │ ├── concat_kdf.go │ │ ├── ecdh_es.go │ │ └── key_wrap.go │ │ ├── crypter.go │ │ ├── doc.go │ │ ├── encoding.go │ │ ├── json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decode.go │ │ ├── encode.go │ │ ├── indent.go │ │ ├── scanner.go │ │ ├── stream.go │ │ └── tags.go │ │ ├── jwe.go │ │ ├── jwk.go │ │ ├── jws.go │ │ ├── jwt │ │ ├── builder.go │ │ ├── claims.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── jwt.go │ │ └── validation.go │ │ ├── opaque.go │ │ ├── shared.go │ │ ├── signing.go │ │ ├── symmetric.go │ │ ├── symmetric_go124.go │ │ └── symmetric_legacy.go ├── go-kit │ └── log │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── json_logger.go │ │ ├── level │ │ ├── doc.go │ │ └── level.go │ │ ├── log.go │ │ ├── logfmt_logger.go │ │ ├── nop_logger.go │ │ ├── staticcheck.conf │ │ ├── stdlib.go │ │ ├── sync.go │ │ └── value.go ├── go-logfmt │ └── logfmt │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decode.go │ │ ├── doc.go │ │ ├── encode.go │ │ └── jsonstring.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 │ │ └── slogsink.go │ └── stdr │ │ ├── LICENSE │ │ ├── README.md │ │ └── stdr.go ├── go-openapi │ ├── 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 │ └── swag │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── BENCHMARK.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── convert.go │ │ ├── convert_types.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── file.go │ │ ├── initialism_index.go │ │ ├── json.go │ │ ├── loading.go │ │ ├── name_lexem.go │ │ ├── net.go │ │ ├── path.go │ │ ├── split.go │ │ ├── string_bytes.go │ │ ├── util.go │ │ └── yaml.go ├── go-sql-driver │ └── mysql │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── atomic_bool.go │ │ ├── atomic_bool_go118.go │ │ ├── auth.go │ │ ├── buffer.go │ │ ├── collations.go │ │ ├── conncheck.go │ │ ├── conncheck_dummy.go │ │ ├── connection.go │ │ ├── connector.go │ │ ├── const.go │ │ ├── driver.go │ │ ├── dsn.go │ │ ├── errors.go │ │ ├── fields.go │ │ ├── infile.go │ │ ├── nulltime.go │ │ ├── packets.go │ │ ├── result.go │ │ ├── rows.go │ │ ├── statement.go │ │ ├── transaction.go │ │ └── utils.go ├── go-viper │ └── mapstructure │ │ └── v2 │ │ ├── .editorconfig │ │ ├── .envrc │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decode_hooks.go │ │ ├── errors.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 ├── 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-jwt │ └── jwt │ │ └── v4 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── MIGRATION_GUIDE.md │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── VERSION_HISTORY.md │ │ ├── claims.go │ │ ├── doc.go │ │ ├── ecdsa.go │ │ ├── ecdsa_utils.go │ │ ├── ed25519.go │ │ ├── ed25519_utils.go │ │ ├── errors.go │ │ ├── hmac.go │ │ ├── map_claims.go │ │ ├── none.go │ │ ├── parser.go │ │ ├── parser_option.go │ │ ├── rsa.go │ │ ├── rsa_pss.go │ │ ├── rsa_utils.go │ │ ├── signing_method.go │ │ ├── staticcheck.conf │ │ ├── token.go │ │ └── types.go ├── golang │ ├── groupcache │ │ ├── LICENSE │ │ └── lru │ │ │ └── lru.go │ └── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── jsonpb │ │ ├── decode.go │ │ ├── encode.go │ │ └── json.go │ │ ├── proto │ │ ├── buffer.go │ │ ├── defaults.go │ │ ├── deprecated.go │ │ ├── discard.go │ │ ├── extensions.go │ │ ├── properties.go │ │ ├── proto.go │ │ ├── registry.go │ │ ├── text_decode.go │ │ ├── text_encode.go │ │ ├── wire.go │ │ └── wrappers.go │ │ └── ptypes │ │ ├── any.go │ │ ├── any │ │ └── any.pb.go │ │ ├── doc.go │ │ ├── duration.go │ │ ├── duration │ │ └── duration.pb.go │ │ ├── empty │ │ └── empty.pb.go │ │ ├── timestamp.go │ │ └── timestamp │ │ └── timestamp.pb.go ├── google │ ├── btree │ │ ├── LICENSE │ │ ├── README.md │ │ ├── btree.go │ │ └── btree_generic.go │ ├── cel-go │ │ ├── LICENSE │ │ ├── cel │ │ │ ├── BUILD.bazel │ │ │ ├── cel.go │ │ │ ├── decls.go │ │ │ ├── env.go │ │ │ ├── folding.go │ │ │ ├── inlining.go │ │ │ ├── io.go │ │ │ ├── library.go │ │ │ ├── macro.go │ │ │ ├── optimizer.go │ │ │ ├── options.go │ │ │ ├── program.go │ │ │ ├── prompt.go │ │ │ ├── templates │ │ │ │ └── authoring.tmpl │ │ │ └── validator.go │ │ ├── checker │ │ │ ├── BUILD.bazel │ │ │ ├── checker.go │ │ │ ├── cost.go │ │ │ ├── decls │ │ │ │ ├── BUILD.bazel │ │ │ │ └── decls.go │ │ │ ├── env.go │ │ │ ├── errors.go │ │ │ ├── format.go │ │ │ ├── mapping.go │ │ │ ├── options.go │ │ │ ├── printer.go │ │ │ ├── scopes.go │ │ │ └── types.go │ │ ├── common │ │ │ ├── BUILD.bazel │ │ │ ├── ast │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── ast.go │ │ │ │ ├── conversion.go │ │ │ │ ├── expr.go │ │ │ │ ├── factory.go │ │ │ │ └── navigable.go │ │ │ ├── containers │ │ │ │ ├── BUILD.bazel │ │ │ │ └── container.go │ │ │ ├── cost.go │ │ │ ├── debug │ │ │ │ ├── BUILD.bazel │ │ │ │ └── debug.go │ │ │ ├── decls │ │ │ │ ├── BUILD.bazel │ │ │ │ └── decls.go │ │ │ ├── doc.go │ │ │ ├── env │ │ │ │ ├── BUILD.bazel │ │ │ │ └── env.go │ │ │ ├── error.go │ │ │ ├── errors.go │ │ │ ├── functions │ │ │ │ ├── BUILD.bazel │ │ │ │ └── functions.go │ │ │ ├── location.go │ │ │ ├── operators │ │ │ │ ├── BUILD.bazel │ │ │ │ └── operators.go │ │ │ ├── overloads │ │ │ │ ├── BUILD.bazel │ │ │ │ └── overloads.go │ │ │ ├── runes │ │ │ │ ├── BUILD.bazel │ │ │ │ └── buffer.go │ │ │ ├── source.go │ │ │ ├── stdlib │ │ │ │ ├── BUILD.bazel │ │ │ │ └── standard.go │ │ │ └── types │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── any_value.go │ │ │ │ ├── bool.go │ │ │ │ ├── bytes.go │ │ │ │ ├── compare.go │ │ │ │ ├── doc.go │ │ │ │ ├── double.go │ │ │ │ ├── duration.go │ │ │ │ ├── err.go │ │ │ │ ├── format.go │ │ │ │ ├── int.go │ │ │ │ ├── iterator.go │ │ │ │ ├── json_value.go │ │ │ │ ├── list.go │ │ │ │ ├── map.go │ │ │ │ ├── null.go │ │ │ │ ├── object.go │ │ │ │ ├── optional.go │ │ │ │ ├── overflow.go │ │ │ │ ├── pb │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── checked.go │ │ │ │ ├── enum.go │ │ │ │ ├── equal.go │ │ │ │ ├── file.go │ │ │ │ ├── pb.go │ │ │ │ └── type.go │ │ │ │ ├── provider.go │ │ │ │ ├── ref │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── provider.go │ │ │ │ └── reference.go │ │ │ │ ├── string.go │ │ │ │ ├── timestamp.go │ │ │ │ ├── traits │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── comparer.go │ │ │ │ ├── container.go │ │ │ │ ├── field_tester.go │ │ │ │ ├── indexer.go │ │ │ │ ├── iterator.go │ │ │ │ ├── lister.go │ │ │ │ ├── mapper.go │ │ │ │ ├── matcher.go │ │ │ │ ├── math.go │ │ │ │ ├── receiver.go │ │ │ │ ├── sizer.go │ │ │ │ ├── traits.go │ │ │ │ └── zeroer.go │ │ │ │ ├── types.go │ │ │ │ ├── uint.go │ │ │ │ ├── unknown.go │ │ │ │ └── util.go │ │ ├── interpreter │ │ │ ├── BUILD.bazel │ │ │ ├── activation.go │ │ │ ├── attribute_patterns.go │ │ │ ├── attributes.go │ │ │ ├── decorators.go │ │ │ ├── dispatcher.go │ │ │ ├── evalstate.go │ │ │ ├── interpretable.go │ │ │ ├── interpreter.go │ │ │ ├── optimizations.go │ │ │ ├── planner.go │ │ │ ├── prune.go │ │ │ └── runtimecost.go │ │ └── parser │ │ │ ├── BUILD.bazel │ │ │ ├── errors.go │ │ │ ├── gen │ │ │ ├── BUILD.bazel │ │ │ ├── CEL.g4 │ │ │ ├── CEL.interp │ │ │ ├── CEL.tokens │ │ │ ├── CELLexer.interp │ │ │ ├── CELLexer.tokens │ │ │ ├── cel_base_listener.go │ │ │ ├── cel_base_visitor.go │ │ │ ├── cel_lexer.go │ │ │ ├── cel_listener.go │ │ │ ├── cel_parser.go │ │ │ ├── cel_visitor.go │ │ │ ├── doc.go │ │ │ └── generate.sh │ │ │ ├── helper.go │ │ │ ├── input.go │ │ │ ├── macro.go │ │ │ ├── options.go │ │ │ ├── parser.go │ │ │ ├── unescape.go │ │ │ └── unparser.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 │ │ │ ├── cmpopts │ │ │ ├── equate.go │ │ │ ├── ignore.go │ │ │ ├── sort.go │ │ │ ├── struct_filter.go │ │ │ └── xform.go │ │ │ ├── compare.go │ │ │ ├── export.go │ │ │ ├── internal │ │ │ ├── diff │ │ │ │ ├── debug_disable.go │ │ │ │ ├── debug_enable.go │ │ │ │ └── diff.go │ │ │ ├── flags │ │ │ │ └── flags.go │ │ │ ├── function │ │ │ │ └── func.go │ │ │ └── value │ │ │ │ ├── name.go │ │ │ │ ├── pointer.go │ │ │ │ └── sort.go │ │ │ ├── options.go │ │ │ ├── path.go │ │ │ ├── report.go │ │ │ ├── report_compare.go │ │ │ ├── report_references.go │ │ │ ├── report_reflect.go │ │ │ ├── report_slices.go │ │ │ ├── report_text.go │ │ │ └── report_value.go │ ├── go-containerregistry │ │ ├── LICENSE │ │ ├── internal │ │ │ ├── and │ │ │ │ └── and_closer.go │ │ │ ├── compression │ │ │ │ └── compression.go │ │ │ ├── estargz │ │ │ │ └── estargz.go │ │ │ ├── gzip │ │ │ │ └── zip.go │ │ │ ├── redact │ │ │ │ └── redact.go │ │ │ ├── retry │ │ │ │ ├── retry.go │ │ │ │ └── wait │ │ │ │ │ └── kubernetes_apimachinery_wait.go │ │ │ ├── verify │ │ │ │ └── verify.go │ │ │ └── zstd │ │ │ │ └── zstd.go │ │ └── pkg │ │ │ ├── authn │ │ │ ├── README.md │ │ │ ├── anon.go │ │ │ ├── auth.go │ │ │ ├── authn.go │ │ │ ├── basic.go │ │ │ ├── bearer.go │ │ │ ├── doc.go │ │ │ ├── k8schain │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── doc.go │ │ │ │ └── k8schain.go │ │ │ ├── keychain.go │ │ │ ├── kubernetes │ │ │ │ ├── LICENSE │ │ │ │ └── keychain.go │ │ │ └── multikeychain.go │ │ │ ├── compression │ │ │ └── compression.go │ │ │ ├── logs │ │ │ └── logs.go │ │ │ ├── name │ │ │ ├── README.md │ │ │ ├── check.go │ │ │ ├── digest.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── options.go │ │ │ ├── ref.go │ │ │ ├── registry.go │ │ │ ├── repository.go │ │ │ └── tag.go │ │ │ └── v1 │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── empty │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── image.go │ │ │ └── index.go │ │ │ ├── google │ │ │ ├── README.md │ │ │ ├── auth.go │ │ │ ├── doc.go │ │ │ ├── keychain.go │ │ │ ├── list.go │ │ │ └── options.go │ │ │ ├── hash.go │ │ │ ├── image.go │ │ │ ├── index.go │ │ │ ├── layer.go │ │ │ ├── manifest.go │ │ │ ├── match │ │ │ └── match.go │ │ │ ├── mutate │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── image.go │ │ │ ├── index.go │ │ │ ├── mutate.go │ │ │ └── rebase.go │ │ │ ├── partial │ │ │ ├── README.md │ │ │ ├── compressed.go │ │ │ ├── doc.go │ │ │ ├── image.go │ │ │ ├── index.go │ │ │ ├── uncompressed.go │ │ │ └── with.go │ │ │ ├── platform.go │ │ │ ├── progress.go │ │ │ ├── remote │ │ │ ├── README.md │ │ │ ├── catalog.go │ │ │ ├── check.go │ │ │ ├── delete.go │ │ │ ├── descriptor.go │ │ │ ├── doc.go │ │ │ ├── fetcher.go │ │ │ ├── image.go │ │ │ ├── index.go │ │ │ ├── layer.go │ │ │ ├── list.go │ │ │ ├── mount.go │ │ │ ├── multi_write.go │ │ │ ├── options.go │ │ │ ├── progress.go │ │ │ ├── puller.go │ │ │ ├── pusher.go │ │ │ ├── referrers.go │ │ │ ├── schema1.go │ │ │ ├── transport │ │ │ │ ├── README.md │ │ │ │ ├── basic.go │ │ │ │ ├── bearer.go │ │ │ │ ├── doc.go │ │ │ │ ├── error.go │ │ │ │ ├── logger.go │ │ │ │ ├── ping.go │ │ │ │ ├── retry.go │ │ │ │ ├── schemer.go │ │ │ │ ├── scope.go │ │ │ │ ├── transport.go │ │ │ │ └── useragent.go │ │ │ └── write.go │ │ │ ├── stream │ │ │ ├── README.md │ │ │ └── layer.go │ │ │ ├── tarball │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── image.go │ │ │ ├── layer.go │ │ │ └── write.go │ │ │ ├── types │ │ │ └── types.go │ │ │ └── zz_deepcopy_generated.go │ ├── go-replayers │ │ └── httpreplay │ │ │ ├── LICENSE │ │ │ ├── google │ │ │ └── google.go │ │ │ ├── httpreplay.go │ │ │ └── internal │ │ │ └── proxy │ │ │ ├── converter.go │ │ │ ├── debug.go │ │ │ ├── log.go │ │ │ ├── record.go │ │ │ └── replay.go │ ├── gofuzz │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bytesource │ │ │ └── bytesource.go │ │ ├── doc.go │ │ └── fuzz.go │ ├── martian │ │ └── v3 │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── context.go │ │ │ ├── fifo │ │ │ └── fifo_group.go │ │ │ ├── filter │ │ │ ├── condition.go │ │ │ └── filter.go │ │ │ ├── h2 │ │ │ ├── h2.go │ │ │ ├── processor.go │ │ │ ├── queued_frames.go │ │ │ └── relay.go │ │ │ ├── header │ │ │ ├── copy_modifier.go │ │ │ ├── forwarded_modifier.go │ │ │ ├── framing_modifier.go │ │ │ ├── header_append_modifier.go │ │ │ ├── header_blacklist_modifier.go │ │ │ ├── header_filter.go │ │ │ ├── header_matcher.go │ │ │ ├── header_modifier.go │ │ │ ├── header_value_regex_filter.go │ │ │ ├── header_verifier.go │ │ │ ├── hopbyhop_modifier.go │ │ │ ├── id_modifier.go │ │ │ └── via_modifier.go │ │ │ ├── httpspec │ │ │ └── httpspec.go │ │ │ ├── log │ │ │ └── log.go │ │ │ ├── martian.go │ │ │ ├── martianlog │ │ │ └── logger.go │ │ │ ├── messageview │ │ │ └── messageview.go │ │ │ ├── mitm │ │ │ └── mitm.go │ │ │ ├── multierror.go │ │ │ ├── noop.go │ │ │ ├── nosigpipe │ │ │ ├── nosigpipe.go │ │ │ └── nosigpipe_darwin.go │ │ │ ├── parse │ │ │ └── parse.go │ │ │ ├── proxy.go │ │ │ ├── proxyutil │ │ │ ├── header.go │ │ │ └── proxyutil.go │ │ │ ├── trafficshape │ │ │ ├── bucket.go │ │ │ ├── conn.go │ │ │ ├── doc.go │ │ │ ├── handler.go │ │ │ ├── listener.go │ │ │ └── utils.go │ │ │ └── verify │ │ │ ├── verify.go │ │ │ └── verify_handlers.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 │ └── wire │ │ ├── .codecov.yml │ │ ├── .contributebot │ │ ├── .gitattributes │ │ ├── AUTHORS │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ └── wire.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 ├── gorilla │ ├── mux │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── doc.go │ │ ├── middleware.go │ │ ├── mux.go │ │ ├── regexp.go │ │ ├── route.go │ │ └── test_helpers.go │ └── websocket │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── client.go │ │ ├── compression.go │ │ ├── conn.go │ │ ├── doc.go │ │ ├── join.go │ │ ├── json.go │ │ ├── mask.go │ │ ├── mask_safe.go │ │ ├── prepared.go │ │ ├── proxy.go │ │ ├── server.go │ │ ├── tls_handshake.go │ │ ├── tls_handshake_116.go │ │ ├── util.go │ │ └── x_net_proxy.go ├── gregjones │ └── httpcache │ │ ├── .travis.yml │ │ ├── LICENSE.txt │ │ ├── README.md │ │ └── httpcache.go ├── grpc-ecosystem │ ├── go-grpc-middleware │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── auth │ │ │ ├── auth.go │ │ │ ├── doc.go │ │ │ └── metadata.go │ │ ├── chain.go │ │ ├── doc.go │ │ ├── logging │ │ │ ├── common.go │ │ │ ├── doc.go │ │ │ ├── settable │ │ │ │ ├── doc.go │ │ │ │ └── logsettable.go │ │ │ └── zap │ │ │ │ ├── client_interceptors.go │ │ │ │ ├── context.go │ │ │ │ ├── ctxzap │ │ │ │ ├── context.go │ │ │ │ └── doc.go │ │ │ │ ├── doc.go │ │ │ │ ├── grpclogger.go │ │ │ │ ├── options.go │ │ │ │ ├── payload_interceptors.go │ │ │ │ └── server_interceptors.go │ │ ├── makefile │ │ ├── slack.png │ │ ├── tags │ │ │ ├── context.go │ │ │ ├── doc.go │ │ │ ├── fieldextractor.go │ │ │ ├── interceptors.go │ │ │ └── options.go │ │ ├── util │ │ │ └── metautils │ │ │ │ ├── doc.go │ │ │ │ └── nicemd.go │ │ ├── v2 │ │ │ ├── COPYRIGHT │ │ │ ├── LICENSE │ │ │ └── interceptors │ │ │ │ └── recovery │ │ │ │ ├── doc.go │ │ │ │ ├── interceptors.go │ │ │ │ └── options.go │ │ └── wrappers.go │ ├── go-grpc-prometheus │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── client.go │ │ ├── client_metrics.go │ │ ├── client_reporter.go │ │ ├── makefile │ │ ├── metric_options.go │ │ ├── server.go │ │ ├── server_metrics.go │ │ ├── server_reporter.go │ │ └── util.go │ └── grpc-gateway │ │ └── v2 │ │ ├── LICENSE │ │ ├── internal │ │ └── httprule │ │ │ ├── BUILD.bazel │ │ │ ├── compile.go │ │ │ ├── fuzz.go │ │ │ ├── parse.go │ │ │ └── types.go │ │ ├── runtime │ │ ├── BUILD.bazel │ │ ├── context.go │ │ ├── convert.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── fieldmask.go │ │ ├── handler.go │ │ ├── marshal_httpbodyproto.go │ │ ├── marshal_json.go │ │ ├── marshal_jsonpb.go │ │ ├── marshal_proto.go │ │ ├── marshaler.go │ │ ├── marshaler_registry.go │ │ ├── mux.go │ │ ├── pattern.go │ │ ├── proto2_convert.go │ │ └── query.go │ │ └── utilities │ │ ├── BUILD.bazel │ │ ├── doc.go │ │ ├── pattern.go │ │ ├── readerfactory.go │ │ ├── string_array_flag.go │ │ └── trie.go ├── hako │ └── durafmt │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── durafmt.go │ │ └── unit.go ├── hashicorp │ └── golang-lru │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── 2q.go │ │ ├── LICENSE │ │ ├── README.md │ │ ├── arc.go │ │ ├── doc.go │ │ ├── lru.go │ │ ├── simplelru │ │ ├── lru.go │ │ └── lru_interface.go │ │ └── testing.go ├── imdario │ └── 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 ├── inconshreveable │ └── mousetrap │ │ ├── LICENSE │ │ ├── README.md │ │ ├── trap_others.go │ │ └── trap_windows.go ├── jackc │ ├── chunkreader │ │ └── v2 │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── chunkreader.go │ ├── pgconn │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── auth_scram.go │ │ ├── config.go │ │ ├── defaults.go │ │ ├── defaults_windows.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── internal │ │ │ └── ctxwatch │ │ │ │ └── context_watcher.go │ │ ├── krb5.go │ │ └── pgconn.go │ ├── pgio │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ └── write.go │ ├── pgpassfile │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── pgpass.go │ ├── pgproto3 │ │ └── v2 │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── authentication_cleartext_password.go │ │ │ ├── authentication_gss.go │ │ │ ├── authentication_gss_continue.go │ │ │ ├── authentication_md5_password.go │ │ │ ├── authentication_ok.go │ │ │ ├── authentication_sasl.go │ │ │ ├── authentication_sasl_continue.go │ │ │ ├── authentication_sasl_final.go │ │ │ ├── backend.go │ │ │ ├── backend_key_data.go │ │ │ ├── big_endian.go │ │ │ ├── bind.go │ │ │ ├── bind_complete.go │ │ │ ├── cancel_request.go │ │ │ ├── chunkreader.go │ │ │ ├── close.go │ │ │ ├── close_complete.go │ │ │ ├── command_complete.go │ │ │ ├── copy_both_response.go │ │ │ ├── copy_data.go │ │ │ ├── copy_done.go │ │ │ ├── copy_fail.go │ │ │ ├── copy_in_response.go │ │ │ ├── copy_out_response.go │ │ │ ├── data_row.go │ │ │ ├── describe.go │ │ │ ├── doc.go │ │ │ ├── empty_query_response.go │ │ │ ├── error_response.go │ │ │ ├── execute.go │ │ │ ├── flush.go │ │ │ ├── frontend.go │ │ │ ├── function_call.go │ │ │ ├── function_call_response.go │ │ │ ├── gss_enc_request.go │ │ │ ├── gss_response.go │ │ │ ├── no_data.go │ │ │ ├── notice_response.go │ │ │ ├── notification_response.go │ │ │ ├── parameter_description.go │ │ │ ├── parameter_status.go │ │ │ ├── parse.go │ │ │ ├── parse_complete.go │ │ │ ├── password_message.go │ │ │ ├── pgproto3.go │ │ │ ├── portal_suspended.go │ │ │ ├── query.go │ │ │ ├── ready_for_query.go │ │ │ ├── row_description.go │ │ │ ├── sasl_initial_response.go │ │ │ ├── sasl_response.go │ │ │ ├── ssl_request.go │ │ │ ├── startup_message.go │ │ │ ├── sync.go │ │ │ └── terminate.go │ ├── pgservicefile │ │ ├── LICENSE │ │ ├── README.md │ │ └── pgservicefile.go │ ├── pgx │ │ └── v5 │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── batch.go │ │ │ ├── conn.go │ │ │ ├── copy_from.go │ │ │ ├── derived_types.go │ │ │ ├── doc.go │ │ │ ├── extended_query_builder.go │ │ │ ├── internal │ │ │ ├── iobufpool │ │ │ │ └── iobufpool.go │ │ │ ├── pgio │ │ │ │ ├── README.md │ │ │ │ ├── doc.go │ │ │ │ └── write.go │ │ │ ├── sanitize │ │ │ │ ├── benchmmark.sh │ │ │ │ └── sanitize.go │ │ │ └── stmtcache │ │ │ │ ├── lru_cache.go │ │ │ │ ├── stmtcache.go │ │ │ │ └── unlimited_cache.go │ │ │ ├── large_objects.go │ │ │ ├── named_args.go │ │ │ ├── pgconn │ │ │ ├── README.md │ │ │ ├── auth_scram.go │ │ │ ├── config.go │ │ │ ├── ctxwatch │ │ │ │ └── context_watcher.go │ │ │ ├── defaults.go │ │ │ ├── defaults_windows.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── internal │ │ │ │ └── bgreader │ │ │ │ │ └── bgreader.go │ │ │ ├── krb5.go │ │ │ └── pgconn.go │ │ │ ├── pgproto3 │ │ │ ├── README.md │ │ │ ├── authentication_cleartext_password.go │ │ │ ├── authentication_gss.go │ │ │ ├── authentication_gss_continue.go │ │ │ ├── authentication_md5_password.go │ │ │ ├── authentication_ok.go │ │ │ ├── authentication_sasl.go │ │ │ ├── authentication_sasl_continue.go │ │ │ ├── authentication_sasl_final.go │ │ │ ├── backend.go │ │ │ ├── backend_key_data.go │ │ │ ├── big_endian.go │ │ │ ├── bind.go │ │ │ ├── bind_complete.go │ │ │ ├── cancel_request.go │ │ │ ├── chunkreader.go │ │ │ ├── close.go │ │ │ ├── close_complete.go │ │ │ ├── command_complete.go │ │ │ ├── copy_both_response.go │ │ │ ├── copy_data.go │ │ │ ├── copy_done.go │ │ │ ├── copy_fail.go │ │ │ ├── copy_in_response.go │ │ │ ├── copy_out_response.go │ │ │ ├── data_row.go │ │ │ ├── describe.go │ │ │ ├── doc.go │ │ │ ├── empty_query_response.go │ │ │ ├── error_response.go │ │ │ ├── execute.go │ │ │ ├── flush.go │ │ │ ├── frontend.go │ │ │ ├── function_call.go │ │ │ ├── function_call_response.go │ │ │ ├── gss_enc_request.go │ │ │ ├── gss_response.go │ │ │ ├── no_data.go │ │ │ ├── notice_response.go │ │ │ ├── notification_response.go │ │ │ ├── parameter_description.go │ │ │ ├── parameter_status.go │ │ │ ├── parse.go │ │ │ ├── parse_complete.go │ │ │ ├── password_message.go │ │ │ ├── pgproto3.go │ │ │ ├── portal_suspended.go │ │ │ ├── query.go │ │ │ ├── ready_for_query.go │ │ │ ├── row_description.go │ │ │ ├── sasl_initial_response.go │ │ │ ├── sasl_response.go │ │ │ ├── ssl_request.go │ │ │ ├── startup_message.go │ │ │ ├── sync.go │ │ │ ├── terminate.go │ │ │ └── trace.go │ │ │ ├── pgtype │ │ │ ├── array.go │ │ │ ├── array_codec.go │ │ │ ├── bits.go │ │ │ ├── bool.go │ │ │ ├── box.go │ │ │ ├── builtin_wrappers.go │ │ │ ├── bytea.go │ │ │ ├── circle.go │ │ │ ├── composite.go │ │ │ ├── convert.go │ │ │ ├── date.go │ │ │ ├── doc.go │ │ │ ├── enum_codec.go │ │ │ ├── float4.go │ │ │ ├── float8.go │ │ │ ├── hstore.go │ │ │ ├── inet.go │ │ │ ├── int.go │ │ │ ├── int.go.erb │ │ │ ├── int_test.go.erb │ │ │ ├── integration_benchmark_test.go.erb │ │ │ ├── integration_benchmark_test_gen.sh │ │ │ ├── interval.go │ │ │ ├── json.go │ │ │ ├── jsonb.go │ │ │ ├── line.go │ │ │ ├── lseg.go │ │ │ ├── ltree.go │ │ │ ├── macaddr.go │ │ │ ├── multirange.go │ │ │ ├── numeric.go │ │ │ ├── path.go │ │ │ ├── pgtype.go │ │ │ ├── pgtype_default.go │ │ │ ├── point.go │ │ │ ├── polygon.go │ │ │ ├── qchar.go │ │ │ ├── range.go │ │ │ ├── range_codec.go │ │ │ ├── record_codec.go │ │ │ ├── register_default_pg_types.go │ │ │ ├── register_default_pg_types_disabled.go │ │ │ ├── text.go │ │ │ ├── text_format_only_codec.go │ │ │ ├── tid.go │ │ │ ├── time.go │ │ │ ├── timestamp.go │ │ │ ├── timestamptz.go │ │ │ ├── uint32.go │ │ │ ├── uint64.go │ │ │ ├── uuid.go │ │ │ └── xml.go │ │ │ ├── pgxpool │ │ │ ├── batch_results.go │ │ │ ├── conn.go │ │ │ ├── doc.go │ │ │ ├── pool.go │ │ │ ├── rows.go │ │ │ ├── stat.go │ │ │ ├── tracer.go │ │ │ └── tx.go │ │ │ ├── rows.go │ │ │ ├── stdlib │ │ │ └── sql.go │ │ │ ├── tracer.go │ │ │ ├── tx.go │ │ │ └── values.go │ └── puddle │ │ └── v2 │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── context.go │ │ ├── doc.go │ │ ├── internal │ │ └── genstack │ │ │ ├── gen_stack.go │ │ │ └── stack.go │ │ ├── log.go │ │ ├── nanotime.go │ │ ├── pool.go │ │ └── resource_list.go ├── jinzhu │ ├── inflection │ │ ├── LICENSE │ │ ├── README.md │ │ ├── inflections.go │ │ └── wercker.yml │ └── now │ │ ├── Guardfile │ │ ├── License │ │ ├── README.md │ │ ├── main.go │ │ ├── now.go │ │ └── time.go ├── jmespath │ └── go-jmespath │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── NOTICE │ │ ├── README.md │ │ ├── api.go │ │ ├── astnodetype_string.go │ │ ├── functions.go │ │ ├── interpreter.go │ │ ├── lexer.go │ │ ├── parser.go │ │ ├── toktype_string.go │ │ └── util.go ├── jonboulle │ └── clockwork │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── clockwork.go │ │ ├── context.go │ │ ├── ticker.go │ │ └── timer.go ├── josharian │ └── intern │ │ ├── README.md │ │ ├── intern.go │ │ └── license.md ├── json-iterator │ └── go │ │ ├── .codecov.yml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── adapter.go │ │ ├── any.go │ │ ├── any_array.go │ │ ├── any_bool.go │ │ ├── any_float.go │ │ ├── any_int32.go │ │ ├── any_int64.go │ │ ├── any_invalid.go │ │ ├── any_nil.go │ │ ├── any_number.go │ │ ├── any_object.go │ │ ├── any_str.go │ │ ├── any_uint32.go │ │ ├── any_uint64.go │ │ ├── build.sh │ │ ├── config.go │ │ ├── fuzzy_mode_convert_table.md │ │ ├── iter.go │ │ ├── iter_array.go │ │ ├── iter_float.go │ │ ├── iter_int.go │ │ ├── iter_object.go │ │ ├── iter_skip.go │ │ ├── iter_skip_sloppy.go │ │ ├── iter_skip_strict.go │ │ ├── iter_str.go │ │ ├── jsoniter.go │ │ ├── pool.go │ │ ├── reflect.go │ │ ├── reflect_array.go │ │ ├── reflect_dynamic.go │ │ ├── reflect_extension.go │ │ ├── reflect_json_number.go │ │ ├── reflect_json_raw_message.go │ │ ├── reflect_map.go │ │ ├── reflect_marshaler.go │ │ ├── reflect_native.go │ │ ├── reflect_optional.go │ │ ├── reflect_slice.go │ │ ├── reflect_struct_decoder.go │ │ ├── reflect_struct_encoder.go │ │ ├── stream.go │ │ ├── stream_float.go │ │ ├── stream_int.go │ │ ├── stream_str.go │ │ └── test.sh ├── kballard │ └── go-shellquote │ │ ├── LICENSE │ │ ├── README │ │ ├── doc.go │ │ ├── quote.go │ │ └── unquote.go ├── kelseyhightower │ └── envconfig │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── README.md │ │ ├── doc.go │ │ ├── env_os.go │ │ ├── env_syscall.go │ │ ├── envconfig.go │ │ └── usage.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 ├── ktr0731 │ ├── go-ansisgr │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ └── sgr.go │ └── go-fuzzyfinder │ │ ├── .gitignore │ │ ├── .goreleaser.yml │ │ ├── CREDITS │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── codecov.yml │ │ ├── fuzzyfinder.go │ │ ├── matching │ │ └── matching.go │ │ ├── mock.go │ │ ├── option.go │ │ ├── scoring │ │ ├── scoring.go │ │ └── smith_waterman.go │ │ └── tcell.go ├── letsencrypt │ └── boulder │ │ ├── LICENSE.txt │ │ ├── core │ │ ├── challenges.go │ │ ├── interfaces.go │ │ ├── objects.go │ │ └── util.go │ │ ├── goodkey │ │ ├── blocked.go │ │ ├── good_key.go │ │ └── weak.go │ │ ├── identifier │ │ └── identifier.go │ │ ├── probs │ │ └── probs.go │ │ ├── revocation │ │ └── reasons.go │ │ └── strictyaml │ │ └── yaml.go ├── liggitt │ └── tabwriter │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── tabwriter.go ├── lucasb-eyer │ └── go-colorful │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── colorgens.go │ │ ├── colors.go │ │ ├── happy_palettegen.go │ │ ├── hexcolor.go │ │ ├── hsluv-snapshot-rev4.json │ │ ├── hsluv.go │ │ ├── soft_palettegen.go │ │ └── warm_palettegen.go ├── mailru │ └── easyjson │ │ ├── LICENSE │ │ ├── buffer │ │ └── pool.go │ │ ├── jlexer │ │ ├── bytestostr.go │ │ ├── bytestostr_nounsafe.go │ │ ├── error.go │ │ └── lexer.go │ │ └── jwriter │ │ └── writer.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 │ └── go-sqlite3 │ │ ├── .codecov.yml │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── backup.go │ │ ├── callback.go │ │ ├── convert.go │ │ ├── doc.go │ │ ├── error.go │ │ ├── sqlite3-binding.c │ │ ├── sqlite3-binding.h │ │ ├── sqlite3.go │ │ ├── sqlite3_context.go │ │ ├── sqlite3_func_crypt.go │ │ ├── sqlite3_go18.go │ │ ├── sqlite3_libsqlite3.go │ │ ├── sqlite3_load_extension.go │ │ ├── sqlite3_load_extension_omit.go │ │ ├── sqlite3_opt_allow_uri_authority.go │ │ ├── sqlite3_opt_app_armor.go │ │ ├── sqlite3_opt_column_metadata.go │ │ ├── sqlite3_opt_foreign_keys.go │ │ ├── sqlite3_opt_fts5.go │ │ ├── sqlite3_opt_icu.go │ │ ├── sqlite3_opt_introspect.go │ │ ├── sqlite3_opt_math_functions.go │ │ ├── sqlite3_opt_os_trace.go │ │ ├── sqlite3_opt_preupdate.go │ │ ├── sqlite3_opt_preupdate_hook.go │ │ ├── sqlite3_opt_preupdate_omit.go │ │ ├── sqlite3_opt_secure_delete.go │ │ ├── sqlite3_opt_secure_delete_fast.go │ │ ├── sqlite3_opt_serialize.go │ │ ├── sqlite3_opt_serialize_omit.go │ │ ├── sqlite3_opt_stat4.go │ │ ├── sqlite3_opt_unlock_notify.c │ │ ├── sqlite3_opt_unlock_notify.go │ │ ├── sqlite3_opt_userauth.go │ │ ├── sqlite3_opt_userauth_omit.go │ │ ├── sqlite3_opt_vacuum_full.go │ │ ├── sqlite3_opt_vacuum_incr.go │ │ ├── sqlite3_opt_vtable.go │ │ ├── sqlite3_other.go │ │ ├── sqlite3_solaris.go │ │ ├── sqlite3_trace.go │ │ ├── sqlite3_type.go │ │ ├── sqlite3_usleep_windows.go │ │ ├── sqlite3_windows.go │ │ ├── sqlite3ext.h │ │ └── static_mock.go ├── mgutz │ └── ansi │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── ansi.go │ │ ├── doc.go │ │ └── print.go ├── mitchellh │ └── go-homedir │ │ ├── LICENSE │ │ ├── README.md │ │ └── homedir.go ├── moby │ ├── spdystream │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── NOTICE │ │ ├── README.md │ │ ├── connection.go │ │ ├── handlers.go │ │ ├── priority.go │ │ ├── spdy │ │ │ ├── dictionary.go │ │ │ ├── read.go │ │ │ ├── types.go │ │ │ └── write.go │ │ ├── stream.go │ │ └── utils.go │ └── 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 ├── munnerz │ └── goautoneg │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.txt │ │ └── autoneg.go ├── mxk │ └── go-flowrate │ │ ├── LICENSE │ │ └── flowrate │ │ ├── flowrate.go │ │ ├── io.go │ │ └── util.go ├── nsf │ └── termbox-go │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── api.go │ │ ├── api_common.go │ │ ├── api_windows.go │ │ ├── collect_terminfo.py │ │ ├── escwait.go │ │ ├── escwait_darwin.go │ │ ├── syscalls_darwin.go │ │ ├── syscalls_darwin_amd64.go │ │ ├── syscalls_dragonfly.go │ │ ├── syscalls_freebsd.go │ │ ├── syscalls_linux.go │ │ ├── syscalls_netbsd.go │ │ ├── syscalls_openbsd.go │ │ ├── syscalls_windows.go │ │ ├── termbox.go │ │ ├── termbox_common.go │ │ ├── termbox_windows.go │ │ ├── terminfo.go │ │ └── terminfo_builtin.go ├── opencontainers │ ├── go-digest │ │ ├── .mailmap │ │ ├── .pullapprove.yml │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── LICENSE.docs │ │ ├── MAINTAINERS │ │ ├── README.md │ │ ├── algorithm.go │ │ ├── digest.go │ │ ├── digester.go │ │ ├── doc.go │ │ └── verifiers.go │ └── image-spec │ │ ├── LICENSE │ │ └── specs-go │ │ ├── v1 │ │ ├── annotations.go │ │ ├── config.go │ │ ├── descriptor.go │ │ ├── index.go │ │ ├── layout.go │ │ ├── manifest.go │ │ └── mediatype.go │ │ ├── version.go │ │ └── versioned.go ├── openzipkin │ └── zipkin-go │ │ ├── LICENSE │ │ └── model │ │ ├── annotation.go │ │ ├── doc.go │ │ ├── endpoint.go │ │ ├── kind.go │ │ ├── span.go │ │ ├── span_id.go │ │ └── traceid.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 ├── prometheus │ ├── client_golang │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── internal │ │ │ └── github.com │ │ │ │ └── golang │ │ │ │ └── gddo │ │ │ │ ├── LICENSE │ │ │ │ └── httputil │ │ │ │ ├── header │ │ │ │ └── header.go │ │ │ │ └── negotiate.go │ │ └── prometheus │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── build_info_collector.go │ │ │ ├── collector.go │ │ │ ├── collectorfunc.go │ │ │ ├── counter.go │ │ │ ├── desc.go │ │ │ ├── doc.go │ │ │ ├── expvar_collector.go │ │ │ ├── fnv.go │ │ │ ├── gauge.go │ │ │ ├── get_pid.go │ │ │ ├── get_pid_gopherjs.go │ │ │ ├── go_collector.go │ │ │ ├── go_collector_go116.go │ │ │ ├── go_collector_latest.go │ │ │ ├── histogram.go │ │ │ ├── internal │ │ │ ├── almost_equal.go │ │ │ ├── difflib.go │ │ │ ├── go_collector_options.go │ │ │ ├── go_runtime_metrics.go │ │ │ └── metric.go │ │ │ ├── labels.go │ │ │ ├── metric.go │ │ │ ├── num_threads.go │ │ │ ├── num_threads_gopherjs.go │ │ │ ├── observer.go │ │ │ ├── process_collector.go │ │ │ ├── process_collector_darwin.go │ │ │ ├── process_collector_mem_cgo_darwin.c │ │ │ ├── process_collector_mem_cgo_darwin.go │ │ │ ├── process_collector_mem_nocgo_darwin.go │ │ │ ├── process_collector_not_supported.go │ │ │ ├── process_collector_procfsenabled.go │ │ │ ├── process_collector_windows.go │ │ │ ├── promhttp │ │ │ ├── delegator.go │ │ │ ├── http.go │ │ │ ├── instrument_client.go │ │ │ ├── instrument_server.go │ │ │ ├── internal │ │ │ │ └── compression.go │ │ │ └── option.go │ │ │ ├── registry.go │ │ │ ├── summary.go │ │ │ ├── timer.go │ │ │ ├── untyped.go │ │ │ ├── value.go │ │ │ ├── vec.go │ │ │ ├── vnext.go │ │ │ └── wrap.go │ ├── client_model │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── go │ │ │ └── metrics.pb.go │ ├── common │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── expfmt │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── expfmt.go │ │ │ ├── fuzz.go │ │ │ ├── openmetrics_create.go │ │ │ ├── text_create.go │ │ │ └── text_parse.go │ │ └── model │ │ │ ├── alert.go │ │ │ ├── fingerprinting.go │ │ │ ├── fnv.go │ │ │ ├── labels.go │ │ │ ├── labelset.go │ │ │ ├── labelset_string.go │ │ │ ├── metadata.go │ │ │ ├── metric.go │ │ │ ├── model.go │ │ │ ├── signature.go │ │ │ ├── silence.go │ │ │ ├── time.go │ │ │ ├── value.go │ │ │ ├── value_float.go │ │ │ ├── value_histogram.go │ │ │ └── value_type.go │ ├── procfs │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS.md │ │ ├── Makefile │ │ ├── Makefile.common │ │ ├── NOTICE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── arp.go │ │ ├── buddyinfo.go │ │ ├── cmdline.go │ │ ├── cpuinfo.go │ │ ├── cpuinfo_armx.go │ │ ├── cpuinfo_loong64.go │ │ ├── cpuinfo_mipsx.go │ │ ├── cpuinfo_others.go │ │ ├── cpuinfo_ppcx.go │ │ ├── cpuinfo_riscvx.go │ │ ├── cpuinfo_s390x.go │ │ ├── cpuinfo_x86.go │ │ ├── crypto.go │ │ ├── doc.go │ │ ├── fs.go │ │ ├── fs_statfs_notype.go │ │ ├── fs_statfs_type.go │ │ ├── fscache.go │ │ ├── internal │ │ │ ├── fs │ │ │ │ └── fs.go │ │ │ └── util │ │ │ │ ├── parse.go │ │ │ │ ├── readfile.go │ │ │ │ ├── sysreadfile.go │ │ │ │ ├── sysreadfile_compat.go │ │ │ │ └── valueparser.go │ │ ├── ipvs.go │ │ ├── kernel_random.go │ │ ├── loadavg.go │ │ ├── mdstat.go │ │ ├── meminfo.go │ │ ├── mountinfo.go │ │ ├── mountstats.go │ │ ├── net_conntrackstat.go │ │ ├── net_dev.go │ │ ├── net_dev_snmp6.go │ │ ├── net_ip_socket.go │ │ ├── net_protocols.go │ │ ├── net_route.go │ │ ├── net_sockstat.go │ │ ├── net_softnet.go │ │ ├── net_tcp.go │ │ ├── net_tls_stat.go │ │ ├── net_udp.go │ │ ├── net_unix.go │ │ ├── net_wireless.go │ │ ├── net_xfrm.go │ │ ├── netstat.go │ │ ├── proc.go │ │ ├── proc_cgroup.go │ │ ├── proc_cgroups.go │ │ ├── proc_environ.go │ │ ├── proc_fdinfo.go │ │ ├── proc_interrupts.go │ │ ├── proc_io.go │ │ ├── proc_limits.go │ │ ├── proc_maps.go │ │ ├── proc_netstat.go │ │ ├── proc_ns.go │ │ ├── proc_psi.go │ │ ├── proc_smaps.go │ │ ├── proc_snmp.go │ │ ├── proc_snmp6.go │ │ ├── proc_stat.go │ │ ├── proc_status.go │ │ ├── proc_sys.go │ │ ├── schedstat.go │ │ ├── slab.go │ │ ├── softirqs.go │ │ ├── stat.go │ │ ├── swaps.go │ │ ├── thread.go │ │ ├── ttar │ │ ├── vm.go │ │ └── zoneinfo.go │ └── statsd_exporter │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── pkg │ │ ├── level │ │ └── level.go │ │ └── mapper │ │ ├── action.go │ │ ├── escape.go │ │ ├── fsm │ │ ├── README.md │ │ ├── dump.go │ │ ├── formatter.go │ │ ├── fsm.go │ │ ├── fsm.png │ │ └── minmax.go │ │ ├── mapper.go │ │ ├── mapper_cache.go │ │ ├── mapper_defaults.go │ │ ├── mapping.go │ │ ├── match.go │ │ ├── metric_type.go │ │ └── observer.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 ├── robfig │ └── cron │ │ └── v3 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── chain.go │ │ ├── constantdelay.go │ │ ├── cron.go │ │ ├── doc.go │ │ ├── logger.go │ │ ├── option.go │ │ ├── parser.go │ │ └── spec.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 ├── sagikazarmark │ └── locafero │ │ ├── .editorconfig │ │ ├── .envrc │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── file_type.go │ │ ├── finder.go │ │ ├── flake.lock │ │ ├── flake.nix │ │ ├── glob.go │ │ ├── glob_windows.go │ │ ├── helpers.go │ │ └── justfile ├── secure-systems-lab │ └── go-securesystemslib │ │ ├── LICENSE │ │ └── encrypted │ │ └── encrypted.go ├── sigstore │ ├── protobuf-specs │ │ ├── COPYRIGHT.txt │ │ ├── LICENSE │ │ └── gen │ │ │ └── pb-go │ │ │ └── common │ │ │ └── v1 │ │ │ └── sigstore_common.pb.go │ └── sigstore │ │ ├── COPYRIGHT.txt │ │ ├── LICENSE │ │ └── pkg │ │ ├── cryptoutils │ │ ├── certificate.go │ │ ├── doc.go │ │ ├── generic.go │ │ ├── password.go │ │ ├── privatekey.go │ │ ├── publickey.go │ │ └── sans.go │ │ └── signature │ │ ├── algorithm_registry.go │ │ ├── doc.go │ │ ├── ecdsa.go │ │ ├── ed25519.go │ │ ├── ed25519ph.go │ │ ├── message.go │ │ ├── options.go │ │ ├── options │ │ ├── context.go │ │ ├── digest.go │ │ ├── doc.go │ │ ├── keyversion.go │ │ ├── loadoptions.go │ │ ├── noop.go │ │ ├── rand.go │ │ ├── remoteverification.go │ │ ├── rpcauth.go │ │ └── signeropts.go │ │ ├── payload │ │ ├── doc.go │ │ └── payload.go │ │ ├── publickey.go │ │ ├── rsapkcs1v15.go │ │ ├── rsapss.go │ │ ├── signer.go │ │ ├── signerverifier.go │ │ ├── util.go │ │ └── verifier.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 ├── sourcegraph │ └── conc │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── panics │ │ ├── panics.go │ │ └── try.go │ │ ├── pool │ │ ├── context_pool.go │ │ ├── error_pool.go │ │ ├── pool.go │ │ ├── result_context_pool.go │ │ ├── result_error_pool.go │ │ └── result_pool.go │ │ └── waitgroup.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 │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── alias.go │ │ ├── basic.go │ │ ├── cast.go │ │ ├── indirect.go │ │ ├── internal │ │ │ ├── time.go │ │ │ └── timeformattype_string.go │ │ ├── map.go │ │ ├── number.go │ │ ├── slice.go │ │ ├── time.go │ │ └── zz_generated.go │ ├── cobra │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .mailmap │ │ ├── CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.txt │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README.md │ │ ├── SECURITY.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_func.go │ │ ├── bool_slice.go │ │ ├── bytes.go │ │ ├── count.go │ │ ├── duration.go │ │ ├── duration_slice.go │ │ ├── errors.go │ │ ├── flag.go │ │ ├── float32.go │ │ ├── float32_slice.go │ │ ├── float64.go │ │ ├── float64_slice.go │ │ ├── func.go │ │ ├── golangflag.go │ │ ├── int.go │ │ ├── int16.go │ │ ├── int32.go │ │ ├── int32_slice.go │ │ ├── int64.go │ │ ├── int64_slice.go │ │ ├── int8.go │ │ ├── int_slice.go │ │ ├── ip.go │ │ ├── ip_slice.go │ │ ├── ipmask.go │ │ ├── ipnet.go │ │ ├── ipnet_slice.go │ │ ├── string.go │ │ ├── string_array.go │ │ ├── string_slice.go │ │ ├── string_to_int.go │ │ ├── string_to_int64.go │ │ ├── string_to_string.go │ │ ├── text.go │ │ ├── time.go │ │ ├── uint.go │ │ ├── uint16.go │ │ ├── uint32.go │ │ ├── uint64.go │ │ ├── uint8.go │ │ └── uint_slice.go │ └── viper │ │ ├── .editorconfig │ │ ├── .envrc │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── .yamlignore │ │ ├── .yamllint.yaml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── TROUBLESHOOTING.md │ │ ├── UPGRADE.md │ │ ├── encoding.go │ │ ├── experimental.go │ │ ├── file.go │ │ ├── finder.go │ │ ├── flags.go │ │ ├── flake.lock │ │ ├── flake.nix │ │ ├── internal │ │ ├── encoding │ │ │ ├── dotenv │ │ │ │ ├── codec.go │ │ │ │ └── map_utils.go │ │ │ ├── json │ │ │ │ └── codec.go │ │ │ ├── toml │ │ │ │ └── codec.go │ │ │ └── yaml │ │ │ │ └── codec.go │ │ └── features │ │ │ ├── bind_struct.go │ │ │ ├── bind_struct_default.go │ │ │ ├── finder.go │ │ │ └── finder_default.go │ │ ├── logger.go │ │ ├── remote.go │ │ ├── util.go │ │ └── viper.go ├── spiffe │ ├── go-spiffe │ │ └── v2 │ │ │ ├── LICENSE │ │ │ ├── bundle │ │ │ ├── jwtbundle │ │ │ │ ├── bundle.go │ │ │ │ ├── doc.go │ │ │ │ ├── set.go │ │ │ │ └── source.go │ │ │ ├── spiffebundle │ │ │ │ ├── bundle.go │ │ │ │ ├── doc.go │ │ │ │ ├── set.go │ │ │ │ └── source.go │ │ │ └── x509bundle │ │ │ │ ├── bundle.go │ │ │ │ ├── doc.go │ │ │ │ ├── set.go │ │ │ │ └── source.go │ │ │ ├── internal │ │ │ ├── cryptoutil │ │ │ │ └── keys.go │ │ │ ├── jwtutil │ │ │ │ └── util.go │ │ │ ├── pemutil │ │ │ │ └── pem.go │ │ │ └── x509util │ │ │ │ └── util.go │ │ │ ├── logger │ │ │ ├── logger.go │ │ │ ├── null.go │ │ │ ├── std.go │ │ │ └── writer.go │ │ │ ├── proto │ │ │ └── spiffe │ │ │ │ └── workload │ │ │ │ ├── workload.pb.go │ │ │ │ ├── workload.proto │ │ │ │ └── workload_grpc.pb.go │ │ │ ├── spiffeid │ │ │ ├── charset_backcompat_allow.go │ │ │ ├── charset_backcompat_deny.go │ │ │ ├── errors.go │ │ │ ├── id.go │ │ │ ├── match.go │ │ │ ├── path.go │ │ │ ├── require.go │ │ │ └── trustdomain.go │ │ │ ├── spiffetls │ │ │ └── tlsconfig │ │ │ │ ├── authorizer.go │ │ │ │ ├── config.go │ │ │ │ └── trace.go │ │ │ ├── svid │ │ │ ├── jwtsvid │ │ │ │ ├── source.go │ │ │ │ └── svid.go │ │ │ └── x509svid │ │ │ │ ├── source.go │ │ │ │ ├── svid.go │ │ │ │ └── verify.go │ │ │ └── workloadapi │ │ │ ├── addr.go │ │ │ ├── addr_posix.go │ │ │ ├── addr_windows.go │ │ │ ├── backoff.go │ │ │ ├── bundlesource.go │ │ │ ├── client.go │ │ │ ├── client_posix.go │ │ │ ├── client_windows.go │ │ │ ├── convenience.go │ │ │ ├── jwtsource.go │ │ │ ├── option.go │ │ │ ├── option_windows.go │ │ │ ├── watcher.go │ │ │ ├── x509context.go │ │ │ └── x509source.go │ └── spire-api-sdk │ │ ├── LICENSE │ │ └── proto │ │ └── spire │ │ └── api │ │ ├── server │ │ └── entry │ │ │ └── v1 │ │ │ ├── entry.pb.go │ │ │ ├── entry.proto │ │ │ └── entry_grpc.pb.go │ │ └── types │ │ ├── agent.pb.go │ │ ├── agent.proto │ │ ├── attestation.pb.go │ │ ├── attestation.proto │ │ ├── bundle.pb.go │ │ ├── bundle.proto │ │ ├── entry.pb.go │ │ ├── entry.proto │ │ ├── federateswith.pb.go │ │ ├── federateswith.proto │ │ ├── federationrelationship.pb.go │ │ ├── federationrelationship.proto │ │ ├── jointoken.pb.go │ │ ├── jointoken.proto │ │ ├── jwtsvid.pb.go │ │ ├── jwtsvid.proto │ │ ├── logger.pb.go │ │ ├── logger.proto │ │ ├── selector.pb.go │ │ ├── selector.proto │ │ ├── spiffeid.pb.go │ │ ├── spiffeid.proto │ │ ├── status.pb.go │ │ ├── status.proto │ │ ├── x509svid.pb.go │ │ └── x509svid.proto ├── stoewer │ └── go-strcase │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── camel.go │ │ ├── doc.go │ │ ├── helper.go │ │ ├── kebab.go │ │ └── snake.go ├── subosito │ └── gotenv │ │ ├── .env │ │ ├── .env.invalid │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ └── gotenv.go ├── tektoncd │ ├── cli │ │ ├── LICENSE │ │ └── pkg │ │ │ ├── actions │ │ │ ├── create.go │ │ │ ├── delete.go │ │ │ ├── get.go │ │ │ ├── gvr.go │ │ │ ├── list.go │ │ │ ├── patch.go │ │ │ └── watch.go │ │ │ ├── cli │ │ │ ├── interface.go │ │ │ └── params.go │ │ │ ├── file │ │ │ └── file.go │ │ │ ├── formatted │ │ │ ├── address.go │ │ │ ├── color.go │ │ │ ├── completion.go │ │ │ ├── description.go │ │ │ ├── k8s.go │ │ │ ├── param.go │ │ │ ├── results.go │ │ │ ├── task.go │ │ │ ├── time.go │ │ │ ├── version.go │ │ │ └── workspace.go │ │ │ ├── log │ │ │ ├── log.go │ │ │ ├── pipeline_reader.go │ │ │ ├── reader.go │ │ │ ├── task_reader.go │ │ │ └── writer.go │ │ │ ├── names │ │ │ └── formats.go │ │ │ ├── options │ │ │ ├── delete.go │ │ │ ├── describe.go │ │ │ ├── logs.go │ │ │ ├── resource_names.go │ │ │ └── start.go │ │ │ ├── pipeline │ │ │ ├── pipeline.go │ │ │ └── pipelinelastrun.go │ │ │ ├── pipelinerun │ │ │ ├── description.go │ │ │ ├── pipelinerun.go │ │ │ ├── sort │ │ │ │ ├── by_namespace.go │ │ │ │ └── by_start_time.go │ │ │ └── tracker.go │ │ │ ├── pods │ │ │ ├── container.go │ │ │ ├── pod.go │ │ │ ├── pod_template.go │ │ │ └── stream │ │ │ │ └── stream.go │ │ │ ├── task │ │ │ ├── task.go │ │ │ └── tasklastrun.go │ │ │ └── taskrun │ │ │ ├── create.go │ │ │ ├── description.go │ │ │ ├── list.go │ │ │ ├── sort │ │ │ ├── by_namespace.go │ │ │ └── by_start_time.go │ │ │ └── taskrun.go │ ├── pipeline │ │ ├── LICENSE │ │ ├── internal │ │ │ ├── artifactref │ │ │ │ └── artifactref.go │ │ │ └── sidecarlogresults │ │ │ │ └── sidecarlogresults.go │ │ ├── pkg │ │ │ ├── apis │ │ │ │ ├── config │ │ │ │ │ ├── default.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── events.go │ │ │ │ │ ├── feature_flags.go │ │ │ │ │ ├── featureflags_validation.go │ │ │ │ │ ├── metrics.go │ │ │ │ │ ├── metrics_notls.go │ │ │ │ │ ├── metrics_tls.go │ │ │ │ │ ├── resolver │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── feature_flags.go │ │ │ │ │ │ ├── store.go │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ │ ├── spire_config.go │ │ │ │ │ ├── store.go │ │ │ │ │ ├── tracing.go │ │ │ │ │ ├── wait_exponential_backoff.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── pipeline │ │ │ │ │ ├── constant.go │ │ │ │ │ ├── controller.go │ │ │ │ │ ├── errors │ │ │ │ │ │ └── errors.go │ │ │ │ │ ├── images.go │ │ │ │ │ ├── internal │ │ │ │ │ │ └── checksum │ │ │ │ │ │ │ └── checksum.go │ │ │ │ │ ├── options.go │ │ │ │ │ ├── paths.go │ │ │ │ │ ├── pod │ │ │ │ │ │ ├── affinity_assitant_template.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── template.go │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── sidecarlogs.go │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── artifact_types.go │ │ │ │ │ │ ├── container_types.go │ │ │ │ │ │ ├── container_validation.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── matrix_types.go │ │ │ │ │ │ ├── merge.go │ │ │ │ │ │ ├── openapi_generated.go │ │ │ │ │ │ ├── param_types.go │ │ │ │ │ │ ├── pipeline_conversion.go │ │ │ │ │ │ ├── pipeline_defaults.go │ │ │ │ │ │ ├── pipeline_types.go │ │ │ │ │ │ ├── pipeline_validation.go │ │ │ │ │ │ ├── pipelineref_types.go │ │ │ │ │ │ ├── pipelineref_validation.go │ │ │ │ │ │ ├── pipelinerun_conversion.go │ │ │ │ │ │ ├── pipelinerun_defaults.go │ │ │ │ │ │ ├── pipelinerun_types.go │ │ │ │ │ │ ├── pipelinerun_validation.go │ │ │ │ │ │ ├── provenance.go │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ ├── resolver_types.go │ │ │ │ │ │ ├── result_defaults.go │ │ │ │ │ │ ├── result_types.go │ │ │ │ │ │ ├── result_validation.go │ │ │ │ │ │ ├── resultref.go │ │ │ │ │ │ ├── swagger.json │ │ │ │ │ │ ├── task_conversion.go │ │ │ │ │ │ ├── task_defaults.go │ │ │ │ │ │ ├── task_types.go │ │ │ │ │ │ ├── task_validation.go │ │ │ │ │ │ ├── taskref_types.go │ │ │ │ │ │ ├── taskref_validation.go │ │ │ │ │ │ ├── taskrun_conversion.go │ │ │ │ │ │ ├── taskrun_defaults.go │ │ │ │ │ │ ├── taskrun_types.go │ │ │ │ │ │ ├── taskrun_validation.go │ │ │ │ │ │ ├── when_types.go │ │ │ │ │ │ ├── when_validation.go │ │ │ │ │ │ ├── workspace_types.go │ │ │ │ │ │ ├── workspace_validation.go │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── openapi_generated.go │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ ├── run_defaults.go │ │ │ │ │ │ ├── run_types.go │ │ │ │ │ │ ├── run_validation.go │ │ │ │ │ │ ├── stepaction_conversion.go │ │ │ │ │ │ ├── stepaction_defaults.go │ │ │ │ │ │ ├── stepaction_types.go │ │ │ │ │ │ ├── stepaction_validation.go │ │ │ │ │ │ ├── swagger.json │ │ │ │ │ │ ├── verificationpolicy_defaults.go │ │ │ │ │ │ ├── verificationpolicy_types.go │ │ │ │ │ │ ├── verificationpolicy_validation.go │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── artifact_types.go │ │ │ │ │ │ ├── container_conversion.go │ │ │ │ │ │ ├── container_types.go │ │ │ │ │ │ ├── container_validation.go │ │ │ │ │ │ ├── conversion_error.go │ │ │ │ │ │ ├── customrun_defaults.go │ │ │ │ │ │ ├── customrun_types.go │ │ │ │ │ │ ├── customrun_validation.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── matrix_types.go │ │ │ │ │ │ ├── merge.go │ │ │ │ │ │ ├── openapi_generated.go │ │ │ │ │ │ ├── param_conversion.go │ │ │ │ │ │ ├── param_types.go │ │ │ │ │ │ ├── pipeline_conversion.go │ │ │ │ │ │ ├── pipeline_defaults.go │ │ │ │ │ │ ├── pipeline_interface.go │ │ │ │ │ │ ├── pipeline_types.go │ │ │ │ │ │ ├── pipeline_validation.go │ │ │ │ │ │ ├── pipelineref_conversion.go │ │ │ │ │ │ ├── pipelineref_types.go │ │ │ │ │ │ ├── pipelineref_validation.go │ │ │ │ │ │ ├── pipelinerun_conversion.go │ │ │ │ │ │ ├── pipelinerun_defaults.go │ │ │ │ │ │ ├── pipelinerun_types.go │ │ │ │ │ │ ├── pipelinerun_validation.go │ │ │ │ │ │ ├── provenance.go │ │ │ │ │ │ ├── provenance_conversion.go │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ ├── resolver_conversion.go │ │ │ │ │ │ ├── resolver_types.go │ │ │ │ │ │ ├── resource_types.go │ │ │ │ │ │ ├── result_conversion.go │ │ │ │ │ │ ├── result_defaults.go │ │ │ │ │ │ ├── result_types.go │ │ │ │ │ │ ├── result_validation.go │ │ │ │ │ │ ├── resultref.go │ │ │ │ │ │ ├── run_interface.go │ │ │ │ │ │ ├── stepaction_conversion.go │ │ │ │ │ │ ├── stepaction_defaults.go │ │ │ │ │ │ ├── stepaction_types.go │ │ │ │ │ │ ├── stepaction_validation.go │ │ │ │ │ │ ├── swagger.json │ │ │ │ │ │ ├── task_conversion.go │ │ │ │ │ │ ├── task_defaults.go │ │ │ │ │ │ ├── task_interface.go │ │ │ │ │ │ ├── task_types.go │ │ │ │ │ │ ├── task_validation.go │ │ │ │ │ │ ├── taskref_conversion.go │ │ │ │ │ │ ├── taskref_types.go │ │ │ │ │ │ ├── taskref_validation.go │ │ │ │ │ │ ├── taskrun_conversion.go │ │ │ │ │ │ ├── taskrun_defaults.go │ │ │ │ │ │ ├── taskrun_types.go │ │ │ │ │ │ ├── taskrun_validation.go │ │ │ │ │ │ ├── when_types.go │ │ │ │ │ │ ├── when_validation.go │ │ │ │ │ │ ├── workspace_conversion.go │ │ │ │ │ │ ├── workspace_types.go │ │ │ │ │ │ ├── workspace_validation.go │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── resolution │ │ │ │ │ ├── register.go │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ ├── resolution_request_conversion.go │ │ │ │ │ │ ├── resolution_request_defaults.go │ │ │ │ │ │ ├── resolution_request_lifecycle.go │ │ │ │ │ │ ├── resolution_request_types.go │ │ │ │ │ │ ├── resolution_request_validation.go │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ ├── resolution_request_conversion.go │ │ │ │ │ │ ├── resolution_request_defaults.go │ │ │ │ │ │ ├── resolution_request_lifecycle.go │ │ │ │ │ │ ├── resolution_request_types.go │ │ │ │ │ │ ├── resolution_request_validation.go │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── resource │ │ │ │ │ └── v1alpha1 │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── pipeline_resource_types.go │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── run │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── runstatus_types.go │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── customrunstatus_types.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── validate │ │ │ │ │ └── metadata.go │ │ │ │ └── version │ │ │ │ │ ├── conversion.go │ │ │ │ │ └── featureflags_validation.go │ │ │ ├── client │ │ │ │ ├── clientset │ │ │ │ │ └── versioned │ │ │ │ │ │ ├── clientset.go │ │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── clientset_generated.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── register.go │ │ │ │ │ │ ├── scheme │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── register.go │ │ │ │ │ │ └── typed │ │ │ │ │ │ └── pipeline │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake_pipeline.go │ │ │ │ │ │ │ ├── fake_pipeline_client.go │ │ │ │ │ │ │ ├── fake_pipelinerun.go │ │ │ │ │ │ │ ├── fake_task.go │ │ │ │ │ │ │ └── fake_taskrun.go │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ ├── pipeline.go │ │ │ │ │ │ ├── pipeline_client.go │ │ │ │ │ │ ├── pipelinerun.go │ │ │ │ │ │ ├── task.go │ │ │ │ │ │ └── taskrun.go │ │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake_pipeline_client.go │ │ │ │ │ │ │ ├── fake_run.go │ │ │ │ │ │ │ ├── fake_stepaction.go │ │ │ │ │ │ │ └── fake_verificationpolicy.go │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ ├── pipeline_client.go │ │ │ │ │ │ ├── run.go │ │ │ │ │ │ ├── stepaction.go │ │ │ │ │ │ └── verificationpolicy.go │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── customrun.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_customrun.go │ │ │ │ │ │ ├── fake_pipeline.go │ │ │ │ │ │ ├── fake_pipeline_client.go │ │ │ │ │ │ ├── fake_pipelinerun.go │ │ │ │ │ │ ├── fake_stepaction.go │ │ │ │ │ │ ├── fake_task.go │ │ │ │ │ │ └── fake_taskrun.go │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ ├── pipeline.go │ │ │ │ │ │ ├── pipeline_client.go │ │ │ │ │ │ ├── pipelinerun.go │ │ │ │ │ │ ├── stepaction.go │ │ │ │ │ │ ├── task.go │ │ │ │ │ │ └── taskrun.go │ │ │ │ ├── informers │ │ │ │ │ └── externalversions │ │ │ │ │ │ ├── factory.go │ │ │ │ │ │ ├── generic.go │ │ │ │ │ │ ├── internalinterfaces │ │ │ │ │ │ └── factory_interfaces.go │ │ │ │ │ │ └── pipeline │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ ├── pipeline.go │ │ │ │ │ │ ├── pipelinerun.go │ │ │ │ │ │ ├── task.go │ │ │ │ │ │ └── taskrun.go │ │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ ├── run.go │ │ │ │ │ │ ├── stepaction.go │ │ │ │ │ │ └── verificationpolicy.go │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── customrun.go │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ ├── pipeline.go │ │ │ │ │ │ ├── pipelinerun.go │ │ │ │ │ │ ├── stepaction.go │ │ │ │ │ │ ├── task.go │ │ │ │ │ │ └── taskrun.go │ │ │ │ ├── injection │ │ │ │ │ ├── client │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ └── fake │ │ │ │ │ │ │ └── fake.go │ │ │ │ │ ├── informers │ │ │ │ │ │ ├── factory │ │ │ │ │ │ │ ├── factory.go │ │ │ │ │ │ │ └── fake │ │ │ │ │ │ │ │ └── fake.go │ │ │ │ │ │ └── pipeline │ │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ │ ├── pipeline │ │ │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ │ │ └── fake.go │ │ │ │ │ │ │ │ └── pipeline.go │ │ │ │ │ │ │ ├── pipelinerun │ │ │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ │ │ └── fake.go │ │ │ │ │ │ │ │ └── pipelinerun.go │ │ │ │ │ │ │ ├── task │ │ │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ │ │ └── fake.go │ │ │ │ │ │ │ │ └── task.go │ │ │ │ │ │ │ └── taskrun │ │ │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ │ └── fake.go │ │ │ │ │ │ │ │ └── taskrun.go │ │ │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ │ │ └── verificationpolicy │ │ │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ │ └── fake.go │ │ │ │ │ │ │ │ └── verificationpolicy.go │ │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ │ ├── customrun │ │ │ │ │ │ │ ├── customrun.go │ │ │ │ │ │ │ └── fake │ │ │ │ │ │ │ │ └── fake.go │ │ │ │ │ │ │ └── stepaction │ │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ └── fake.go │ │ │ │ │ │ │ └── stepaction.go │ │ │ │ │ └── reconciler │ │ │ │ │ │ └── pipeline │ │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── pipelinerun │ │ │ │ │ │ ├── controller.go │ │ │ │ │ │ ├── reconciler.go │ │ │ │ │ │ └── state.go │ │ │ │ │ │ └── taskrun │ │ │ │ │ │ ├── controller.go │ │ │ │ │ │ ├── reconciler.go │ │ │ │ │ │ └── state.go │ │ │ │ ├── listers │ │ │ │ │ └── pipeline │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ │ ├── pipeline.go │ │ │ │ │ │ ├── pipelinerun.go │ │ │ │ │ │ ├── task.go │ │ │ │ │ │ └── taskrun.go │ │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ │ ├── run.go │ │ │ │ │ │ ├── stepaction.go │ │ │ │ │ │ └── verificationpolicy.go │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── customrun.go │ │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ │ ├── pipeline.go │ │ │ │ │ │ ├── pipelinerun.go │ │ │ │ │ │ ├── stepaction.go │ │ │ │ │ │ ├── task.go │ │ │ │ │ │ └── taskrun.go │ │ │ │ └── resolution │ │ │ │ │ ├── clientset │ │ │ │ │ └── versioned │ │ │ │ │ │ ├── clientset.go │ │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── clientset_generated.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── register.go │ │ │ │ │ │ ├── scheme │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── register.go │ │ │ │ │ │ └── typed │ │ │ │ │ │ └── resolution │ │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake_resolution_client.go │ │ │ │ │ │ │ └── fake_resolutionrequest.go │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ ├── resolution_client.go │ │ │ │ │ │ └── resolutionrequest.go │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_resolution_client.go │ │ │ │ │ │ └── fake_resolutionrequest.go │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ ├── resolution_client.go │ │ │ │ │ │ └── resolutionrequest.go │ │ │ │ │ ├── informers │ │ │ │ │ └── externalversions │ │ │ │ │ │ ├── factory.go │ │ │ │ │ │ ├── generic.go │ │ │ │ │ │ ├── internalinterfaces │ │ │ │ │ │ └── factory_interfaces.go │ │ │ │ │ │ └── resolution │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ └── resolutionrequest.go │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ └── resolutionrequest.go │ │ │ │ │ ├── injection │ │ │ │ │ ├── client │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ └── fake │ │ │ │ │ │ │ └── fake.go │ │ │ │ │ └── informers │ │ │ │ │ │ ├── factory │ │ │ │ │ │ ├── factory.go │ │ │ │ │ │ └── fake │ │ │ │ │ │ │ └── fake.go │ │ │ │ │ │ └── resolution │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ └── resolutionrequest │ │ │ │ │ │ ├── fake │ │ │ │ │ │ └── fake.go │ │ │ │ │ │ └── resolutionrequest.go │ │ │ │ │ └── listers │ │ │ │ │ └── resolution │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ └── resolutionrequest.go │ │ │ │ │ └── v1beta1 │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ └── resolutionrequest.go │ │ │ ├── credentials │ │ │ │ ├── common │ │ │ │ │ └── constants.go │ │ │ │ ├── dockercreds │ │ │ │ │ └── creds.go │ │ │ │ ├── gitcreds │ │ │ │ │ ├── basic.go │ │ │ │ │ ├── creds.go │ │ │ │ │ └── ssh.go │ │ │ │ ├── matcher │ │ │ │ │ └── matcher.go │ │ │ │ └── writer │ │ │ │ │ └── writer.go │ │ │ ├── internal │ │ │ │ ├── computeresources │ │ │ │ │ └── tasklevel │ │ │ │ │ │ └── tasklevel.go │ │ │ │ └── resultref │ │ │ │ │ └── resultref.go │ │ │ ├── list │ │ │ │ └── diff.go │ │ │ ├── names │ │ │ │ └── generate.go │ │ │ ├── platforms │ │ │ │ └── platforms.go │ │ │ ├── pod │ │ │ │ ├── creds_init.go │ │ │ │ ├── doc.go │ │ │ │ ├── entrypoint.go │ │ │ │ ├── entrypoint_lookup.go │ │ │ │ ├── entrypoint_lookup_impl.go │ │ │ │ ├── pod.go │ │ │ │ ├── script.go │ │ │ │ ├── scripts_constants.go │ │ │ │ ├── security_context_config.go │ │ │ │ ├── status.go │ │ │ │ └── workingdir_init.go │ │ │ ├── reconciler │ │ │ │ ├── apiserver │ │ │ │ │ └── apiserver.go │ │ │ │ ├── constant.go │ │ │ │ ├── doc.go │ │ │ │ ├── events │ │ │ │ │ ├── cache │ │ │ │ │ │ ├── cache.go │ │ │ │ │ │ ├── cacheclient.go │ │ │ │ │ │ └── cachefakeclient.go │ │ │ │ │ └── cloudevent │ │ │ │ │ │ ├── cloud_event_controller.go │ │ │ │ │ │ ├── cloudevent.go │ │ │ │ │ │ ├── cloudeventclient.go │ │ │ │ │ │ ├── cloudeventsfakeclient.go │ │ │ │ │ │ └── interface.go │ │ │ │ ├── pipeline │ │ │ │ │ └── dag │ │ │ │ │ │ └── dag.go │ │ │ │ ├── resources.go │ │ │ │ └── testing │ │ │ │ │ ├── configmap.go │ │ │ │ │ ├── factory.go │ │ │ │ │ ├── logger.go │ │ │ │ │ └── status.go │ │ │ ├── remote │ │ │ │ ├── errors.go │ │ │ │ ├── oci │ │ │ │ │ └── resolver.go │ │ │ │ └── resolver.go │ │ │ ├── remoteresolution │ │ │ │ └── resolver │ │ │ │ │ └── framework │ │ │ │ │ └── cache │ │ │ │ │ ├── annotated_resource.go │ │ │ │ │ ├── cache.go │ │ │ │ │ ├── clock.go │ │ │ │ │ ├── configstore.go │ │ │ │ │ ├── operations.go │ │ │ │ │ └── setup.go │ │ │ ├── resolution │ │ │ │ ├── common │ │ │ │ │ ├── annotations.go │ │ │ │ │ ├── context.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── labels.go │ │ │ │ │ ├── messages.go │ │ │ │ │ └── statuses.go │ │ │ │ └── resolver │ │ │ │ │ └── framework │ │ │ │ │ ├── configstore.go │ │ │ │ │ ├── controller.go │ │ │ │ │ ├── fakeresolver.go │ │ │ │ │ ├── interface.go │ │ │ │ │ └── reconciler.go │ │ │ ├── result │ │ │ │ └── result.go │ │ │ ├── spire │ │ │ │ ├── config │ │ │ │ │ ├── config.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── controller.go │ │ │ │ ├── entrypointer.go │ │ │ │ ├── sign.go │ │ │ │ ├── spire.go │ │ │ │ ├── spire_mock.go │ │ │ │ └── verify.go │ │ │ ├── substitution │ │ │ │ ├── replacements.go │ │ │ │ └── substitution.go │ │ │ └── termination │ │ │ │ ├── parse.go │ │ │ │ └── write.go │ │ └── test │ │ │ ├── OWNERS │ │ │ ├── README.md │ │ │ ├── build_logs.go │ │ │ ├── clients.go │ │ │ ├── columns.txt │ │ │ ├── controller.go │ │ │ ├── diff │ │ │ └── print.go │ │ │ ├── doc.go │ │ │ ├── e2e-common.sh │ │ │ ├── e2e-tests-kind-alpha.env │ │ │ ├── e2e-tests-kind-beta.env │ │ │ ├── e2e-tests-kind-prow-feature-flags.env │ │ │ ├── e2e-tests-kind-stable.env │ │ │ ├── e2e-tests-kind.env │ │ │ ├── e2e-tests-upgrade.sh │ │ │ ├── e2e-tests.sh │ │ │ ├── featureflags.go │ │ │ ├── kubectl.go │ │ │ ├── markdown-lint-config.rc │ │ │ ├── multiarch_utils.go │ │ │ ├── parse │ │ │ └── yaml.go │ │ │ ├── path_filtering.go │ │ │ ├── presubmit-tests.sh │ │ │ ├── remote.go │ │ │ ├── secret.go │ │ │ ├── trustedresources.go │ │ │ ├── util.go │ │ │ └── wait.go │ └── triggers │ │ ├── LICENSE │ │ └── pkg │ │ ├── apis │ │ ├── config │ │ │ ├── default.go │ │ │ ├── doc.go │ │ │ ├── feature_flags.go │ │ │ ├── store.go │ │ │ └── zz_generated.deepcopy.go │ │ └── triggers │ │ │ ├── contexts │ │ │ └── contexts.go │ │ │ ├── register.go │ │ │ ├── v1alpha1 │ │ │ ├── cluster_interceptor_defaults.go │ │ │ ├── cluster_interceptor_types.go │ │ │ ├── cluster_interceptor_validation.go │ │ │ ├── cluster_trigger_binding_defaults.go │ │ │ ├── cluster_trigger_binding_types.go │ │ │ ├── cluster_trigger_binding_validation.go │ │ │ ├── doc.go │ │ │ ├── event_listener_defaults.go │ │ │ ├── event_listener_types.go │ │ │ ├── event_listener_validation.go │ │ │ ├── interceptor_defaults.go │ │ │ ├── interceptor_types.go │ │ │ ├── interceptor_validation.go │ │ │ ├── param.go │ │ │ ├── register.go │ │ │ ├── trigger_binding_defaults.go │ │ │ ├── trigger_binding_interface.go │ │ │ ├── trigger_binding_types.go │ │ │ ├── trigger_binding_validation.go │ │ │ ├── trigger_defaults.go │ │ │ ├── trigger_template_defaults.go │ │ │ ├── trigger_template_types.go │ │ │ ├── trigger_template_validation.go │ │ │ ├── trigger_types.go │ │ │ ├── trigger_types_convert.go │ │ │ ├── trigger_validation.go │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── v1beta1 │ │ │ ├── cluster_trigger_binding_defaults.go │ │ │ ├── cluster_trigger_binding_types.go │ │ │ ├── cluster_trigger_binding_validation.go │ │ │ ├── doc.go │ │ │ ├── event_listener_defaults.go │ │ │ ├── event_listener_types.go │ │ │ ├── event_listener_validation.go │ │ │ ├── interceptor_types.go │ │ │ ├── openapi_generated.go │ │ │ ├── param.go │ │ │ ├── register.go │ │ │ ├── swagger.json │ │ │ ├── trigger_binding_defaults.go │ │ │ ├── trigger_binding_interface.go │ │ │ ├── trigger_binding_types.go │ │ │ ├── trigger_binding_validation.go │ │ │ ├── trigger_defaults.go │ │ │ ├── trigger_template_defaults.go │ │ │ ├── trigger_template_types.go │ │ │ ├── trigger_template_validation.go │ │ │ ├── trigger_types.go │ │ │ ├── trigger_types_convert.go │ │ │ ├── trigger_validation.go │ │ │ ├── version_validation.go │ │ │ └── zz_generated.deepcopy.go │ │ │ └── validation.go │ │ └── client │ │ └── clientset │ │ └── versioned │ │ ├── clientset.go │ │ ├── doc.go │ │ ├── scheme │ │ ├── doc.go │ │ └── register.go │ │ └── typed │ │ └── triggers │ │ ├── v1alpha1 │ │ ├── clusterinterceptor.go │ │ ├── clustertriggerbinding.go │ │ ├── doc.go │ │ ├── eventlistener.go │ │ ├── generated_expansion.go │ │ ├── interceptor.go │ │ ├── trigger.go │ │ ├── triggerbinding.go │ │ ├── triggers_client.go │ │ └── triggertemplate.go │ │ └── v1beta1 │ │ ├── clustertriggerbinding.go │ │ ├── doc.go │ │ ├── eventlistener.go │ │ ├── generated_expansion.go │ │ ├── trigger.go │ │ ├── triggerbinding.go │ │ ├── triggers_client.go │ │ └── triggertemplate.go ├── tidwall │ ├── gjson │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SYNTAX.md │ │ └── gjson.go │ ├── match │ │ ├── LICENSE │ │ ├── README.md │ │ └── match.go │ └── pretty │ │ ├── LICENSE │ │ ├── README.md │ │ └── pretty.go ├── titanous │ └── rocacheck │ │ ├── LICENSE │ │ ├── README.md │ │ └── rocacheck.go ├── vbatts │ └── tar-split │ │ ├── LICENSE │ │ └── archive │ │ └── tar │ │ ├── common.go │ │ ├── format.go │ │ ├── reader.go │ │ ├── stat_actime1.go │ │ ├── stat_actime2.go │ │ ├── stat_unix.go │ │ ├── strconv.go │ │ └── writer.go ├── x448 │ └── float16 │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── float16.go └── xlab │ └── treeprint │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── helpers.go │ ├── struct.go │ └── treeprint.go ├── go.opencensus.io ├── .gitignore ├── AUTHORS ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── appveyor.yml ├── internal │ ├── internal.go │ ├── sanitize.go │ ├── tagencoding │ │ └── tagencoding.go │ └── traceinternals.go ├── metric │ ├── metricdata │ │ ├── doc.go │ │ ├── exemplar.go │ │ ├── label.go │ │ ├── metric.go │ │ ├── point.go │ │ ├── type_string.go │ │ └── unit.go │ ├── metricexport │ │ ├── doc.go │ │ ├── export.go │ │ └── reader.go │ └── metricproducer │ │ ├── manager.go │ │ └── producer.go ├── opencensus.go ├── plugin │ ├── ocgrpc │ │ ├── client.go │ │ ├── client_metrics.go │ │ ├── client_stats_handler.go │ │ ├── doc.go │ │ ├── server.go │ │ ├── server_metrics.go │ │ ├── server_stats_handler.go │ │ ├── stats_common.go │ │ └── trace_common.go │ └── ochttp │ │ ├── client.go │ │ ├── client_stats.go │ │ ├── doc.go │ │ ├── propagation │ │ ├── b3 │ │ │ └── b3.go │ │ └── tracecontext │ │ │ └── propagation.go │ │ ├── route.go │ │ ├── server.go │ │ ├── span_annotating_client_trace.go │ │ ├── stats.go │ │ ├── trace.go │ │ └── wrapped_body.go ├── resource │ └── resource.go ├── stats │ ├── doc.go │ ├── internal │ │ └── record.go │ ├── measure.go │ ├── measure_float64.go │ ├── measure_int64.go │ ├── record.go │ ├── units.go │ └── view │ │ ├── aggregation.go │ │ ├── aggregation_data.go │ │ ├── collector.go │ │ ├── doc.go │ │ ├── export.go │ │ ├── view.go │ │ ├── view_to_metric.go │ │ ├── worker.go │ │ └── worker_commands.go ├── tag │ ├── context.go │ ├── doc.go │ ├── key.go │ ├── map.go │ ├── map_codec.go │ ├── metadata.go │ ├── profile_19.go │ ├── profile_not19.go │ └── validate.go └── trace │ ├── basetypes.go │ ├── config.go │ ├── doc.go │ ├── evictedqueue.go │ ├── export.go │ ├── internal │ └── internal.go │ ├── lrumap.go │ ├── propagation │ └── propagation.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 │ │ │ ├── stats_handler.go │ │ │ └── version.go │ │ └── net │ │ └── http │ │ └── otelhttp │ │ ├── LICENSE │ │ ├── client.go │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── handler.go │ │ ├── internal │ │ ├── request │ │ │ ├── body_wrapper.go │ │ │ ├── gen.go │ │ │ └── resp_writer_wrapper.go │ │ ├── semconv │ │ │ ├── env.go │ │ │ ├── gen.go │ │ │ ├── httpconv.go │ │ │ ├── util.go │ │ │ └── v1.20.0.go │ │ └── semconvutil │ │ │ ├── gen.go │ │ │ ├── httpconv.go │ │ │ └── netconv.go │ │ ├── labeler.go │ │ ├── start_time_context.go │ │ ├── transport.go │ │ └── version.go └── otel │ ├── .clomonitor.yml │ ├── .codespellignore │ ├── .codespellrc │ ├── .gitattributes │ ├── .gitignore │ ├── .golangci.yml │ ├── .lycheeignore │ ├── .markdownlint.yaml │ ├── CHANGELOG.md │ ├── CODEOWNERS │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── RELEASING.md │ ├── VERSIONING.md │ ├── attribute │ ├── README.md │ ├── doc.go │ ├── encoder.go │ ├── filter.go │ ├── internal │ │ └── attribute.go │ ├── iterator.go │ ├── key.go │ ├── kv.go │ ├── rawhelpers.go │ ├── set.go │ ├── type_string.go │ └── value.go │ ├── baggage │ ├── README.md │ ├── baggage.go │ ├── context.go │ └── doc.go │ ├── codes │ ├── README.md │ ├── codes.go │ └── doc.go │ ├── dependencies.Dockerfile │ ├── doc.go │ ├── error_handler.go │ ├── handler.go │ ├── internal │ ├── baggage │ │ ├── baggage.go │ │ └── context.go │ └── global │ │ ├── handler.go │ │ ├── instruments.go │ │ ├── internal_logging.go │ │ ├── meter.go │ │ ├── propagator.go │ │ ├── state.go │ │ └── trace.go │ ├── internal_logging.go │ ├── metric.go │ ├── metric │ ├── LICENSE │ ├── README.md │ ├── asyncfloat64.go │ ├── asyncint64.go │ ├── config.go │ ├── doc.go │ ├── embedded │ │ ├── README.md │ │ └── embedded.go │ ├── instrument.go │ ├── meter.go │ ├── noop │ │ ├── README.md │ │ └── noop.go │ ├── syncfloat64.go │ └── syncint64.go │ ├── propagation.go │ ├── propagation │ ├── README.md │ ├── baggage.go │ ├── doc.go │ ├── propagation.go │ └── trace_context.go │ ├── renovate.json │ ├── requirements.txt │ ├── sdk │ ├── LICENSE │ ├── README.md │ ├── instrumentation │ │ ├── README.md │ │ ├── doc.go │ │ ├── library.go │ │ └── scope.go │ ├── internal │ │ └── 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.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 │ ├── v1.30.0 │ │ ├── MIGRATION.md │ │ ├── README.md │ │ ├── attribute_group.go │ │ ├── doc.go │ │ ├── exception.go │ │ ├── metric.go │ │ └── schema.go │ └── v1.34.0 │ │ ├── MIGRATION.md │ │ ├── README.md │ │ ├── attribute_group.go │ │ ├── doc.go │ │ ├── exception.go │ │ └── schema.go │ ├── trace.go │ ├── trace │ ├── LICENSE │ ├── README.md │ ├── auto.go │ ├── config.go │ ├── context.go │ ├── doc.go │ ├── embedded │ │ ├── README.md │ │ └── embedded.go │ ├── internal │ │ └── telemetry │ │ │ ├── attr.go │ │ │ ├── doc.go │ │ │ ├── id.go │ │ │ ├── number.go │ │ │ ├── resource.go │ │ │ ├── scope.go │ │ │ ├── span.go │ │ │ ├── status.go │ │ │ ├── traces.go │ │ │ └── value.go │ ├── nonrecording.go │ ├── noop.go │ ├── noop │ │ ├── README.md │ │ └── noop.go │ ├── provider.go │ ├── span.go │ ├── trace.go │ ├── tracer.go │ └── tracestate.go │ ├── verify_released_changelog.sh │ ├── version.go │ └── versions.yaml ├── go.starlark.net ├── LICENSE ├── internal │ ├── compile │ │ ├── compile.go │ │ └── serial.go │ └── spell │ │ └── spell.go ├── resolve │ ├── binding.go │ └── resolve.go ├── starlark │ ├── debug.go │ ├── empty.s │ ├── eval.go │ ├── hashtable.go │ ├── int.go │ ├── int_generic.go │ ├── int_posix64.go │ ├── interp.go │ ├── library.go │ ├── profile.go │ ├── unpack.go │ └── value.go ├── starlarkstruct │ ├── module.go │ └── struct.go └── syntax │ ├── grammar.txt │ ├── parse.go │ ├── quote.go │ ├── scan.go │ ├── syntax.go │ └── walk.go ├── 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 │ └── ztest │ │ ├── clock.go │ │ ├── doc.go │ │ ├── timeout.go │ │ └── writer.go │ ├── level.go │ ├── logger.go │ ├── options.go │ ├── sink.go │ ├── sugar.go │ ├── time.go │ ├── writer.go │ ├── zapcore │ ├── buffered_write_syncer.go │ ├── clock.go │ ├── console_encoder.go │ ├── core.go │ ├── doc.go │ ├── encoder.go │ ├── entry.go │ ├── error.go │ ├── field.go │ ├── hook.go │ ├── increase_level.go │ ├── json_encoder.go │ ├── lazy_with.go │ ├── level.go │ ├── level_strings.go │ ├── marshaler.go │ ├── memory_encoder.go │ ├── reflected_encoder.go │ ├── sampler.go │ ├── tee.go │ └── write_syncer.go │ └── zaptest │ ├── doc.go │ ├── logger.go │ ├── testingt.go │ ├── timeout.go │ └── writer.go ├── go.yaml.in └── yaml │ ├── v2 │ ├── .travis.yml │ ├── LICENSE │ ├── LICENSE.libyaml │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go │ └── v3 │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go ├── gocloud.dev ├── AUTHORS ├── CONTRIBUTORS ├── LICENSE ├── aws │ └── aws.go ├── blob │ ├── blob.go │ ├── blob_fs.go │ ├── driver │ │ └── driver.go │ ├── gcsblob │ │ ├── gcsblob.go │ │ └── iam.go │ └── s3blob │ │ └── s3blob.go ├── gcerrors │ └── errors.go ├── gcp │ └── gcp.go └── internal │ ├── escape │ └── escape.go │ ├── gcerr │ ├── errorcode_string.go │ └── gcerr.go │ ├── oc │ ├── metrics.go │ └── trace.go │ ├── openurl │ └── openurl.go │ ├── retry │ └── retry.go │ └── useragent │ └── useragent.go ├── golang.org └── x │ ├── crypto │ ├── LICENSE │ ├── PATENTS │ ├── 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 │ ├── nacl │ │ └── secretbox │ │ │ └── secretbox.go │ ├── ocsp │ │ └── ocsp.go │ ├── pbkdf2 │ │ └── pbkdf2.go │ ├── pkcs12 │ │ ├── bmp-string.go │ │ ├── crypto.go │ │ ├── errors.go │ │ ├── internal │ │ │ └── rc2 │ │ │ │ └── rc2.go │ │ ├── mac.go │ │ ├── pbkdf.go │ │ ├── pkcs12.go │ │ └── safebags.go │ ├── salsa20 │ │ └── salsa │ │ │ ├── hsalsa20.go │ │ │ ├── salsa208.go │ │ │ ├── salsa20_amd64.go │ │ │ ├── salsa20_amd64.s │ │ │ ├── salsa20_noasm.go │ │ │ └── salsa20_ref.go │ ├── scrypt │ │ └── scrypt.go │ └── sha3 │ │ ├── hashes.go │ │ ├── legacy_hash.go │ │ ├── legacy_keccakf.go │ │ └── shake.go │ ├── exp │ ├── LICENSE │ ├── PATENTS │ └── slices │ │ ├── slices.go │ │ └── sort.go │ ├── net │ ├── LICENSE │ ├── PATENTS │ ├── context │ │ └── context.go │ ├── html │ │ ├── atom │ │ │ ├── atom.go │ │ │ └── table.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_go125.go │ │ ├── config_go126.go │ │ ├── databuffer.go │ │ ├── errors.go │ │ ├── flow.go │ │ ├── frame.go │ │ ├── gotrack.go │ │ ├── h2c │ │ │ └── h2c.go │ │ ├── hpack │ │ │ ├── encode.go │ │ │ ├── hpack.go │ │ │ ├── huffman.go │ │ │ ├── static_table.go │ │ │ └── tables.go │ │ ├── http2.go │ │ ├── pipe.go │ │ ├── server.go │ │ ├── transport.go │ │ ├── unencrypted.go │ │ ├── write.go │ │ ├── writesched.go │ │ ├── writesched_priority_rfc7540.go │ │ ├── writesched_priority_rfc9218.go │ │ ├── writesched_random.go │ │ └── writesched_roundrobin.go │ ├── idna │ │ ├── go118.go │ │ ├── idna10.0.0.go │ │ ├── idna9.0.0.go │ │ ├── pre_go118.go │ │ ├── punycode.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ ├── trie.go │ │ ├── trie12.0.0.go │ │ ├── trie13.0.0.go │ │ └── trieval.go │ ├── internal │ │ ├── httpcommon │ │ │ ├── ascii.go │ │ │ ├── headermap.go │ │ │ └── request.go │ │ ├── socks │ │ │ ├── client.go │ │ │ └── socks.go │ │ └── timeseries │ │ │ └── timeseries.go │ ├── proxy │ │ ├── dial.go │ │ ├── direct.go │ │ ├── per_host.go │ │ ├── proxy.go │ │ └── socks5.go │ ├── trace │ │ ├── events.go │ │ ├── histogram.go │ │ └── trace.go │ └── websocket │ │ ├── client.go │ │ ├── dial.go │ │ ├── hybi.go │ │ ├── server.go │ │ └── websocket.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_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 │ │ ├── encoding.go │ │ ├── internal │ │ │ ├── identifier │ │ │ │ ├── identifier.go │ │ │ │ └── mib.go │ │ │ └── internal.go │ │ └── unicode │ │ │ ├── override.go │ │ │ └── unicode.go │ ├── internal │ │ ├── internal.go │ │ ├── language │ │ │ ├── common.go │ │ │ ├── compact.go │ │ │ ├── compact │ │ │ │ ├── compact.go │ │ │ │ ├── language.go │ │ │ │ ├── parents.go │ │ │ │ ├── tables.go │ │ │ │ └── tags.go │ │ │ ├── compose.go │ │ │ ├── coverage.go │ │ │ ├── language.go │ │ │ ├── lookup.go │ │ │ ├── match.go │ │ │ ├── parse.go │ │ │ ├── tables.go │ │ │ └── tags.go │ │ ├── match.go │ │ ├── tag │ │ │ └── tag.go │ │ └── utf8internal │ │ │ └── utf8internal.go │ ├── language │ │ ├── coverage.go │ │ ├── doc.go │ │ ├── language.go │ │ ├── match.go │ │ ├── parse.go │ │ ├── tables.go │ │ └── tags.go │ ├── runes │ │ ├── cond.go │ │ └── runes.go │ ├── secure │ │ ├── bidirule │ │ │ ├── bidirule.go │ │ │ ├── bidirule10.0.0.go │ │ │ └── bidirule9.0.0.go │ │ └── precis │ │ │ ├── class.go │ │ │ ├── context.go │ │ │ ├── doc.go │ │ │ ├── nickname.go │ │ │ ├── options.go │ │ │ ├── profile.go │ │ │ ├── profiles.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 │ │ │ ├── transformer.go │ │ │ └── trieval.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 │ └── 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 │ ├── idtoken │ │ ├── cache.go │ │ ├── compute.go │ │ ├── doc.go │ │ ├── idtoken.go │ │ └── validate.go │ ├── impersonate │ │ ├── doc.go │ │ ├── idtoken.go │ │ ├── impersonate.go │ │ └── user.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 │ ├── support │ │ └── bundler │ │ │ └── bundler.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 │ │ ├── httpbody │ │ │ └── httpbody.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 │ │ └── timeofday │ │ └── timeofday.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 │ │ ├── lazy │ │ │ └── lazy.go │ │ ├── leastrequest │ │ │ └── leastrequest.go │ │ ├── pickfirst │ │ │ ├── internal │ │ │ │ └── internal.go │ │ │ ├── pickfirst.go │ │ │ └── pickfirstleaf │ │ │ │ └── pickfirstleaf.go │ │ ├── ringhash │ │ │ ├── config.go │ │ │ ├── logging.go │ │ │ ├── picker.go │ │ │ ├── ring.go │ │ │ └── ringhash.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 │ │ └── 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 │ │ ├── opentelemetry │ │ │ └── trace_options.go │ │ └── stats │ │ │ ├── metricregistry.go │ │ │ └── metrics.go │ ├── grpclog │ │ ├── component.go │ │ ├── grpclog.go │ │ ├── internal │ │ │ ├── grpclog.go │ │ │ ├── logger.go │ │ │ └── loggerv2.go │ │ ├── logger.go │ │ └── loggerv2.go │ ├── health │ │ ├── client.go │ │ ├── grpc_health_v1 │ │ │ ├── health.pb.go │ │ │ └── health_grpc.pb.go │ │ ├── logging.go │ │ ├── producer.go │ │ └── server.go │ ├── interceptor.go │ ├── internal │ │ ├── admin │ │ │ └── admin.go │ │ ├── backoff │ │ │ └── backoff.go │ │ ├── balancer │ │ │ ├── gracefulswitch │ │ │ │ ├── config.go │ │ │ │ └── gracefulswitch.go │ │ │ ├── nop │ │ │ │ └── nop.go │ │ │ └── weight │ │ │ │ └── weight.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 │ │ │ ├── spiffe │ │ │ │ └── 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 │ │ │ └── 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 │ │ ├── proxyattributes │ │ │ └── proxyattributes.go │ │ ├── resolver │ │ │ ├── config_selector.go │ │ │ ├── delegatingresolver │ │ │ │ └── delegatingresolver.go │ │ │ ├── dns │ │ │ │ ├── dns_resolver.go │ │ │ │ └── internal │ │ │ │ │ └── internal.go │ │ │ ├── passthrough │ │ │ │ └── passthrough.go │ │ │ └── unix │ │ │ │ └── unix.go │ │ ├── ringhash │ │ │ └── ringhash.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 │ │ │ ├── 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 │ │ │ └── wrrlocality │ │ │ │ ├── balancer.go │ │ │ │ └── logging.go │ │ │ ├── bootstrap │ │ │ ├── bootstrap.go │ │ │ ├── logging.go │ │ │ ├── template.go │ │ │ └── tlscreds │ │ │ │ └── bundle.go │ │ │ ├── clients │ │ │ ├── config.go │ │ │ ├── grpctransport │ │ │ │ └── grpc_transport.go │ │ │ ├── internal │ │ │ │ ├── backoff │ │ │ │ │ └── backoff.go │ │ │ │ ├── buffer │ │ │ │ │ └── unbounded.go │ │ │ │ ├── internal.go │ │ │ │ ├── pretty │ │ │ │ │ └── pretty.go │ │ │ │ └── syncutil │ │ │ │ │ ├── callback_serializer.go │ │ │ │ │ └── event.go │ │ │ ├── lrsclient │ │ │ │ ├── internal │ │ │ │ │ └── internal.go │ │ │ │ ├── load_store.go │ │ │ │ ├── logging.go │ │ │ │ ├── lrs_stream.go │ │ │ │ ├── lrsclient.go │ │ │ │ └── lrsconfig.go │ │ │ ├── transport_builder.go │ │ │ └── xdsclient │ │ │ │ ├── ads_stream.go │ │ │ │ ├── authority.go │ │ │ │ ├── channel.go │ │ │ │ ├── clientimpl_watchers.go │ │ │ │ ├── internal │ │ │ │ ├── internal.go │ │ │ │ └── xdsresource │ │ │ │ │ ├── ads_stream.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── name.go │ │ │ │ │ ├── type.go │ │ │ │ │ └── version.go │ │ │ │ ├── logging.go │ │ │ │ ├── metrics │ │ │ │ └── metrics.go │ │ │ │ ├── resource_type.go │ │ │ │ ├── resource_watcher.go │ │ │ │ ├── xdsclient.go │ │ │ │ └── xdsconfig.go │ │ │ ├── clusterspecifier │ │ │ ├── cluster_specifier.go │ │ │ └── rls │ │ │ │ └── rls.go │ │ │ ├── httpfilter │ │ │ ├── fault │ │ │ │ └── fault.go │ │ │ ├── httpfilter.go │ │ │ ├── rbac │ │ │ │ └── rbac.go │ │ │ └── router │ │ │ │ └── router.go │ │ │ ├── matcher │ │ │ ├── matcher_header.go │ │ │ └── string_matcher.go │ │ │ ├── rbac │ │ │ ├── converter.go │ │ │ ├── matchers.go │ │ │ └── rbac_engine.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 │ │ │ ├── xds.go │ │ │ └── xdsclient │ │ │ ├── attributes.go │ │ │ ├── client.go │ │ │ ├── clientimpl.go │ │ │ ├── clientimpl_loadreport.go │ │ │ ├── clientimpl_watchers.go │ │ │ ├── logging.go │ │ │ ├── pool.go │ │ │ ├── requests_counter.go │ │ │ ├── resource_types.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 │ │ │ ├── metadata.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 │ ├── 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 │ ├── reflection │ │ ├── README.md │ │ ├── adapt.go │ │ ├── grpc_reflection_v1 │ │ │ ├── reflection.pb.go │ │ │ └── reflection_grpc.pb.go │ │ ├── grpc_reflection_v1alpha │ │ │ ├── reflection.pb.go │ │ │ └── reflection_grpc.pb.go │ │ ├── internal │ │ │ └── internal.go │ │ └── serverreflection.go │ ├── resolver │ │ ├── dns │ │ │ └── dns_resolver.go │ │ ├── manual │ │ │ └── manual.go │ │ ├── map.go │ │ ├── resolver.go │ │ └── ringhash │ │ │ └── attr.go │ ├── resolver_wrapper.go │ ├── rpc_util.go │ ├── server.go │ ├── service_config.go │ ├── serviceconfig │ │ └── serviceconfig.go │ ├── stats │ │ ├── handlers.go │ │ ├── metrics.go │ │ ├── opentelemetry │ │ │ ├── client_metrics.go │ │ │ ├── client_tracing.go │ │ │ ├── grpc_trace_bin_propagator.go │ │ │ ├── internal │ │ │ │ ├── pluginoption.go │ │ │ │ └── tracing │ │ │ │ │ └── carrier.go │ │ │ ├── opentelemetry.go │ │ │ ├── server_metrics.go │ │ │ ├── server_tracing.go │ │ │ └── trace.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 │ │ ├── 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 │ ├── editionssupport │ │ └── editions.go │ ├── encoding │ │ ├── defval │ │ │ └── default.go │ │ ├── json │ │ │ ├── decode.go │ │ │ ├── decode_number.go │ │ │ ├── decode_string.go │ │ │ ├── decode_token.go │ │ │ └── encode.go │ │ ├── messageset │ │ │ └── messageset.go │ │ ├── tag │ │ │ └── tag.go │ │ └── text │ │ │ ├── decode.go │ │ │ ├── decode_number.go │ │ │ ├── decode_string.go │ │ │ ├── decode_token.go │ │ │ ├── doc.go │ │ │ └── encode.go │ ├── errors │ │ └── errors.go │ ├── filedesc │ │ ├── build.go │ │ ├── desc.go │ │ ├── desc_init.go │ │ ├── desc_lazy.go │ │ ├── desc_list.go │ │ ├── desc_list_gen.go │ │ ├── editions.go │ │ ├── placeholder.go │ │ └── presence.go │ ├── filetype │ │ └── build.go │ ├── flags │ │ ├── flags.go │ │ ├── proto_legacy_disable.go │ │ └── proto_legacy_enable.go │ ├── genid │ │ ├── any_gen.go │ │ ├── api_gen.go │ │ ├── descriptor_gen.go │ │ ├── doc.go │ │ ├── duration_gen.go │ │ ├── empty_gen.go │ │ ├── field_mask_gen.go │ │ ├── go_features_gen.go │ │ ├── goname.go │ │ ├── map_entry.go │ │ ├── name.go │ │ ├── source_context_gen.go │ │ ├── struct_gen.go │ │ ├── timestamp_gen.go │ │ ├── type_gen.go │ │ ├── wrappers.go │ │ └── wrappers_gen.go │ ├── impl │ │ ├── api_export.go │ │ ├── api_export_opaque.go │ │ ├── bitmap.go │ │ ├── bitmap_race.go │ │ ├── checkinit.go │ │ ├── codec_extension.go │ │ ├── codec_field.go │ │ ├── codec_field_opaque.go │ │ ├── codec_gen.go │ │ ├── codec_map.go │ │ ├── codec_message.go │ │ ├── codec_message_opaque.go │ │ ├── codec_messageset.go │ │ ├── codec_tables.go │ │ ├── codec_unsafe.go │ │ ├── convert.go │ │ ├── convert_list.go │ │ ├── convert_map.go │ │ ├── decode.go │ │ ├── encode.go │ │ ├── enum.go │ │ ├── equal.go │ │ ├── extension.go │ │ ├── lazy.go │ │ ├── legacy_enum.go │ │ ├── legacy_export.go │ │ ├── legacy_extension.go │ │ ├── legacy_file.go │ │ ├── legacy_message.go │ │ ├── merge.go │ │ ├── merge_gen.go │ │ ├── message.go │ │ ├── message_opaque.go │ │ ├── message_opaque_gen.go │ │ ├── message_reflect.go │ │ ├── message_reflect_field.go │ │ ├── message_reflect_field_gen.go │ │ ├── message_reflect_gen.go │ │ ├── pointer_unsafe.go │ │ ├── pointer_unsafe_opaque.go │ │ ├── presence.go │ │ └── validate.go │ ├── msgfmt │ │ └── format.go │ ├── order │ │ ├── order.go │ │ └── range.go │ ├── pragma │ │ └── pragma.go │ ├── protolazy │ │ ├── bufferreader.go │ │ ├── lazy.go │ │ └── pointer_unsafe.go │ ├── set │ │ └── ints.go │ ├── strs │ │ ├── strings.go │ │ └── strings_unsafe.go │ └── version │ │ └── version.go │ ├── proto │ ├── checkinit.go │ ├── decode.go │ ├── decode_gen.go │ ├── doc.go │ ├── encode.go │ ├── encode_gen.go │ ├── equal.go │ ├── extension.go │ ├── merge.go │ ├── messageset.go │ ├── proto.go │ ├── proto_methods.go │ ├── proto_reflect.go │ ├── reset.go │ ├── size.go │ ├── size_gen.go │ ├── wrapperopaque.go │ └── wrappers.go │ ├── protoadapt │ └── convert.go │ ├── reflect │ ├── protodesc │ │ ├── desc.go │ │ ├── desc_init.go │ │ ├── desc_resolve.go │ │ ├── desc_validate.go │ │ ├── editions.go │ │ └── proto.go │ ├── protoreflect │ │ ├── methods.go │ │ ├── proto.go │ │ ├── source.go │ │ ├── source_gen.go │ │ ├── type.go │ │ ├── value.go │ │ ├── value_equal.go │ │ ├── value_union.go │ │ └── value_unsafe.go │ └── protoregistry │ │ └── registry.go │ ├── runtime │ ├── protoiface │ │ ├── legacy.go │ │ └── methods.go │ └── protoimpl │ │ ├── impl.go │ │ └── version.go │ ├── testing │ └── protocmp │ │ ├── reflect.go │ │ ├── util.go │ │ └── xform.go │ └── types │ ├── descriptorpb │ └── descriptor.pb.go │ ├── dynamicpb │ ├── dynamic.go │ └── types.go │ ├── gofeaturespb │ └── go_features.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 ├── 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 ├── gorm.io ├── driver │ ├── mysql │ │ ├── .gitignore │ │ ├── License │ │ ├── README.md │ │ ├── error_translator.go │ │ ├── migrator.go │ │ └── mysql.go │ ├── postgres │ │ ├── .gitignore │ │ ├── License │ │ ├── README.md │ │ ├── error_translator.go │ │ ├── migrator.go │ │ └── postgres.go │ └── sqlite │ │ ├── .gitignore │ │ ├── License │ │ ├── README.md │ │ ├── ddlmod.go │ │ ├── ddlmod_parse_all_columns.go │ │ ├── error_translator.go │ │ ├── errors.go │ │ ├── migrator.go │ │ └── sqlite.go └── gorm │ ├── .gitignore │ ├── .golangci.yml │ ├── CODE_OF_CONDUCT.md │ ├── LICENSE │ ├── README.md │ ├── association.go │ ├── callbacks.go │ ├── callbacks │ ├── associations.go │ ├── callbacks.go │ ├── callmethod.go │ ├── create.go │ ├── delete.go │ ├── helper.go │ ├── interfaces.go │ ├── preload.go │ ├── query.go │ ├── raw.go │ ├── row.go │ ├── transaction.go │ └── update.go │ ├── chainable_api.go │ ├── clause │ ├── association.go │ ├── clause.go │ ├── delete.go │ ├── expression.go │ ├── from.go │ ├── group_by.go │ ├── insert.go │ ├── joins.go │ ├── limit.go │ ├── locking.go │ ├── on_conflict.go │ ├── order_by.go │ ├── returning.go │ ├── select.go │ ├── set.go │ ├── update.go │ ├── values.go │ ├── where.go │ └── with.go │ ├── errors.go │ ├── finisher_api.go │ ├── generics.go │ ├── gorm.go │ ├── interfaces.go │ ├── internal │ ├── lru │ │ └── lru.go │ └── stmt_store │ │ └── stmt_store.go │ ├── logger │ ├── logger.go │ ├── slog.go │ └── sql.go │ ├── migrator.go │ ├── migrator │ ├── column_type.go │ ├── index.go │ ├── migrator.go │ └── table_type.go │ ├── model.go │ ├── prepare_stmt.go │ ├── scan.go │ ├── schema │ ├── constraint.go │ ├── field.go │ ├── index.go │ ├── interfaces.go │ ├── naming.go │ ├── pool.go │ ├── relationship.go │ ├── schema.go │ ├── serializer.go │ └── utils.go │ ├── soft_delete.go │ ├── statement.go │ └── utils │ ├── tests │ ├── dummy_dialecter.go │ ├── models.go │ └── utils.go │ └── utils.go ├── k8s.io ├── api │ ├── LICENSE │ ├── admission │ │ └── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── admissionregistration │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── apidiscovery │ │ ├── v2 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v2beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── apiserverinternal │ │ └── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── apps │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta2 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── authentication │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── authorization │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── autoscaling │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v2 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v2beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v2beta2 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── batch │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── certificates │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── coordination │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1alpha2 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── core │ │ └── v1 │ │ │ ├── annotation_key_constants.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── lifecycle.go │ │ │ ├── objectreference.go │ │ │ ├── register.go │ │ │ ├── resource.go │ │ │ ├── taint.go │ │ │ ├── toleration.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── well_known_labels.go │ │ │ ├── well_known_taints.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── discovery │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── well_known_labels.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── well_known_labels.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── events │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── extensions │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ │ ├── json.go │ │ │ │ │ └── meta.go │ │ │ │ ├── negotiated_codec.go │ │ │ │ ├── protobuf │ │ │ │ │ ├── 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 │ │ │ ├── httpstream │ │ │ │ ├── doc.go │ │ │ │ ├── httpstream.go │ │ │ │ ├── spdy │ │ │ │ │ ├── connection.go │ │ │ │ │ ├── roundtripper.go │ │ │ │ │ └── upgrade.go │ │ │ │ └── wsstream │ │ │ │ │ ├── conn.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── stream.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 │ │ │ ├── portforward │ │ │ │ └── constants.go │ │ │ ├── proxy │ │ │ │ ├── dial.go │ │ │ │ ├── doc.go │ │ │ │ ├── transport.go │ │ │ │ └── upgradeaware.go │ │ │ ├── rand │ │ │ │ └── rand.go │ │ │ ├── remotecommand │ │ │ │ └── constants.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 │ │ │ │ │ ├── errors.go │ │ │ │ │ └── path.go │ │ │ │ └── validation.go │ │ │ ├── wait │ │ │ │ ├── backoff.go │ │ │ │ ├── delay.go │ │ │ │ ├── doc.go │ │ │ │ ├── error.go │ │ │ │ ├── loop.go │ │ │ │ ├── poll.go │ │ │ │ ├── timer.go │ │ │ │ └── wait.go │ │ │ └── yaml │ │ │ │ └── decoder.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 │ │ ├── netutil │ │ └── addr.go │ │ └── reflect │ │ └── deep_equal.go ├── apiserver │ ├── LICENSE │ └── pkg │ │ └── authentication │ │ ├── serviceaccount │ │ └── util.go │ │ └── user │ │ ├── doc.go │ │ └── user.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 │ │ ├── coordination │ │ │ ├── v1 │ │ │ │ ├── lease.go │ │ │ │ └── leasespec.go │ │ │ ├── v1alpha2 │ │ │ │ ├── leasecandidate.go │ │ │ │ └── leasecandidatespec.go │ │ │ └── v1beta1 │ │ │ │ ├── lease.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 │ │ │ │ ├── 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 │ │ │ │ └── forzone.go │ │ │ └── v1beta1 │ │ │ │ ├── endpoint.go │ │ │ │ ├── endpointconditions.go │ │ │ │ ├── endpointhints.go │ │ │ │ ├── endpointport.go │ │ │ │ ├── endpointslice.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 │ │ │ │ ├── ipblock.go │ │ │ │ ├── networkpolicy.go │ │ │ │ ├── networkpolicyegressrule.go │ │ │ │ ├── networkpolicyingressrule.go │ │ │ │ ├── networkpolicypeer.go │ │ │ │ ├── networkpolicyport.go │ │ │ │ ├── networkpolicyspec.go │ │ │ │ └── servicebackendport.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 │ │ │ │ ├── device.go │ │ │ │ ├── deviceallocationconfiguration.go │ │ │ │ ├── deviceallocationresult.go │ │ │ │ ├── deviceattribute.go │ │ │ │ ├── deviceclaim.go │ │ │ │ ├── deviceclaimconfiguration.go │ │ │ │ ├── deviceclass.go │ │ │ │ ├── deviceclassconfiguration.go │ │ │ │ ├── deviceclassspec.go │ │ │ │ ├── deviceconfiguration.go │ │ │ │ ├── deviceconstraint.go │ │ │ │ ├── devicerequest.go │ │ │ │ ├── devicerequestallocationresult.go │ │ │ │ ├── deviceselector.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 │ │ │ │ ├── device.go │ │ │ │ ├── deviceallocationconfiguration.go │ │ │ │ ├── deviceallocationresult.go │ │ │ │ ├── deviceattribute.go │ │ │ │ ├── devicecapacity.go │ │ │ │ ├── deviceclaim.go │ │ │ │ ├── deviceclaimconfiguration.go │ │ │ │ ├── deviceclass.go │ │ │ │ ├── deviceclassconfiguration.go │ │ │ │ ├── deviceclassspec.go │ │ │ │ ├── deviceconfiguration.go │ │ │ │ ├── deviceconstraint.go │ │ │ │ ├── devicerequest.go │ │ │ │ ├── devicerequestallocationresult.go │ │ │ │ ├── deviceselector.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 │ │ │ │ └── interface.go │ │ ├── coordination │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── interface.go │ │ │ │ └── lease.go │ │ │ ├── v1alpha2 │ │ │ │ ├── interface.go │ │ │ │ └── leasecandidate.go │ │ │ └── v1beta1 │ │ │ │ ├── interface.go │ │ │ │ └── lease.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 │ │ │ │ └── networkpolicy.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 │ │ │ │ ├── interface.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ │ └── v1beta1 │ │ │ │ ├── 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 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_certificates_client.go │ │ │ │ ├── fake_certificatesigningrequest.go │ │ │ │ └── fake_certificatesigningrequest_expansion.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 │ │ │ │ ├── generated_expansion.go │ │ │ │ └── lease.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_networking_client.go │ │ │ │ │ └── fake_networkpolicy.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── networking_client.go │ │ │ │ └── networkpolicy.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 │ │ │ │ ├── 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 │ │ │ └── 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 │ │ │ ├── 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 │ │ │ │ └── expansion_generated.go │ │ ├── coordination │ │ │ ├── v1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── lease.go │ │ │ ├── v1alpha2 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── leasecandidate.go │ │ │ └── v1beta1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── lease.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 │ │ │ │ └── networkpolicy.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 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ │ └── v1beta1 │ │ │ │ ├── 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 │ ├── 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 │ │ │ ├── OWNERS │ │ │ ├── azure │ │ │ └── azure_stub.go │ │ │ ├── exec │ │ │ ├── exec.go │ │ │ └── metrics.go │ │ │ ├── gcp │ │ │ └── gcp_stub.go │ │ │ ├── oidc │ │ │ └── oidc.go │ │ │ ├── plugins.go │ │ │ └── plugins_providers.go │ ├── rest │ │ ├── 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 │ │ │ ├── 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 │ │ ├── portforward │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── fallback_dialer.go │ │ │ ├── portforward.go │ │ │ ├── tunneling_connection.go │ │ │ └── tunneling_dialer.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 │ │ ├── spdy │ │ │ └── spdy.go │ │ ├── token_source.go │ │ ├── transport.go │ │ └── websocket │ │ │ └── roundtripper.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 │ │ ├── retry │ │ ├── OWNERS │ │ └── util.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 ├── 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 │ └── pkg │ │ ├── cached │ │ └── cache.go │ │ ├── common │ │ ├── common.go │ │ ├── doc.go │ │ └── interfaces.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 │ │ └── 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 │ └── testing │ │ ├── fake_clock.go │ │ └── simple_interval_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 │ ├── strings │ └── slices │ │ └── slices.go │ └── trace │ ├── README.md │ └── trace.go ├── knative.dev └── pkg │ ├── LICENSE │ ├── apis │ ├── OWNERS │ ├── condition_set.go │ ├── condition_types.go │ ├── contexts.go │ ├── convert.go │ ├── deprecated.go │ ├── doc.go │ ├── duck │ │ ├── ABOUT.md │ │ ├── OWNERS │ │ ├── README.md │ │ ├── cached.go │ │ ├── const.go │ │ ├── doc.go │ │ ├── ducktypes │ │ │ └── ducktypes.go │ │ ├── enqueue.go │ │ ├── interface.go │ │ ├── patch.go │ │ ├── register.go │ │ ├── typed.go │ │ ├── unstructured.go │ │ ├── v1 │ │ │ ├── addressable_types.go │ │ │ ├── auth_types.go │ │ │ ├── binding_types.go │ │ │ ├── cronjob_defaults.go │ │ │ ├── cronjob_types.go │ │ │ ├── cronjob_validation.go │ │ │ ├── destination.go │ │ │ ├── doc.go │ │ │ ├── knative_reference.go │ │ │ ├── kresource_type.go │ │ │ ├── podspec_defaults.go │ │ │ ├── podspec_types.go │ │ │ ├── podspec_validation.go │ │ │ ├── register.go │ │ │ ├── source_types.go │ │ │ ├── status_types.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── v1alpha1 │ │ │ ├── addressable_types.go │ │ │ ├── binding_types.go │ │ │ ├── doc.go │ │ │ ├── legacy_targetable_types.go │ │ │ ├── register.go │ │ │ ├── retired_targetable_types.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── v1beta1 │ │ │ ├── addressable_types.go │ │ │ ├── binding_types.go │ │ │ ├── destination.go │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── source_types.go │ │ │ ├── status_types.go │ │ │ └── zz_generated.deepcopy.go │ │ └── verify.go │ ├── field_error.go │ ├── interfaces.go │ ├── kind2resource.go │ ├── metadata_validation.go │ ├── url.go │ ├── volatile_time.go │ └── zz_generated.deepcopy.go │ ├── changeset │ ├── commit.go │ └── doc.go │ ├── client │ └── injection │ │ └── kube │ │ ├── client │ │ ├── client.go │ │ └── fake │ │ │ └── fake.go │ │ └── informers │ │ ├── core │ │ └── v1 │ │ │ ├── configmap │ │ │ ├── configmap.go │ │ │ └── fake │ │ │ │ └── fake.go │ │ │ ├── limitrange │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ └── limitrange.go │ │ │ ├── pod │ │ │ └── filtered │ │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ │ └── pod.go │ │ │ ├── secret │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ └── secret.go │ │ │ └── serviceaccount │ │ │ ├── fake │ │ │ └── fake.go │ │ │ └── serviceaccount.go │ │ └── factory │ │ ├── factory.go │ │ ├── fake │ │ └── fake.go │ │ └── filtered │ │ ├── fake │ │ └── fake_filtered_factory.go │ │ └── filtered_factory.go │ ├── configmap │ ├── doc.go │ ├── example.go │ ├── filter.go │ ├── informer │ │ ├── informed_watcher.go │ │ └── synced_callback.go │ ├── load.go │ ├── manual_watcher.go │ ├── parse.go │ ├── static_watcher.go │ ├── store.go │ └── watcher.go │ ├── controller │ ├── OWNERS │ ├── controller.go │ ├── helper.go │ ├── options.go │ ├── stats_reporter.go │ └── two_lane_queue.go │ ├── environment │ └── client_config.go │ ├── hash │ ├── bucketer.go │ ├── doc.go │ └── hash.go │ ├── injection │ ├── README.md │ ├── clients.go │ ├── clients │ │ └── namespacedkube │ │ │ └── informers │ │ │ └── factory │ │ │ └── factory.go │ ├── config.go │ ├── context.go │ ├── doc.go │ ├── ducks.go │ ├── factories.go │ ├── health_check.go │ ├── informers.go │ ├── injection.go │ ├── interface.go │ └── sharedmain │ │ └── main.go │ ├── kmap │ ├── lookup.go │ └── map.go │ ├── kmeta │ ├── accessor.go │ ├── doc.go │ ├── labels.go │ ├── map.go │ ├── names.go │ ├── owner_references.go │ └── ownerrefable_accessor.go │ ├── kmp │ ├── diff.go │ ├── doc.go │ └── reporters.go │ ├── leaderelection │ ├── config.go │ ├── context.go │ └── doc.go │ ├── logging │ ├── config.go │ ├── logger.go │ ├── logkey │ │ └── constants.go │ ├── object_encoders.go │ ├── testing │ │ └── util.go │ ├── warning_handler.go │ └── zz_generated.deepcopy.go │ ├── metrics │ ├── README.md │ ├── client.go │ ├── config.go │ ├── config_observability.go │ ├── doc.go │ ├── exporter.go │ ├── memstats.go │ ├── metrics.go │ ├── metrics_worker.go │ ├── metricskey │ │ └── constants.go │ ├── metricstest │ │ ├── metricstest.go │ │ └── resource_metrics.go │ ├── opencensus_exporter.go │ ├── prometheus_exporter.go │ ├── record.go │ ├── resource_view.go │ ├── testing.go │ ├── testing │ │ └── config.go │ ├── utils.go │ ├── workqueue.go │ └── zz_generated.deepcopy.go │ ├── network │ ├── doc.go │ ├── domain.go │ ├── error_handler.go │ ├── h2c.go │ ├── handlers │ │ ├── doc.go │ │ ├── drain.go │ │ └── error.go │ ├── network.go │ └── transports.go │ ├── profiling │ └── server.go │ ├── ptr │ ├── doc.go │ ├── ptr.go │ └── value.go │ ├── reconciler │ ├── OWNERS │ ├── configstore.go │ ├── deletion.go │ ├── events.go │ ├── filter.go │ ├── leader.go │ ├── reconcile_common.go │ └── retry.go │ ├── signals │ ├── signal.go │ ├── signal_posix.go │ └── signal_windows.go │ ├── system │ ├── env.go │ └── testing │ │ └── names.go │ ├── test │ ├── OWNERS │ ├── README.md │ ├── cleanup.go │ ├── clients.go │ ├── crd.go │ ├── e2e_flags.go │ ├── environment │ │ └── config.go │ ├── helpers │ │ ├── dir.go │ │ ├── dryrun.go │ │ ├── error.go │ │ └── name.go │ ├── ingress │ │ └── ingress.go │ ├── kube_checks.go │ ├── logging │ │ └── logging.go │ ├── logstream │ │ ├── README.md │ │ ├── doc.go │ │ ├── interface.go │ │ ├── null.go │ │ └── v2 │ │ │ ├── interface.go │ │ │ └── stream.go │ ├── monitoring │ │ ├── doc.go │ │ └── monitoring.go │ ├── presubmit-tests.sh │ ├── request.go │ ├── spoof │ │ ├── error_checks.go │ │ ├── request.go │ │ ├── response_checks.go │ │ └── spoof.go │ ├── test-reconciler-codegen.sh │ ├── tinterface.go │ └── zipkin │ │ ├── doc.go │ │ └── util.go │ ├── tracing │ ├── config │ │ ├── doc.go │ │ ├── tracing.go │ │ └── zz_generated.deepcopy.go │ └── propagation │ │ ├── http_format_sequence.go │ │ └── tracecontextb3 │ │ └── http_format.go │ ├── tracker │ ├── doc.go │ ├── enqueue.go │ ├── interface.go │ └── zz_generated.deepcopy.go │ ├── version │ └── version.go │ └── webhook │ ├── OWNERS │ ├── README.md │ ├── admission.go │ ├── certificates │ └── resources │ │ ├── certs.go │ │ └── secret.go │ ├── context.go │ ├── conversion.go │ ├── env.go │ ├── helper.go │ ├── resourcesemantics │ └── interface.go │ ├── stats_reporter.go │ └── webhook.go ├── modules.txt └── sigs.k8s.io ├── 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 │ ├── image │ │ └── image.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 │ │ ├── kusterr │ │ │ └── yamlformaterror.go │ │ ├── plugins │ │ │ ├── builtinconfig │ │ │ │ ├── doc.go │ │ │ │ ├── loaddefaultconfig.go │ │ │ │ ├── namebackreferences.go │ │ │ │ └── transformerconfig.go │ │ │ ├── builtinhelpers │ │ │ │ ├── builtinplugintype_string.go │ │ │ │ └── builtins.go │ │ │ ├── execplugin │ │ │ │ └── execplugin.go │ │ │ ├── fnplugin │ │ │ │ └── fnplugin.go │ │ │ ├── loader │ │ │ │ └── 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 │ │ ├── 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 │ │ ├── doc.go │ │ ├── general.go │ │ └── plugins.go │ ├── krusty │ │ ├── doc.go │ │ ├── kustomizer.go │ │ └── options.go │ ├── kv │ │ └── kv.go │ ├── loader │ │ ├── errors.go │ │ ├── fileloader.go │ │ ├── loader.go │ │ └── loadrestrictions.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 │ │ └── starlark │ │ ├── context.go │ │ ├── doc.go │ │ └── starlark.go │ ├── internal │ └── forked │ │ └── github.com │ │ ├── go-yaml │ │ └── yaml │ │ │ ├── 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 │ │ └── qri-io │ │ └── starlib │ │ └── util │ │ ├── LICENSE │ │ ├── doc.go │ │ └── util.go │ ├── kio │ ├── byteio_reader.go │ ├── byteio_writer.go │ ├── doc.go │ ├── filters │ │ ├── filters.go │ │ ├── fmtr.go │ │ ├── grep.go │ │ ├── local.go │ │ ├── merge.go │ │ ├── merge3.go │ │ ├── modify.go │ │ └── stripcomments.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 │ ├── merge3 │ ├── merge3.go │ └── visitor.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 ├── 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 ├── CONTRIBUTING.md ├── LICENSE ├── OWNERS ├── README.md ├── RELEASE.md ├── SECURITY_CONTACTS ├── code-of-conduct.md ├── fields.go ├── goyaml.v2 ├── README.md └── yaml_aliases.go └── yaml.go /.errcheck.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/.errcheck.txt -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/go-coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/.github/workflows/go-coverage.yml -------------------------------------------------------------------------------- /.github/workflows/golangci-lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/.github/workflows/golangci-lint.yaml -------------------------------------------------------------------------------- /.github/workflows/presubmit-ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/.github/workflows/presubmit-ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/.yamllint -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/Makefile -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/OWNERS -------------------------------------------------------------------------------- /cmd/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/cmd/api/README.md -------------------------------------------------------------------------------- /cmd/api/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/cmd/api/main.go -------------------------------------------------------------------------------- /cmd/api/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/cmd/api/main_test.go -------------------------------------------------------------------------------- /cmd/cli-docs/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/cmd/cli-docs/main.go -------------------------------------------------------------------------------- /cmd/retention-policy-agent/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/cmd/retention-policy-agent/main.go -------------------------------------------------------------------------------- /cmd/tkn-results/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/cmd/tkn-results/README.md -------------------------------------------------------------------------------- /cmd/tkn-results/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/cmd/tkn-results/main.go -------------------------------------------------------------------------------- /cmd/watcher/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/cmd/watcher/main.go -------------------------------------------------------------------------------- /config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/config/README.md -------------------------------------------------------------------------------- /config/base/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/config/base/api.yaml -------------------------------------------------------------------------------- /config/base/config-info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/config/base/config-info.yaml -------------------------------------------------------------------------------- /config/base/config-logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/config/base/config-logging.yaml -------------------------------------------------------------------------------- /config/base/config-observability.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/config/base/config-observability.yaml -------------------------------------------------------------------------------- /config/base/default-clusterroles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/config/base/default-clusterroles.yaml -------------------------------------------------------------------------------- /config/base/env/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/config/base/env/config -------------------------------------------------------------------------------- /config/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/config/base/kustomization.yaml -------------------------------------------------------------------------------- /config/base/watcher.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/config/base/watcher.yaml -------------------------------------------------------------------------------- /config/components/logs-file/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/config/components/logs-file/api.yaml -------------------------------------------------------------------------------- /config/components/logs-file/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/config/components/logs-file/pvc.yaml -------------------------------------------------------------------------------- /docs/DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/docs/DEVELOPMENT.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/docs/api/README.md -------------------------------------------------------------------------------- /docs/api/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/docs/api/openapi.yaml -------------------------------------------------------------------------------- /docs/api/rest-api-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/docs/api/rest-api-spec.md -------------------------------------------------------------------------------- /docs/api/summary-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/docs/api/summary-api.md -------------------------------------------------------------------------------- /docs/cli/tkn-results.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/docs/cli/tkn-results.md -------------------------------------------------------------------------------- /docs/cli/tkn-results_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/docs/cli/tkn-results_config.md -------------------------------------------------------------------------------- /docs/cli/tkn-results_config_reset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/docs/cli/tkn-results_config_reset.md -------------------------------------------------------------------------------- /docs/cli/tkn-results_config_set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/docs/cli/tkn-results_config_set.md -------------------------------------------------------------------------------- /docs/cli/tkn-results_config_view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/docs/cli/tkn-results_config_view.md -------------------------------------------------------------------------------- /docs/cli/tkn-results_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/docs/cli/tkn-results_list.md -------------------------------------------------------------------------------- /docs/cli/tkn-results_logs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/docs/cli/tkn-results_logs.md -------------------------------------------------------------------------------- /docs/cli/tkn-results_logs_get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/docs/cli/tkn-results_logs_get.md -------------------------------------------------------------------------------- /docs/cli/tkn-results_logs_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/docs/cli/tkn-results_logs_list.md -------------------------------------------------------------------------------- /docs/cli/tkn-results_pipelinerun.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/docs/cli/tkn-results_pipelinerun.md -------------------------------------------------------------------------------- /docs/cli/tkn-results_records.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/docs/cli/tkn-results_records.md -------------------------------------------------------------------------------- /docs/cli/tkn-results_records_get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/docs/cli/tkn-results_records_get.md -------------------------------------------------------------------------------- /docs/cli/tkn-results_records_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/docs/cli/tkn-results_records_list.md -------------------------------------------------------------------------------- /docs/cli/tkn-results_result.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/docs/cli/tkn-results_result.md -------------------------------------------------------------------------------- /docs/cli/tkn-results_result_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/docs/cli/tkn-results_result_list.md -------------------------------------------------------------------------------- /docs/cli/tkn-results_taskrun.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/docs/cli/tkn-results_taskrun.md -------------------------------------------------------------------------------- /docs/cli/tkn-results_taskrun_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/docs/cli/tkn-results_taskrun_list.md -------------------------------------------------------------------------------- /docs/cli/tkn-results_taskrun_logs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/docs/cli/tkn-results_taskrun_logs.md -------------------------------------------------------------------------------- /docs/external-database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/docs/external-database.md -------------------------------------------------------------------------------- /docs/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/docs/install.md -------------------------------------------------------------------------------- /docs/logging-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/docs/logging-support.md -------------------------------------------------------------------------------- /docs/man/man1/tkn-results-config-set.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/docs/man/man1/tkn-results-config-set.1 -------------------------------------------------------------------------------- /docs/man/man1/tkn-results-config.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/docs/man/man1/tkn-results-config.1 -------------------------------------------------------------------------------- /docs/man/man1/tkn-results-logs-get.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/docs/man/man1/tkn-results-logs-get.1 -------------------------------------------------------------------------------- /docs/man/man1/tkn-results-logs-list.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/docs/man/man1/tkn-results-logs-list.1 -------------------------------------------------------------------------------- /docs/man/man1/tkn-results-logs.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/docs/man/man1/tkn-results-logs.1 -------------------------------------------------------------------------------- /docs/man/man1/tkn-results-records.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/docs/man/man1/tkn-results-records.1 -------------------------------------------------------------------------------- /docs/man/man1/tkn-results-result.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/docs/man/man1/tkn-results-result.1 -------------------------------------------------------------------------------- /docs/man/man1/tkn-results-taskrun.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/docs/man/man1/tkn-results-taskrun.1 -------------------------------------------------------------------------------- /docs/man/man1/tkn-results.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/docs/man/man1/tkn-results.1 -------------------------------------------------------------------------------- /docs/metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/docs/metrics.md -------------------------------------------------------------------------------- /docs/retention-policy-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/docs/retention-policy-agent/README.md -------------------------------------------------------------------------------- /docs/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/docs/roadmap.md -------------------------------------------------------------------------------- /docs/watcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/docs/watcher/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/go.sum -------------------------------------------------------------------------------- /internal/fieldmask/fieldmask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/internal/fieldmask/fieldmask.go -------------------------------------------------------------------------------- /internal/fieldmask/fieldmask_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/internal/fieldmask/fieldmask_test.go -------------------------------------------------------------------------------- /internal/fieldmask/test/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/internal/fieldmask/test/generate.go -------------------------------------------------------------------------------- /internal/fieldmask/test/test.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/internal/fieldmask/test/test.pb.go -------------------------------------------------------------------------------- /internal/fieldmask/test/test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/internal/fieldmask/test/test.proto -------------------------------------------------------------------------------- /pkg/api/server/cel/cel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/api/server/cel/cel.go -------------------------------------------------------------------------------- /pkg/api/server/cel/cel_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/api/server/cel/cel_test.go -------------------------------------------------------------------------------- /pkg/api/server/cel/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/api/server/cel/env.go -------------------------------------------------------------------------------- /pkg/api/server/cel2sql/concat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/api/server/cel2sql/concat.go -------------------------------------------------------------------------------- /pkg/api/server/cel2sql/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/api/server/cel2sql/convert.go -------------------------------------------------------------------------------- /pkg/api/server/cel2sql/convert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/api/server/cel2sql/convert_test.go -------------------------------------------------------------------------------- /pkg/api/server/cel2sql/functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/api/server/cel2sql/functions.go -------------------------------------------------------------------------------- /pkg/api/server/cel2sql/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/api/server/cel2sql/index.go -------------------------------------------------------------------------------- /pkg/api/server/cel2sql/interpreter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/api/server/cel2sql/interpreter.go -------------------------------------------------------------------------------- /pkg/api/server/cel2sql/operators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/api/server/cel2sql/operators.go -------------------------------------------------------------------------------- /pkg/api/server/cel2sql/select.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/api/server/cel2sql/select.go -------------------------------------------------------------------------------- /pkg/api/server/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/api/server/config/config.go -------------------------------------------------------------------------------- /pkg/api/server/db/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/api/server/db/errors/errors.go -------------------------------------------------------------------------------- /pkg/api/server/db/log_level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/api/server/db/log_level.go -------------------------------------------------------------------------------- /pkg/api/server/db/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/api/server/db/model.go -------------------------------------------------------------------------------- /pkg/api/server/db/model_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/api/server/db/model_test.go -------------------------------------------------------------------------------- /pkg/api/server/features/features.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/api/server/features/features.go -------------------------------------------------------------------------------- /pkg/api/server/logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/api/server/logger/logger.go -------------------------------------------------------------------------------- /pkg/api/server/test/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/api/server/test/db.go -------------------------------------------------------------------------------- /pkg/api/server/v1alpha2/auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/api/server/v1alpha2/auth/auth.go -------------------------------------------------------------------------------- /pkg/api/server/v1alpha2/auth/nop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/api/server/v1alpha2/auth/nop.go -------------------------------------------------------------------------------- /pkg/api/server/v1alpha2/auth/rbac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/api/server/v1alpha2/auth/rbac.go -------------------------------------------------------------------------------- /pkg/api/server/v1alpha2/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/api/server/v1alpha2/handlers.go -------------------------------------------------------------------------------- /pkg/api/server/v1alpha2/log/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/api/server/v1alpha2/log/file.go -------------------------------------------------------------------------------- /pkg/api/server/v1alpha2/log/gcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/api/server/v1alpha2/log/gcs.go -------------------------------------------------------------------------------- /pkg/api/server/v1alpha2/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/api/server/v1alpha2/log/log.go -------------------------------------------------------------------------------- /pkg/api/server/v1alpha2/log/s3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/api/server/v1alpha2/log/s3.go -------------------------------------------------------------------------------- /pkg/api/server/v1alpha2/log/s3_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/api/server/v1alpha2/log/s3_test.go -------------------------------------------------------------------------------- /pkg/api/server/v1alpha2/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/api/server/v1alpha2/logs.go -------------------------------------------------------------------------------- /pkg/api/server/v1alpha2/logs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/api/server/v1alpha2/logs_test.go -------------------------------------------------------------------------------- /pkg/api/server/v1alpha2/ordering.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/api/server/v1alpha2/ordering.go -------------------------------------------------------------------------------- /pkg/api/server/v1alpha2/pagination.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/api/server/v1alpha2/pagination.go -------------------------------------------------------------------------------- /pkg/api/server/v1alpha2/records.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/api/server/v1alpha2/records.go -------------------------------------------------------------------------------- /pkg/api/server/v1alpha2/results.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/api/server/v1alpha2/results.go -------------------------------------------------------------------------------- /pkg/api/server/v1alpha2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/api/server/v1alpha2/server.go -------------------------------------------------------------------------------- /pkg/api/server/v1alpha2/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/api/server/v1alpha2/server_test.go -------------------------------------------------------------------------------- /pkg/api/server/v1alpha2/summary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/api/server/v1alpha2/summary.go -------------------------------------------------------------------------------- /pkg/api/server/v1alpha2/test/token: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/api/server/v1alpha2/test/token -------------------------------------------------------------------------------- /pkg/apis/config/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/apis/config/metrics.go -------------------------------------------------------------------------------- /pkg/apis/config/retention.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/apis/config/retention.go -------------------------------------------------------------------------------- /pkg/apis/config/retention_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/apis/config/retention_test.go -------------------------------------------------------------------------------- /pkg/apis/config/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/apis/config/store.go -------------------------------------------------------------------------------- /pkg/apis/config/store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/apis/config/store_test.go -------------------------------------------------------------------------------- /pkg/apis/v1alpha3/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/apis/v1alpha3/types.go -------------------------------------------------------------------------------- /pkg/cli/client/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/client/base.go -------------------------------------------------------------------------------- /pkg/cli/client/base_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/client/base_test.go -------------------------------------------------------------------------------- /pkg/cli/client/logs/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/client/logs/logs.go -------------------------------------------------------------------------------- /pkg/cli/client/records/records.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/client/records/records.go -------------------------------------------------------------------------------- /pkg/cli/client/records/records_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/client/records/records_test.go -------------------------------------------------------------------------------- /pkg/cli/client/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/client/response.go -------------------------------------------------------------------------------- /pkg/cli/cmd/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/cmd/config/config.go -------------------------------------------------------------------------------- /pkg/cli/cmd/config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/cmd/config/config_test.go -------------------------------------------------------------------------------- /pkg/cli/cmd/config/reset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/cmd/config/reset.go -------------------------------------------------------------------------------- /pkg/cli/cmd/config/reset_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/cmd/config/reset_test.go -------------------------------------------------------------------------------- /pkg/cli/cmd/config/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/cmd/config/set.go -------------------------------------------------------------------------------- /pkg/cli/cmd/config/set_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/cmd/config/set_test.go -------------------------------------------------------------------------------- /pkg/cli/cmd/config/view.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/cmd/config/view.go -------------------------------------------------------------------------------- /pkg/cli/cmd/config/view_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/cmd/config/view_test.go -------------------------------------------------------------------------------- /pkg/cli/cmd/help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/cmd/help.txt -------------------------------------------------------------------------------- /pkg/cli/cmd/pipelinerun/describe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/cmd/pipelinerun/describe.go -------------------------------------------------------------------------------- /pkg/cli/cmd/pipelinerun/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/cmd/pipelinerun/list.go -------------------------------------------------------------------------------- /pkg/cli/cmd/pipelinerun/list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/cmd/pipelinerun/list_test.go -------------------------------------------------------------------------------- /pkg/cli/cmd/pipelinerun/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/cmd/pipelinerun/logs.go -------------------------------------------------------------------------------- /pkg/cli/cmd/pipelinerun/logs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/cmd/pipelinerun/logs_test.go -------------------------------------------------------------------------------- /pkg/cli/cmd/pipelinerun/pipelinerun.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/cmd/pipelinerun/pipelinerun.go -------------------------------------------------------------------------------- /pkg/cli/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/cmd/root.go -------------------------------------------------------------------------------- /pkg/cli/cmd/root_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/cmd/root_test.go -------------------------------------------------------------------------------- /pkg/cli/cmd/taskrun/describe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/cmd/taskrun/describe.go -------------------------------------------------------------------------------- /pkg/cli/cmd/taskrun/describe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/cmd/taskrun/describe_test.go -------------------------------------------------------------------------------- /pkg/cli/cmd/taskrun/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/cmd/taskrun/list.go -------------------------------------------------------------------------------- /pkg/cli/cmd/taskrun/list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/cmd/taskrun/list_test.go -------------------------------------------------------------------------------- /pkg/cli/cmd/taskrun/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/cmd/taskrun/logs.go -------------------------------------------------------------------------------- /pkg/cli/cmd/taskrun/logs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/cmd/taskrun/logs_test.go -------------------------------------------------------------------------------- /pkg/cli/cmd/taskrun/taskrun.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/cmd/taskrun/taskrun.go -------------------------------------------------------------------------------- /pkg/cli/cmd/taskrun/taskrun_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/cmd/taskrun/taskrun_test.go -------------------------------------------------------------------------------- /pkg/cli/common/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/common/constants.go -------------------------------------------------------------------------------- /pkg/cli/common/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/common/format.go -------------------------------------------------------------------------------- /pkg/cli/common/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/common/interface.go -------------------------------------------------------------------------------- /pkg/cli/common/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/common/labels.go -------------------------------------------------------------------------------- /pkg/cli/common/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/common/params.go -------------------------------------------------------------------------------- /pkg/cli/common/prerun/prerun.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/common/prerun/prerun.go -------------------------------------------------------------------------------- /pkg/cli/common/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/common/utils.go -------------------------------------------------------------------------------- /pkg/cli/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/config/config.go -------------------------------------------------------------------------------- /pkg/cli/config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/config/config_test.go -------------------------------------------------------------------------------- /pkg/cli/config/extension.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/config/extension.go -------------------------------------------------------------------------------- /pkg/cli/config/extension_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/config/extension_test.go -------------------------------------------------------------------------------- /pkg/cli/config/host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/config/host.go -------------------------------------------------------------------------------- /pkg/cli/config/host_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/config/host_test.go -------------------------------------------------------------------------------- /pkg/cli/config/platform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/config/platform.go -------------------------------------------------------------------------------- /pkg/cli/config/platform_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/config/platform_test.go -------------------------------------------------------------------------------- /pkg/cli/dev/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/dev/client/client.go -------------------------------------------------------------------------------- /pkg/cli/dev/client/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/dev/client/client_test.go -------------------------------------------------------------------------------- /pkg/cli/dev/cmd/logs/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/dev/cmd/logs/get.go -------------------------------------------------------------------------------- /pkg/cli/dev/cmd/logs/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/dev/cmd/logs/list.go -------------------------------------------------------------------------------- /pkg/cli/dev/cmd/logs/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/dev/cmd/logs/logs.go -------------------------------------------------------------------------------- /pkg/cli/dev/cmd/records/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/dev/cmd/records/get.go -------------------------------------------------------------------------------- /pkg/cli/dev/cmd/records/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/dev/cmd/records/list.go -------------------------------------------------------------------------------- /pkg/cli/dev/cmd/records/records.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/dev/cmd/records/records.go -------------------------------------------------------------------------------- /pkg/cli/dev/cmd/result/describe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/dev/cmd/result/describe.go -------------------------------------------------------------------------------- /pkg/cli/dev/cmd/result/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/dev/cmd/result/list.go -------------------------------------------------------------------------------- /pkg/cli/dev/cmd/result/result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/dev/cmd/result/result.go -------------------------------------------------------------------------------- /pkg/cli/dev/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/dev/config/config.go -------------------------------------------------------------------------------- /pkg/cli/dev/config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/dev/config/config_test.go -------------------------------------------------------------------------------- /pkg/cli/dev/config/testdata/empty.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/cli/dev/flags/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/dev/flags/flags.go -------------------------------------------------------------------------------- /pkg/cli/dev/format/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/dev/format/format.go -------------------------------------------------------------------------------- /pkg/cli/dev/portforward/portforward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/dev/portforward/portforward.go -------------------------------------------------------------------------------- /pkg/cli/flags/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/flags/flags.go -------------------------------------------------------------------------------- /pkg/cli/flags/flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/flags/flags_test.go -------------------------------------------------------------------------------- /pkg/cli/options/describe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/options/describe.go -------------------------------------------------------------------------------- /pkg/cli/options/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/options/list.go -------------------------------------------------------------------------------- /pkg/cli/options/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/options/logs.go -------------------------------------------------------------------------------- /pkg/cli/testutils/cobra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/testutils/cobra.go -------------------------------------------------------------------------------- /pkg/cli/testutils/kubeconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/testutils/kubeconfig.go -------------------------------------------------------------------------------- /pkg/cli/testutils/mock_rest_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/testutils/mock_rest_client.go -------------------------------------------------------------------------------- /pkg/cli/testutils/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/testutils/params.go -------------------------------------------------------------------------------- /pkg/cli/testutils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/cli/testutils/utils.go -------------------------------------------------------------------------------- /pkg/converter/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/converter/convert.go -------------------------------------------------------------------------------- /pkg/internal/jsonutil/jsonutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/internal/jsonutil/jsonutil.go -------------------------------------------------------------------------------- /pkg/internal/protoutil/protoutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/internal/protoutil/protoutil.go -------------------------------------------------------------------------------- /pkg/internal/test/clients.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/internal/test/clients.go -------------------------------------------------------------------------------- /pkg/logs/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/logs/writer.go -------------------------------------------------------------------------------- /pkg/logs/writer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/logs/writer_test.go -------------------------------------------------------------------------------- /pkg/metrics/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/metrics/metrics.go -------------------------------------------------------------------------------- /pkg/metrics/metrics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/metrics/metrics_test.go -------------------------------------------------------------------------------- /pkg/pipelinerunmetrics/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/pipelinerunmetrics/metrics.go -------------------------------------------------------------------------------- /pkg/pipelinerunmetrics/metrics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/pipelinerunmetrics/metrics_test.go -------------------------------------------------------------------------------- /pkg/retention/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/retention/config.go -------------------------------------------------------------------------------- /pkg/retention/injection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/retention/injection.go -------------------------------------------------------------------------------- /pkg/retention/job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/retention/job.go -------------------------------------------------------------------------------- /pkg/retention/job_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/retention/job_test.go -------------------------------------------------------------------------------- /pkg/taskrunmetrics/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/taskrunmetrics/metrics.go -------------------------------------------------------------------------------- /pkg/taskrunmetrics/metrics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/taskrunmetrics/metrics_test.go -------------------------------------------------------------------------------- /pkg/test/expect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/test/expect.go -------------------------------------------------------------------------------- /pkg/test/fake/results.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/test/fake/results.go -------------------------------------------------------------------------------- /pkg/watcher/convert/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/watcher/convert/convert.go -------------------------------------------------------------------------------- /pkg/watcher/convert/convert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/watcher/convert/convert_test.go -------------------------------------------------------------------------------- /pkg/watcher/grpc/creds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/watcher/grpc/creds.go -------------------------------------------------------------------------------- /pkg/watcher/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/watcher/grpc/doc.go -------------------------------------------------------------------------------- /pkg/watcher/logs/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/watcher/logs/client.go -------------------------------------------------------------------------------- /pkg/watcher/reconciler/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/watcher/reconciler/config.go -------------------------------------------------------------------------------- /pkg/watcher/reconciler/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/watcher/reconciler/config_test.go -------------------------------------------------------------------------------- /pkg/watcher/results/eventlist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/watcher/results/eventlist.go -------------------------------------------------------------------------------- /pkg/watcher/results/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/watcher/results/logs.go -------------------------------------------------------------------------------- /pkg/watcher/results/logs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/watcher/results/logs_test.go -------------------------------------------------------------------------------- /pkg/watcher/results/results.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/watcher/results/results.go -------------------------------------------------------------------------------- /pkg/watcher/results/results_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/pkg/watcher/results/results_test.go -------------------------------------------------------------------------------- /proto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/proto/README.md -------------------------------------------------------------------------------- /proto/pipeline/v1/common.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/proto/pipeline/v1/common.proto -------------------------------------------------------------------------------- /proto/pipeline/v1/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/proto/pipeline/v1/generate.go -------------------------------------------------------------------------------- /proto/pipeline/v1/pipelinerun.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/proto/pipeline/v1/pipelinerun.proto -------------------------------------------------------------------------------- /proto/pipeline/v1/taskrun.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/proto/pipeline/v1/taskrun.proto -------------------------------------------------------------------------------- /proto/v1alpha2/api.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/proto/v1alpha2/api.proto -------------------------------------------------------------------------------- /proto/v1alpha2/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/proto/v1alpha2/generate.go -------------------------------------------------------------------------------- /proto/v1alpha2/resources.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/proto/v1alpha2/resources.proto -------------------------------------------------------------------------------- /proto/v1alpha3/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/proto/v1alpha3/generate.go -------------------------------------------------------------------------------- /proto/v1alpha3/log.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/proto/v1alpha3/log.proto -------------------------------------------------------------------------------- /release/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/release/kustomization.yaml -------------------------------------------------------------------------------- /release/localdb/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/release/localdb/kustomization.yaml -------------------------------------------------------------------------------- /release/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/release/release.sh -------------------------------------------------------------------------------- /release/release.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tekton/ci-run.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/tekton/ci-run.yaml -------------------------------------------------------------------------------- /tekton/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/tekton/ci.yaml -------------------------------------------------------------------------------- /tekton/release-cheatsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/tekton/release-cheatsheet.md -------------------------------------------------------------------------------- /tekton/release-run.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/tekton/release-run.yaml -------------------------------------------------------------------------------- /tekton/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/tekton/release.yaml -------------------------------------------------------------------------------- /tekton/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/tekton/serviceaccount.yaml -------------------------------------------------------------------------------- /tekton/trigger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/tekton/trigger.yaml -------------------------------------------------------------------------------- /test/e2e-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/test/e2e-tests.sh -------------------------------------------------------------------------------- /test/e2e/00-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/test/e2e/00-setup.sh -------------------------------------------------------------------------------- /test/e2e/01-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/test/e2e/01-install.sh -------------------------------------------------------------------------------- /test/e2e/02-logs-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/test/e2e/02-logs-setup.sh -------------------------------------------------------------------------------- /test/e2e/02-loki-vector.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/test/e2e/02-loki-vector.sh -------------------------------------------------------------------------------- /test/e2e/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/test/e2e/README.md -------------------------------------------------------------------------------- /test/e2e/blob-logs/vector-s3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/test/e2e/blob-logs/vector-s3.yaml -------------------------------------------------------------------------------- /test/e2e/client/grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/test/e2e/client/grpc.go -------------------------------------------------------------------------------- /test/e2e/client/rest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/test/e2e/client/rest.go -------------------------------------------------------------------------------- /test/e2e/e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/test/e2e/e2e.sh -------------------------------------------------------------------------------- /test/e2e/e2e_gcs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/test/e2e/e2e_gcs_test.go -------------------------------------------------------------------------------- /test/e2e/e2e_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/test/e2e/e2e_test.go -------------------------------------------------------------------------------- /test/e2e/gcs-emulator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/test/e2e/gcs-emulator.yaml -------------------------------------------------------------------------------- /test/e2e/kind-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/test/e2e/kind-cluster.yaml -------------------------------------------------------------------------------- /test/e2e/kind-runner/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/test/e2e/kind-runner/Dockerfile -------------------------------------------------------------------------------- /test/e2e/kustomize/api-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/test/e2e/kustomize/api-service.yaml -------------------------------------------------------------------------------- /test/e2e/kustomize/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/test/e2e/kustomize/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/kustomize/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/test/e2e/kustomize/rbac.yaml -------------------------------------------------------------------------------- /test/e2e/kustomize/watcher.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/test/e2e/kustomize/watcher.yaml -------------------------------------------------------------------------------- /test/e2e/loki_vector/loki.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/test/e2e/loki_vector/loki.yaml -------------------------------------------------------------------------------- /test/e2e/loki_vector/vector.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/test/e2e/loki_vector/vector.yaml -------------------------------------------------------------------------------- /test/e2e/tekton/task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/test/e2e/tekton/task.yaml -------------------------------------------------------------------------------- /test/e2e/testdata/pipelinerun.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/test/e2e/testdata/pipelinerun.yaml -------------------------------------------------------------------------------- /test/e2e/testdata/pipelinerungcs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/test/e2e/testdata/pipelinerungcs.yaml -------------------------------------------------------------------------------- /test/e2e/testdata/taskrun.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/test/e2e/testdata/taskrun.yaml -------------------------------------------------------------------------------- /test/presubmit-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/test/presubmit-tests.sh -------------------------------------------------------------------------------- /tools/postgres-migrate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/tools/postgres-migrate/README.md -------------------------------------------------------------------------------- /tools/postgres-migrate/config/common.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/postgres-migrate/legacy_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/tools/postgres-migrate/legacy_model.go -------------------------------------------------------------------------------- /tools/postgres-migrate/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/tools/postgres-migrate/main.go -------------------------------------------------------------------------------- /tools/postgres-migrate/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/tools/postgres-migrate/main_test.go -------------------------------------------------------------------------------- /tools/postgres-migrate/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/tools/postgres-migrate/test.sh -------------------------------------------------------------------------------- /tools/simpleui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/tools/simpleui/README.md -------------------------------------------------------------------------------- /tools/simpleui/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/tools/simpleui/main.go -------------------------------------------------------------------------------- /tools/simpleui/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/tools/simpleui/template.go -------------------------------------------------------------------------------- /tools/simpleui/templates/records.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/tools/simpleui/templates/records.html -------------------------------------------------------------------------------- /tools/simpleui/templates/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/tools/simpleui/templates/results.html -------------------------------------------------------------------------------- /vendor/cel.dev/expr/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.3.2 2 | # Keep this pinned version in parity with cel-go 3 | -------------------------------------------------------------------------------- /vendor/cel.dev/expr/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/cel.dev/expr/.gitattributes -------------------------------------------------------------------------------- /vendor/cel.dev/expr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/cel.dev/expr/.gitignore -------------------------------------------------------------------------------- /vendor/cel.dev/expr/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/cel.dev/expr/BUILD.bazel -------------------------------------------------------------------------------- /vendor/cel.dev/expr/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/cel.dev/expr/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /vendor/cel.dev/expr/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/cel.dev/expr/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/cel.dev/expr/GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/cel.dev/expr/GOVERNANCE.md -------------------------------------------------------------------------------- /vendor/cel.dev/expr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/cel.dev/expr/LICENSE -------------------------------------------------------------------------------- /vendor/cel.dev/expr/MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/cel.dev/expr/MAINTAINERS.md -------------------------------------------------------------------------------- /vendor/cel.dev/expr/MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/cel.dev/expr/MODULE.bazel -------------------------------------------------------------------------------- /vendor/cel.dev/expr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/cel.dev/expr/README.md -------------------------------------------------------------------------------- /vendor/cel.dev/expr/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/cel.dev/expr/WORKSPACE -------------------------------------------------------------------------------- /vendor/cel.dev/expr/WORKSPACE.bzlmod: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/cel.dev/expr/checked.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/cel.dev/expr/checked.pb.go -------------------------------------------------------------------------------- /vendor/cel.dev/expr/cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/cel.dev/expr/cloudbuild.yaml -------------------------------------------------------------------------------- /vendor/cel.dev/expr/eval.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/cel.dev/expr/eval.pb.go -------------------------------------------------------------------------------- /vendor/cel.dev/expr/explain.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/cel.dev/expr/explain.pb.go -------------------------------------------------------------------------------- /vendor/cel.dev/expr/regen_go_proto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/cel.dev/expr/regen_go_proto.sh -------------------------------------------------------------------------------- /vendor/cel.dev/expr/syntax.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/cel.dev/expr/syntax.pb.go -------------------------------------------------------------------------------- /vendor/cel.dev/expr/value.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/cel.dev/expr/value.pb.go -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/cloud.google.com/go/LICENSE -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/iam/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/cloud.google.com/go/iam/LICENSE -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/iam/iam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/cloud.google.com/go/iam/iam.go -------------------------------------------------------------------------------- /vendor/contrib.go.opencensus.io/exporter/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | -------------------------------------------------------------------------------- /vendor/filippo.io/edwards25519/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/filippo.io/edwards25519/LICENSE -------------------------------------------------------------------------------- /vendor/filippo.io/edwards25519/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/filippo.io/edwards25519/doc.go -------------------------------------------------------------------------------- /vendor/github.com/AlecAivazis/survey/v2/filter.go: -------------------------------------------------------------------------------- 1 | package survey 2 | -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @microsoft/containerplat 2 | -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/NOTICE: -------------------------------------------------------------------------------- 1 | Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2 | -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/aws/smithy-go/doc.go -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/beorn7/perks/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/blendle/zapdriver/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/census-instrumentation/opencensus-proto/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. -------------------------------------------------------------------------------- /vendor/github.com/cncf/xds/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/cncf/xds/go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/docker/cli/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/docker/cli/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/docker/cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/docker/cli/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/docker/cli/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/docker/cli/NOTICE -------------------------------------------------------------------------------- /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/fatih/color/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/fatih/color/color.go -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/fatih/color/doc.go -------------------------------------------------------------------------------- /vendor/github.com/felixge/httpsnoop/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/gdamore/tcell/v2/.gitignore: -------------------------------------------------------------------------------- 1 | coverage.txt 2 | -------------------------------------------------------------------------------- /vendor/github.com/gdamore/tcell/v2/terminfo/.gitignore: -------------------------------------------------------------------------------- 1 | mkinfo 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-kit/log/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/go-kit/log/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-kit/log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/go-kit/log/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-kit/log/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/go-kit/log/doc.go -------------------------------------------------------------------------------- /vendor/github.com/go-kit/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/go-kit/log/log.go -------------------------------------------------------------------------------- /vendor/github.com/go-kit/log/staticcheck.conf: -------------------------------------------------------------------------------- 1 | checks = ["all"] 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-kit/log/stdlib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/go-kit/log/stdlib.go -------------------------------------------------------------------------------- /vendor/github.com/go-kit/log/sync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/go-kit/log/sync.go -------------------------------------------------------------------------------- /vendor/github.com/go-kit/log/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/go-kit/log/value.go -------------------------------------------------------------------------------- /vendor/github.com/go-logfmt/logfmt/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/go-logr/logr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/logr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/go-logr/logr/logr.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/go-logr/stdr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/stdr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/go-logr/stdr/stdr.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/jsonpointer/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/jsonreference/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | vendor 3 | Godeps 4 | .idea 5 | *.out 6 | -------------------------------------------------------------------------------- /vendor/github.com/golang-jwt/jwt/v4/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | bin 3 | .idea/ 4 | 5 | -------------------------------------------------------------------------------- /vendor/github.com/google/btree/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/google/btree/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/google/gofuzz/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/martian/v3/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /vendor/github.com/google/s2a-go/s2a.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/google/s2a-go/s2a.go -------------------------------------------------------------------------------- /vendor/github.com/google/shlex/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/google/shlex/COPYING -------------------------------------------------------------------------------- /vendor/github.com/google/shlex/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/google/shlex/README -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/google/uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/google/uuid/dce.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/google/uuid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/google/uuid/hash.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/google/uuid/node.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/null.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/google/uuid/null.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/google/uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/google/uuid/time.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/google/uuid/util.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/google/uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/google/wire/.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf 2 | -------------------------------------------------------------------------------- /vendor/github.com/google/wire/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/google/wire/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/google/wire/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/google/wire/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/wire/wire.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/google/wire/wire.go -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gax-go/v2/.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "v2": "2.15.0" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/gorilla/mux/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/gorilla/mux/Makefile -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/gorilla/mux/doc.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/gorilla/mux/mux.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/gorilla/mux/route.go -------------------------------------------------------------------------------- /vendor/github.com/hako/durafmt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/hako/durafmt/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/hako/durafmt/unit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/hako/durafmt/unit.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/imdario/mergo/doc.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/imdario/mergo/map.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgconn/.gitignore: -------------------------------------------------------------------------------- 1 | .envrc 2 | vendor/ 3 | .vscode 4 | -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgconn/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/jackc/pgconn/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgconn/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/jackc/pgconn/doc.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgconn/krb5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/jackc/pgconn/krb5.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgio/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/jackc/pgio/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/jackc/pgio/README.md -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgio/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/jackc/pgio/doc.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgio/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/jackc/pgio/write.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/jackc/pgx/v5/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/jackc/pgx/v5/conn.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/jackc/pgx/v5/doc.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/rows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/jackc/pgx/v5/rows.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/jackc/pgx/v5/tx.go -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/now/Guardfile: -------------------------------------------------------------------------------- 1 | guard 'gotest' do 2 | watch(%r{\.go$}) 3 | end 4 | -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/now/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/jinzhu/now/License -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/now/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/jinzhu/now/README.md -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/now/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/jinzhu/now/main.go -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/now/now.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/jinzhu/now/now.go -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/now/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/jinzhu/now/time.go -------------------------------------------------------------------------------- /vendor/github.com/jmespath/go-jmespath/NOTICE: -------------------------------------------------------------------------------- 1 | go-jmespath 2 | Copyright 2015 James Saryerwinnie 3 | -------------------------------------------------------------------------------- /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/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/ktr0731/go-ansisgr/.gitignore: -------------------------------------------------------------------------------- 1 | coverage.txt 2 | -------------------------------------------------------------------------------- /vendor/github.com/ktr0731/go-fuzzyfinder/.goreleaser.yml: -------------------------------------------------------------------------------- 1 | builds: 2 | - skip: true 3 | -------------------------------------------------------------------------------- /vendor/github.com/mgutz/ansi/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | -------------------------------------------------------------------------------- /vendor/github.com/mgutz/ansi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/mgutz/ansi/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mgutz/ansi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/mgutz/ansi/README.md -------------------------------------------------------------------------------- /vendor/github.com/mgutz/ansi/ansi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/mgutz/ansi/ansi.go -------------------------------------------------------------------------------- /vendor/github.com/mgutz/ansi/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/mgutz/ansi/doc.go -------------------------------------------------------------------------------- /vendor/github.com/mgutz/ansi/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/mgutz/ansi/print.go -------------------------------------------------------------------------------- /vendor/github.com/moby/term/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/moby/term/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/moby/term/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/moby/term/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/moby/term/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/moby/term/README.md -------------------------------------------------------------------------------- /vendor/github.com/moby/term/ascii.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/moby/term/ascii.go -------------------------------------------------------------------------------- /vendor/github.com/moby/term/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/moby/term/doc.go -------------------------------------------------------------------------------- /vendor/github.com/moby/term/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/moby/term/proxy.go -------------------------------------------------------------------------------- /vendor/github.com/moby/term/term.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/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/pelletier/go-toml/v2/internal/tracker/tracker.go: -------------------------------------------------------------------------------- 1 | package tracker 2 | -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/pkg/errors/Makefile -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/pkg/errors/README.md -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/pkg/errors/errors.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/go113.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/pkg/errors/go113.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/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/rivo/uniseg/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/rivo/uniseg/doc.go -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/line.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/rivo/uniseg/line.go -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/step.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/rivo/uniseg/step.go -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/width.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/rivo/uniseg/width.go -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/word.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/rivo/uniseg/word.go -------------------------------------------------------------------------------- /vendor/github.com/robfig/cron/v3/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | vendor 3 | 4 | .idea/ 5 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/afero.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/spf13/afero/afero.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/iofs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/spf13/afero/iofs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/spf13/afero/match.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/os.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/spf13/afero/os.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/spf13/afero/path.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/spf13/afero/util.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/spf13/cast/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/spf13/cast/Makefile -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/spf13/cast/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/alias.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/spf13/cast/alias.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/basic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/spf13/cast/basic.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/cast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/spf13/cast/cast.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/spf13/cast/map.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/spf13/cast/number.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/spf13/cast/slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/spf13/cast/time.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/spf13/cobra/.mailmap -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/spf13/cobra/Makefile -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/spf13/cobra/args.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/cobra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/spf13/cobra/cobra.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/spf13/pflag/bytes.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/spf13/pflag/func.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/spf13/pflag/int16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/spf13/pflag/text.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/spf13/pflag/time.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/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/tektoncd/results/HEAD/vendor/github.com/spf13/viper/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/spf13/viper/Makefile -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/spf13/viper/file.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/spf13/viper/flags.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/spf13/viper/util.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/viper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/spf13/viper/viper.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/tektoncd/cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/tektoncd/cli/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/tektoncd/pipeline/test/OWNERS: -------------------------------------------------------------------------------- 1 | labels: 2 | - area/testing -------------------------------------------------------------------------------- /vendor/github.com/x448/float16/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/github.com/x448/float16/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/xlab/treeprint/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/** 2 | .idea 3 | **/**.iml 4 | -------------------------------------------------------------------------------- /vendor/go.opencensus.io/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.opencensus.io/.gitignore -------------------------------------------------------------------------------- /vendor/go.opencensus.io/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/go.opencensus.io/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.opencensus.io/LICENSE -------------------------------------------------------------------------------- /vendor/go.opencensus.io/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.opencensus.io/Makefile -------------------------------------------------------------------------------- /vendor/go.opencensus.io/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.opencensus.io/README.md -------------------------------------------------------------------------------- /vendor/go.opencensus.io/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.opencensus.io/appveyor.yml -------------------------------------------------------------------------------- /vendor/go.opencensus.io/opencensus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.opencensus.io/opencensus.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/stats/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.opencensus.io/stats/doc.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/stats/units.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.opencensus.io/stats/units.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.opencensus.io/tag/context.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.opencensus.io/tag/doc.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.opencensus.io/tag/key.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.opencensus.io/tag/map.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.opencensus.io/trace/doc.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.opencensus.io/trace/trace.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.opentelemetry.io/otel/doc.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/requirements.txt: -------------------------------------------------------------------------------- 1 | codespell==2.4.1 2 | -------------------------------------------------------------------------------- /vendor/go.starlark.net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.starlark.net/LICENSE -------------------------------------------------------------------------------- /vendor/go.starlark.net/starlark/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.starlark.net/starlark/int.go -------------------------------------------------------------------------------- /vendor/go.starlark.net/syntax/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.starlark.net/syntax/parse.go -------------------------------------------------------------------------------- /vendor/go.starlark.net/syntax/quote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.starlark.net/syntax/quote.go -------------------------------------------------------------------------------- /vendor/go.starlark.net/syntax/scan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.starlark.net/syntax/scan.go -------------------------------------------------------------------------------- /vendor/go.starlark.net/syntax/walk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.starlark.net/syntax/walk.go -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.uber.org/multierr/.gitignore -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.uber.org/multierr/Makefile -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.uber.org/multierr/README.md -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.uber.org/multierr/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.uber.org/zap/.codecov.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.uber.org/zap/.gitignore -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.uber.org/zap/.golangci.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.readme.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.uber.org/zap/.readme.tmpl -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.uber.org/zap/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.uber.org/zap/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.uber.org/zap/FAQ.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.uber.org/zap/LICENSE -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.uber.org/zap/Makefile -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.uber.org/zap/README.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.uber.org/zap/array.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/buffer/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.uber.org/zap/buffer/pool.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/checklicense.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.uber.org/zap/checklicense.sh -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.uber.org/zap/config.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.uber.org/zap/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.uber.org/zap/encoder.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.uber.org/zap/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.uber.org/zap/field.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.uber.org/zap/flag.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.uber.org/zap/glide.yaml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.uber.org/zap/global.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/http_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.uber.org/zap/http_handler.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.uber.org/zap/level.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.uber.org/zap/logger.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.uber.org/zap/options.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/sink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.uber.org/zap/sink.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/sugar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.uber.org/zap/sugar.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.uber.org/zap/time.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.uber.org/zap/writer.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.uber.org/zap/zapcore/core.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.uber.org/zap/zapcore/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.uber.org/zap/zapcore/hook.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/tee.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.uber.org/zap/zapcore/tee.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zaptest/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.uber.org/zap/zaptest/doc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.yaml.in/yaml/v2/.travis.yml -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.yaml.in/yaml/v2/LICENSE -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.yaml.in/yaml/v2/NOTICE -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.yaml.in/yaml/v2/README.md -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.yaml.in/yaml/v2/apic.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.yaml.in/yaml/v2/decode.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.yaml.in/yaml/v2/emitterc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.yaml.in/yaml/v2/encode.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.yaml.in/yaml/v2/parserc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.yaml.in/yaml/v2/readerc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.yaml.in/yaml/v2/resolve.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.yaml.in/yaml/v2/scannerc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.yaml.in/yaml/v2/sorter.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.yaml.in/yaml/v2/writerc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.yaml.in/yaml/v2/yaml.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.yaml.in/yaml/v2/yamlh.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.yaml.in/yaml/v3/LICENSE -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.yaml.in/yaml/v3/NOTICE -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.yaml.in/yaml/v3/README.md -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.yaml.in/yaml/v3/apic.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.yaml.in/yaml/v3/decode.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.yaml.in/yaml/v3/emitterc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.yaml.in/yaml/v3/encode.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.yaml.in/yaml/v3/parserc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.yaml.in/yaml/v3/readerc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.yaml.in/yaml/v3/resolve.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.yaml.in/yaml/v3/scannerc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.yaml.in/yaml/v3/sorter.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.yaml.in/yaml/v3/writerc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.yaml.in/yaml/v3/yaml.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/go.yaml.in/yaml/v3/yamlh.go -------------------------------------------------------------------------------- /vendor/gocloud.dev/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gocloud.dev/AUTHORS -------------------------------------------------------------------------------- /vendor/gocloud.dev/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gocloud.dev/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/gocloud.dev/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gocloud.dev/LICENSE -------------------------------------------------------------------------------- /vendor/gocloud.dev/aws/aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gocloud.dev/aws/aws.go -------------------------------------------------------------------------------- /vendor/gocloud.dev/blob/blob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gocloud.dev/blob/blob.go -------------------------------------------------------------------------------- /vendor/gocloud.dev/blob/blob_fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gocloud.dev/blob/blob_fs.go -------------------------------------------------------------------------------- /vendor/gocloud.dev/blob/gcsblob/iam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gocloud.dev/blob/gcsblob/iam.go -------------------------------------------------------------------------------- /vendor/gocloud.dev/gcerrors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gocloud.dev/gcerrors/errors.go -------------------------------------------------------------------------------- /vendor/gocloud.dev/gcp/gcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gocloud.dev/gcp/gcp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/exp/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/exp/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/slices/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/exp/slices/sort.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/net/html/const.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/net/html/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/net/html/entity.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/escape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/net/html/escape.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/net/html/iter.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/net/html/node.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/net/html/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/net/html/render.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/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/ascii.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/net/http2/ascii.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/go118.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/net/idna/go118.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/dial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/net/proxy/dial.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/net/proxy/proxy.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/oauth2/.travis.yml -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/oauth2/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/oauth2/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/jws/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/oauth2/jws/jws.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/jwt/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/oauth2/jwt/jwt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/oauth2/oauth2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/pkce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/oauth2/pkce.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/oauth2/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/sync/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/sync/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/sys/cpu/cpu.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/sys/cpu/cpu_aix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/sys/cpu/cpu_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_x86.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/sys/cpu/cpu_x86.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/sys/cpu/cpu_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/sys/cpu/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/sys/plan9/asm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/sys/plan9/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/sys/plan9/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/sys/plan9/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/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/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/auxv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/sys/unix/auxv.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fdset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/sys/unix/fdset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mremap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/sys/unix/mremap.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/term/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/term/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/term/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/term/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/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/tektoncd/results/HEAD/vendor/golang.org/x/term/term.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/term/term_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/term/term_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/terminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/term/terminal.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/fold.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/text/cases/fold.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/icu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/text/cases/icu.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/text/cases/info.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/text/cases/map.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/text/runes/cond.go -------------------------------------------------------------------------------- /vendor/golang.org/x/time/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/time/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/time/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/time/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/rate/rate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/time/rate/rate.go -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/xerrors/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/xerrors/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/xerrors/README -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/xerrors/adaptor.go -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/xerrors/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/xerrors/errors.go -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/fmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/xerrors/fmt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/xerrors/format.go -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/xerrors/frame.go -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/wrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/golang.org/x/xerrors/wrap.go -------------------------------------------------------------------------------- /vendor/google.golang.org/api/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/google.golang.org/api/AUTHORS -------------------------------------------------------------------------------- /vendor/google.golang.org/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/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/tektoncd/results/HEAD/vendor/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/google.golang.org/grpc/Makefile -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/google.golang.org/grpc/call.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/google.golang.org/grpc/codec.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/google.golang.org/grpc/doc.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/google.golang.org/grpc/trace.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gopkg.in/inf.v0/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/dec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gopkg.in/inf.v0/dec.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/rounder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gopkg.in/inf.v0/rounder.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gopkg.in/yaml.v3/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gopkg.in/yaml.v3/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gopkg.in/yaml.v3/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gopkg.in/yaml.v3/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gopkg.in/yaml.v3/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gopkg.in/yaml.v3/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gopkg.in/yaml.v3/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gopkg.in/yaml.v3/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gopkg.in/yaml.v3/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gopkg.in/yaml.v3/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gopkg.in/yaml.v3/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gopkg.in/yaml.v3/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gopkg.in/yaml.v3/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gopkg.in/yaml.v3/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gopkg.in/yaml.v3/yamlh.go -------------------------------------------------------------------------------- /vendor/gorm.io/driver/mysql/.gitignore: -------------------------------------------------------------------------------- 1 | TODO* 2 | documents 3 | coverage.txt 4 | _book 5 | .idea 6 | vendor -------------------------------------------------------------------------------- /vendor/gorm.io/driver/mysql/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/driver/mysql/License -------------------------------------------------------------------------------- /vendor/gorm.io/driver/mysql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/driver/mysql/README.md -------------------------------------------------------------------------------- /vendor/gorm.io/driver/mysql/mysql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/driver/mysql/mysql.go -------------------------------------------------------------------------------- /vendor/gorm.io/driver/postgres/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /vendor/gorm.io/driver/postgres/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/driver/postgres/License -------------------------------------------------------------------------------- /vendor/gorm.io/driver/sqlite/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /vendor/gorm.io/driver/sqlite/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/driver/sqlite/License -------------------------------------------------------------------------------- /vendor/gorm.io/driver/sqlite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/driver/sqlite/README.md -------------------------------------------------------------------------------- /vendor/gorm.io/driver/sqlite/ddlmod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/driver/sqlite/ddlmod.go -------------------------------------------------------------------------------- /vendor/gorm.io/driver/sqlite/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/driver/sqlite/errors.go -------------------------------------------------------------------------------- /vendor/gorm.io/driver/sqlite/sqlite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/driver/sqlite/sqlite.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/.gitignore: -------------------------------------------------------------------------------- 1 | TODO* 2 | documents 3 | coverage.txt 4 | _book 5 | .idea 6 | vendor 7 | .vscode 8 | -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/gorm/.golangci.yml -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/gorm/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/gorm/LICENSE -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/gorm/README.md -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/association.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/gorm/association.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/callbacks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/gorm/callbacks.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/callbacks/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/gorm/callbacks/query.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/callbacks/raw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/gorm/callbacks/raw.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/callbacks/row.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/gorm/callbacks/row.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/chainable_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/gorm/chainable_api.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/clause/clause.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/gorm/clause/clause.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/clause/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/gorm/clause/delete.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/clause/from.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/gorm/clause/from.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/clause/group_by.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/gorm/clause/group_by.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/clause/insert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/gorm/clause/insert.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/clause/joins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/gorm/clause/joins.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/clause/limit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/gorm/clause/limit.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/clause/locking.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/gorm/clause/locking.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/clause/order_by.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/gorm/clause/order_by.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/clause/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/gorm/clause/set.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/clause/where.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/gorm/clause/where.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/clause/with.go: -------------------------------------------------------------------------------- 1 | package clause 2 | 3 | type With struct{} 4 | -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/gorm/errors.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/finisher_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/gorm/finisher_api.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/generics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/gorm/generics.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/gorm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/gorm/gorm.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/gorm/interfaces.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/logger/slog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/gorm/logger/slog.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/logger/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/gorm/logger/sql.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/migrator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/gorm/migrator.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/gorm/model.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/prepare_stmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/gorm/prepare_stmt.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/scan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/gorm/scan.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/schema/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/gorm/schema/field.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/schema/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/gorm/schema/index.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/schema/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/gorm/schema/pool.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/schema/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/gorm/schema/utils.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/soft_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/gorm/soft_delete.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/statement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/gorm/statement.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/gorm.io/gorm/utils/utils.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/api/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/api/apps/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/api/apps/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/api/batch/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/api/batch/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/api/core/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/taint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/api/core/v1/taint.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/api/core/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/api/events/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/api/node/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/api/node/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/api/policy/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/api/rbac/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/api/rbac/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/api/storage/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/apimachinery/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/apiserver/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/cli-runtime/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/cli-runtime/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/client-go/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/client-go/rest/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/klog/v2/.gitignore -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/klog/v2/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/klog/v2/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/klog/v2/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/klog/v2/RELEASE.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/klog/v2/SECURITY.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/contextual.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/klog/v2/contextual.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/exit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/klog/v2/exit.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/klog/v2/format.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/imports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/klog/v2/imports.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/klog/v2/klog.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/klog/v2/klog_file.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klogr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/klog/v2/klogr.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klogr_slog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/klog/v2/klogr_slog.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/safeptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/klog/v2/safeptr.go -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/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/tektoncd/results/HEAD/vendor/k8s.io/utils/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/utils/clock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/utils/clock/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/clock/clock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/utils/clock/clock.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/lru/lru.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/utils/lru/lru.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/ipfamily.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/utils/net/ipfamily.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/utils/net/ipnet.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/utils/net/net.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/utils/net/parse.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/port.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/utils/net/port.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/pointer/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/utils/pointer/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/utils/ptr/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/utils/ptr/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/utils/ptr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/utils/ptr/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/ptr/ptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/utils/ptr/ptr.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/trace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/utils/trace/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/k8s.io/utils/trace/trace.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/knative.dev/pkg/LICENSE -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/apis/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/knative.dev/pkg/apis/OWNERS -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/apis/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/knative.dev/pkg/apis/doc.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/apis/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/knative.dev/pkg/apis/url.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/hash/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/knative.dev/pkg/hash/doc.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/hash/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/knative.dev/pkg/hash/hash.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/kmap/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/knative.dev/pkg/kmap/map.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/kmeta/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/knative.dev/pkg/kmeta/doc.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/kmeta/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/knative.dev/pkg/kmeta/map.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/kmp/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/knative.dev/pkg/kmp/diff.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/kmp/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/knative.dev/pkg/kmp/doc.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/ptr/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/knative.dev/pkg/ptr/doc.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/ptr/ptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/knative.dev/pkg/ptr/ptr.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/ptr/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/knative.dev/pkg/ptr/value.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/test/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/knative.dev/pkg/test/OWNERS -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/test/crd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/knative.dev/pkg/test/crd.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/modules.txt -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/sigs.k8s.io/json/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/sigs.k8s.io/json/Makefile -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/sigs.k8s.io/json/OWNERS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/sigs.k8s.io/json/README.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/sigs.k8s.io/json/SECURITY.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/sigs.k8s.io/json/doc.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/sigs.k8s.io/json/json.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/sigs.k8s.io/yaml/.gitignore -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/sigs.k8s.io/yaml/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/sigs.k8s.io/yaml/OWNERS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/sigs.k8s.io/yaml/README.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/sigs.k8s.io/yaml/RELEASE.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/sigs.k8s.io/yaml/fields.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/results/HEAD/vendor/sigs.k8s.io/yaml/yaml.go --------------------------------------------------------------------------------