├── .github ├── actions │ └── setup-nightly-infra │ │ └── action.yaml ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── _chatops_retest.yml │ ├── _slash.yml │ ├── ci.yaml │ └── images.yaml ├── .gitignore ├── .yamllint ├── CONTRIBUTING.md ├── DEVELOPMENT.md ├── LICENSE ├── Makefile ├── OWNERS ├── README.md ├── adjustpermissions.py ├── bots ├── README.md ├── buildcaptain │ ├── README.md │ ├── cmd │ │ ├── buildcaptain │ │ │ ├── kodata │ │ │ │ ├── LICENSE │ │ │ │ └── OWNERS │ │ │ ├── main.go │ │ │ ├── rotation.go │ │ │ ├── rotation_test.go │ │ │ └── testdata │ │ │ │ ├── rotation-invalid.csv │ │ │ │ └── rotation.csv │ │ └── generate-rotation-csv │ │ │ ├── README.md │ │ │ ├── main.go │ │ │ └── main_test.go │ ├── config │ │ └── deployment.yaml │ ├── go.mod │ ├── go.sum │ └── rotation.csv └── mariobot │ ├── README.md │ ├── cmd │ └── mario │ │ ├── kodata │ │ ├── LICENSE │ │ └── OWNERS │ │ ├── main.go │ │ └── main_test.go │ ├── config │ ├── 100-namespace.yaml │ ├── 200-serviceaccount.yaml │ └── mario.yaml │ ├── go.mod │ └── go.sum ├── cmd └── combine │ ├── README.md │ └── main.go ├── code-of-conduct.md ├── demo ├── docs ├── README.md ├── dogfooding.md ├── kind-e2e.md ├── prow.md ├── robocat.md └── signing.md ├── dummy.go ├── go.mod ├── go.sum ├── hack ├── README.md ├── tekton_ci.sh ├── tekton_in_kind.sh └── tools.go ├── label_sync ├── README.md ├── cluster │ ├── label_sync_cron_job.yaml │ └── label_sync_job.yaml └── labels.yaml ├── pipelinerun-logs ├── Dockerfile ├── README.md ├── cmd │ └── http │ │ ├── entry.go │ │ ├── kodata │ │ └── templates │ │ ├── main.go │ │ ├── query.go │ │ ├── query_test.go │ │ ├── server.go │ │ └── server_test.go ├── config │ └── deployment.yaml ├── go.mod ├── go.sum ├── pkg │ └── config │ │ ├── config.go │ │ └── config_test.go └── templates │ └── entries.html ├── prow ├── README.md ├── control-plane │ ├── config.yaml │ ├── extra.yaml │ ├── ghproxy.yaml │ ├── ingress.yaml │ ├── kustomization.yaml │ ├── namespace.yaml │ ├── oci-bv-ssd-retain_storageclass.yaml │ ├── plugins.yaml │ ├── prow.yaml │ ├── prowjob-schemaless_customresourcedefinition.yaml │ └── tune-sysctls_daemonset.yaml ├── kustomization.yaml └── test-pods │ ├── kustomization.yaml │ ├── prow.yaml │ └── rbac.yaml ├── requirements.txt ├── roadmap.md ├── scripts ├── README.md ├── deploy-release.sh ├── dummy.go ├── e2e-tests.sh ├── library.sh ├── markdown-link-check-config.rc ├── markdown-lint-config.rc ├── presubmit-tests.sh └── verified-catalog-e2e-common.sh ├── tekton ├── README.md ├── catalog │ ├── pipelines │ │ └── release.yaml │ └── tasks │ │ └── publish.yaml ├── cd │ ├── README.md │ ├── add-pr-body-ci │ │ ├── base │ │ │ └── kustomization.yaml │ │ └── overlays │ │ │ └── oci-ci-cd │ │ │ ├── debug-logging.yaml │ │ │ └── kustomization.yaml │ ├── build-id-ci │ │ ├── base │ │ │ └── kustomization.yaml │ │ └── overlays │ │ │ └── oci-ci-cd │ │ │ └── kustomization.yaml │ ├── chains │ │ ├── base │ │ │ └── kustomization.yaml │ │ └── overlays │ │ │ └── oci-ci-cd │ │ │ ├── chains-config.yaml │ │ │ ├── config-observability.yaml │ │ │ ├── kustomization.yaml │ │ │ └── serviceaccount.yaml │ ├── dashboard │ │ ├── base │ │ │ └── kustomization.yaml │ │ └── overlays │ │ │ └── oci-ci-cd │ │ │ ├── extensions.yaml │ │ │ ├── ingress.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespaced-rolebindings.yaml │ │ │ ├── restricted-rbac.yaml │ │ │ └── tekton-dashboard-service.yaml │ ├── pipeline │ │ ├── base │ │ │ └── kustomization.yaml │ │ └── overlays │ │ │ └── oci-ci-cd │ │ │ ├── config-defaults.yaml │ │ │ ├── config-observability.yaml │ │ │ ├── controller.yaml │ │ │ ├── feature-flags.yaml │ │ │ ├── git-resolver-config.yaml │ │ │ ├── kustomization.yaml │ │ │ └── webhook.yaml │ ├── pr-commenter │ │ ├── base │ │ │ └── kustomization.yaml │ │ └── overlays │ │ │ └── oci-ci-cd │ │ │ └── kustomization.yaml │ ├── pr-status-updater │ │ ├── base │ │ │ └── kustomization.yaml │ │ └── overlays │ │ │ └── oci-ci-cd │ │ │ └── kustomization.yaml │ ├── results │ │ ├── README.md │ │ ├── base │ │ │ └── kustomization.yaml │ │ └── overlays │ │ │ └── oci-ci-cd │ │ │ ├── ingress.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ └── service.yaml │ └── triggers │ │ ├── base │ │ └── kustomization.yaml │ │ └── overlays │ │ └── oci-ci-cd │ │ ├── feature-flags.yaml │ │ └── kustomization.yaml ├── certificates │ └── clusterissuer.yaml ├── ci │ ├── README.md │ ├── bases │ │ ├── kustomization.yaml │ │ ├── kustomizeconfig │ │ │ └── trigger.yaml │ │ ├── template.yaml │ │ └── trigger.yaml │ ├── cluster-interceptors │ │ ├── add-pr-body │ │ │ ├── README.md │ │ │ ├── cmd │ │ │ │ └── interceptor │ │ │ │ │ └── main.go │ │ │ ├── config │ │ │ │ ├── 100-serviceaccount.yaml │ │ │ │ ├── 200-interceptor.yaml │ │ │ │ └── interceptor-deployment.yaml │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ └── pkg │ │ │ │ ├── pr.go │ │ │ │ └── pr_test.go │ │ └── build-id │ │ │ ├── README.md │ │ │ ├── cmd │ │ │ └── interceptor │ │ │ │ └── main.go │ │ │ ├── config │ │ │ ├── 100-serviceaccount.yaml │ │ │ ├── 200-interceptor.yaml │ │ │ └── interceptor-deployment.yaml │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ └── pkg │ │ │ └── bid.go │ ├── custom-tasks │ │ ├── pr-commenter │ │ │ ├── .golangci.yml │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── cmd │ │ │ │ └── pr-commenter │ │ │ │ │ ├── kodata │ │ │ │ │ └── LICENSE │ │ │ │ │ └── main.go │ │ │ ├── config │ │ │ │ ├── 200-serviceaccount.yaml │ │ │ │ ├── 201-clusterrole.yaml │ │ │ │ ├── 201-role.yaml │ │ │ │ ├── 201-rolebinding.yaml │ │ │ │ ├── 202-clusterrolebinding.yaml │ │ │ │ └── 500-controller.yaml │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── pkg │ │ │ │ └── reconciler │ │ │ │ │ ├── controller.go │ │ │ │ │ ├── params.go │ │ │ │ │ ├── params_test.go │ │ │ │ │ ├── reconciler.go │ │ │ │ │ └── reconciler_test.go │ │ │ └── tools │ │ │ │ ├── go.mod │ │ │ │ └── tools.go │ │ └── pr-status-updater │ │ │ ├── .golangci.yml │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── cmd │ │ │ └── pr-status-updater │ │ │ │ ├── kodata │ │ │ │ └── LICENSE │ │ │ │ └── main.go │ │ │ ├── config │ │ │ ├── 200-serviceaccount.yaml │ │ │ ├── 201-clusterrole.yaml │ │ │ ├── 201-role.yaml │ │ │ ├── 201-rolebinding.yaml │ │ │ ├── 202-clusterrolebinding.yaml │ │ │ └── 500-controller.yaml │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── pkg │ │ │ └── reconciler │ │ │ │ ├── controller.go │ │ │ │ ├── params.go │ │ │ │ ├── params_test.go │ │ │ │ ├── reconciler.go │ │ │ │ └── reconciler_test.go │ │ │ └── tools │ │ │ ├── go.mod │ │ │ └── tools.go │ ├── docs │ │ ├── ci-concept.md │ │ └── ci-setup.svg │ ├── infra │ │ ├── 0001_rbac.yaml │ │ ├── ingress.yaml │ │ ├── kustomization.yaml │ │ └── namespace.yaml │ ├── interceptors │ │ ├── add-pr-body │ │ │ ├── README.md │ │ │ ├── cmd │ │ │ │ └── add-pr-body │ │ │ │ │ ├── kodata │ │ │ │ │ └── LICENSE │ │ │ │ │ ├── main.go │ │ │ │ │ └── main_test.go │ │ │ ├── config │ │ │ │ ├── 100-serviceaccount.yaml │ │ │ │ └── add-pr-body.yaml │ │ │ ├── go.mod │ │ │ └── go.sum │ │ ├── add-team-members │ │ │ ├── README.md │ │ │ ├── cmd │ │ │ │ └── add-team-members │ │ │ │ │ ├── kodata │ │ │ │ │ └── LICENSE │ │ │ │ │ ├── main.go │ │ │ │ │ └── main_test.go │ │ │ ├── config │ │ │ │ ├── 100-serviceaccount.yaml │ │ │ │ └── add-team-members.yaml │ │ │ ├── go.mod │ │ │ └── go.sum │ │ └── github │ │ │ ├── README.md │ │ │ ├── config │ │ │ ├── clustertriggerbindings.yaml │ │ │ └── service.yaml │ │ │ ├── examples │ │ │ └── trigger.yaml │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── main.go │ │ │ └── pkg │ │ │ ├── github │ │ │ ├── bindings │ │ │ │ └── bindings.go │ │ │ ├── config.go │ │ │ ├── issue_comment.go │ │ │ ├── issue_comment_test.go │ │ │ ├── pull_request.go │ │ │ ├── pull_request_test.go │ │ │ ├── push.go │ │ │ ├── push_test.go │ │ │ ├── server.go │ │ │ ├── server_test.go │ │ │ ├── status.go │ │ │ └── testdata │ │ │ │ ├── TESTOWNERS │ │ │ │ ├── issue_comment.json │ │ │ │ ├── pull_request.json │ │ │ │ └── push.json │ │ │ └── proto │ │ │ └── v1alpha1 │ │ │ ├── config.proto │ │ │ ├── config_go_proto │ │ │ └── config.pb.go │ │ │ └── gen.go │ ├── jobs │ │ ├── e2e-kind.yaml │ │ ├── kustomization.yaml │ │ ├── tekton-catalog-catlin-lint.yaml │ │ ├── tekton-catalog-diff-task.yaml │ │ ├── tekton-docs-reviews.yaml │ │ ├── tekton-github-tasks-completed.yaml │ │ ├── tekton-golang-coverage.yaml │ │ ├── tekton-golang-lint.yaml │ │ ├── tekton-golang-tests.yaml │ │ ├── tekton-org-validation.yaml │ │ ├── tekton-python-unit-tests.yaml │ │ ├── tekton-teps-validation.yaml │ │ └── tekton-yamllint.yaml │ ├── kustomization.yaml │ ├── repos │ │ ├── catalog │ │ │ ├── base │ │ │ │ ├── kustomization.yaml │ │ │ │ └── template.yaml │ │ │ ├── community-catalog │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── template.yaml │ │ │ │ └── trigger.yaml │ │ │ ├── kustomization.yaml │ │ │ └── verified-catalogs │ │ │ │ ├── base │ │ │ │ ├── kustomization.yaml │ │ │ │ └── template.yaml │ │ │ │ ├── golang │ │ │ │ ├── kustomization.yaml │ │ │ │ └── trigger.yaml │ │ │ │ └── kustomization.yaml │ │ ├── community │ │ │ ├── kustomization.yaml │ │ │ ├── template.yaml │ │ │ └── trigger.yaml │ │ ├── kustomization.yaml │ │ ├── shared │ │ │ ├── all │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── template.yaml │ │ │ │ └── trigger.yaml │ │ │ ├── doc-reviews │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── template.yaml │ │ │ │ ├── trigger-comment.yaml │ │ │ │ └── trigger-pr.yaml │ │ │ └── kustomization.yaml │ │ └── website │ │ │ ├── kustomization.yaml │ │ │ ├── template.yaml │ │ │ └── trigger.yaml │ ├── shared │ │ ├── bindings.yaml │ │ ├── common-tasks.yaml │ │ ├── eventlistener.yaml │ │ └── kustomization.yaml │ └── stepactions │ │ ├── gcs-upload.yaml │ │ ├── git-batch-merge.yaml │ │ └── kustomization.yaml ├── cronjobs │ ├── README.md │ ├── bases │ │ ├── catalog │ │ │ ├── README.md │ │ │ ├── kustomization.yaml │ │ │ └── trigger-resource-cd.yaml │ │ ├── cleanup │ │ │ ├── README.md │ │ │ ├── kustomization.yaml │ │ │ └── trigger-resource-cd.yaml │ │ ├── configmap │ │ │ ├── README.md │ │ │ ├── kustomization.yaml │ │ │ └── trigger-resource-cd.yaml │ │ ├── folder │ │ │ ├── README.md │ │ │ ├── kustomization.yaml │ │ │ └── trigger-resource-cd.yaml │ │ ├── helm │ │ │ ├── README.md │ │ │ ├── kustomization.yaml │ │ │ └── trigger-resource-cd.yaml │ │ ├── image-build │ │ │ ├── README.md │ │ │ ├── kustomization.yaml │ │ │ └── trigger-image-build.yaml │ │ ├── nightly-tests │ │ │ ├── README.md │ │ │ ├── kustomization.yaml │ │ │ └── trigger-nightly-test.yaml │ │ ├── peribolos │ │ │ ├── README.md │ │ │ ├── kustomization.yaml │ │ │ └── trigger-resource-cd.yaml │ │ ├── release │ │ │ ├── README.md │ │ │ ├── kustomization.yaml │ │ │ └── trigger-with-uuid.yaml │ │ └── tekton-service │ │ │ ├── README.md │ │ │ ├── kustomization.yaml │ │ │ └── trigger-resource-cd.yaml │ ├── dogfooding │ │ ├── configmaps │ │ │ ├── kustomization.yaml │ │ │ ├── labels-sync-hourly │ │ │ │ ├── README.md │ │ │ │ ├── cronjob.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── prow-config-hourly │ │ │ │ ├── README.md │ │ │ │ ├── cronjob.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── prow-labels-sync-hourly │ │ │ │ ├── README.md │ │ │ │ ├── cronjob.yaml │ │ │ │ └── kustomization.yaml │ │ │ └── prow-plugins-hourly │ │ │ │ ├── README.md │ │ │ │ ├── cronjob.yaml │ │ │ │ └── kustomization.yaml │ │ ├── images │ │ │ ├── alpine-git-nonroot-nightly │ │ │ │ ├── README.md │ │ │ │ ├── cronjob.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── buildx-gcloud-nightly │ │ │ │ ├── README.md │ │ │ │ ├── cronjob.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── catlin-nightly │ │ │ │ ├── README.md │ │ │ │ ├── cronjob.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── coverage-image-nightly │ │ │ │ ├── README.md │ │ │ │ ├── cronjob.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── go-rest-api-test-nightly │ │ │ │ ├── README.md │ │ │ │ ├── cronjob.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── hub-nightly │ │ │ │ ├── README.md │ │ │ │ ├── cronjob.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── kind-e2e-nightly │ │ │ │ ├── cronjob.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── kind-nightly │ │ │ │ ├── cronjob.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── ko-gcloud-nightly │ │ │ │ ├── README.md │ │ │ │ ├── cronjob.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── ko-nightly │ │ │ │ ├── README.md │ │ │ │ ├── cronjob.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── koparse-nightly │ │ │ │ ├── README.md │ │ │ │ ├── cronjob.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── kubectl-nightly │ │ │ │ ├── README.md │ │ │ │ ├── cronjob.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── pipeline-test-runner-nightly │ │ │ │ ├── README.md │ │ │ │ ├── cronjob.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── teps-community-nightly │ │ │ │ ├── README.md │ │ │ │ ├── cronjob.yaml │ │ │ │ └── kustomization.yaml │ │ │ └── tkn-nightly │ │ │ │ ├── README.md │ │ │ │ ├── cronjob.yaml │ │ │ │ └── kustomization.yaml │ │ └── kustomization.yaml │ └── nightly_oci │ │ ├── catalog │ │ ├── kustomization.yaml │ │ └── tekton-upstream │ │ │ ├── README.md │ │ │ ├── cronjob.yaml │ │ │ └── kustomization.yaml │ │ ├── cleanup │ │ ├── bastion-p-nightly │ │ │ ├── README.md │ │ │ ├── cronjob.yaml │ │ │ └── kustomization.yaml │ │ ├── bastion-z-nightly │ │ │ ├── README.md │ │ │ ├── cronjob.yaml │ │ │ └── kustomization.yaml │ │ ├── default-nightly │ │ │ ├── README.md │ │ │ ├── cronjob.yaml │ │ │ └── kustomization.yaml │ │ ├── kustomization.yaml │ │ ├── tekton-ci-nightly │ │ │ ├── README.md │ │ │ ├── cronjob.yaml │ │ │ └── kustomization.yaml │ │ └── tekton-nightly-nightly │ │ │ ├── README.md │ │ │ ├── cronjob.yaml │ │ │ └── kustomization.yaml │ │ ├── kustomization.yaml │ │ ├── nightly-tests │ │ ├── kustomization.yaml │ │ ├── ppc64le │ │ │ ├── catalog-nightly-test │ │ │ │ ├── README.md │ │ │ │ ├── cronjob.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── cli-nightly-test │ │ │ │ ├── README.md │ │ │ │ ├── cronjob.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── dashboard-nightly-test │ │ │ │ ├── README.md │ │ │ │ ├── cronjob.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── operator-nightly-test │ │ │ │ ├── README.md │ │ │ │ ├── cronjob.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── pipeline-nightly-test │ │ │ │ ├── README.md │ │ │ │ ├── cronjob.yaml │ │ │ │ └── kustomization.yaml │ │ │ └── triggers-nightly-test │ │ │ │ ├── README.md │ │ │ │ ├── cronjob.yaml │ │ │ │ └── kustomization.yaml │ │ └── s390x │ │ │ ├── catalog-nightly-test │ │ │ ├── README.md │ │ │ ├── cronjob.yaml │ │ │ └── kustomization.yaml │ │ │ ├── cli-nightly-test │ │ │ ├── README.md │ │ │ ├── cronjob.yaml │ │ │ └── kustomization.yaml │ │ │ ├── dashboard-nightly-test │ │ │ ├── README.md │ │ │ ├── cronjob.yaml │ │ │ └── kustomization.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── operator-nightly-test │ │ │ ├── README.md │ │ │ ├── cronjob.yaml │ │ │ └── kustomization.yaml │ │ │ ├── pipeline-nightly-test │ │ │ ├── README.md │ │ │ ├── cronjob.yaml │ │ │ └── kustomization.yaml │ │ │ └── triggers-nightly-test │ │ │ ├── README.md │ │ │ ├── cronjob.yaml │ │ │ └── kustomization.yaml │ │ ├── peribolos │ │ ├── kustomization.yaml │ │ └── tektoncd │ │ │ ├── README.md │ │ │ ├── cronjob.yaml │ │ │ └── kustomization.yaml │ │ └── releases │ │ ├── add-pr-body-ci-nightly │ │ ├── README.md │ │ ├── cronjob.yaml │ │ └── kustomization.yaml │ │ ├── add-team-members-nightly │ │ ├── README.md │ │ ├── cronjob.yaml │ │ └── kustomization.yaml │ │ ├── build-id-ci-nightly │ │ ├── README.md │ │ ├── cronjob.yaml │ │ └── kustomization.yaml │ │ ├── chains-nightly │ │ ├── README.md │ │ ├── cronjob.yaml │ │ └── kustomization.yaml │ │ ├── dashboard-nightly │ │ ├── README.md │ │ ├── cronjob.yaml │ │ └── kustomization.yaml │ │ ├── kustomization.yaml │ │ ├── nextcron.txt │ │ ├── operator-nightly │ │ ├── README.md │ │ ├── cronjob.yaml │ │ └── kustomization.yaml │ │ ├── pr-commenter-nightly │ │ ├── README.md │ │ ├── cronjob.yaml │ │ └── kustomization.yaml │ │ ├── pr-status-updater-nightly │ │ ├── README.md │ │ ├── cronjob.yaml │ │ └── kustomization.yaml │ │ └── triggers-nightly │ │ ├── README.md │ │ ├── cronjob.yaml │ │ └── kustomization.yaml ├── images │ ├── README.md │ ├── alpine-git-nonroot │ │ └── Dockerfile │ ├── buildx-gcloud │ │ └── Dockerfile │ ├── coverage │ │ └── Dockerfile │ ├── generate-matrix.py │ ├── hub │ │ └── Dockerfile │ ├── kind-e2e │ │ ├── Dockerfile │ │ └── setup-kind.sh │ ├── kind │ │ └── Dockerfile │ ├── ko-gcloud │ │ └── Dockerfile │ ├── ko │ │ └── Dockerfile │ ├── koparse │ │ ├── Dockerfile │ │ └── koparse │ │ │ ├── __pycache__ │ │ │ └── koparse.cpython-38.pyc │ │ │ ├── koparse.py │ │ │ ├── test_koparse.py │ │ │ ├── test_release.yaml │ │ │ └── test_release_no_preserve_path.yaml │ ├── kubectl │ │ └── Dockerfile │ ├── test-runner │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── runner.sh │ │ ├── setup-kind.sh │ │ └── test.sh │ ├── tini-git │ │ └── Dockerfile │ └── tkn │ │ └── Dockerfile ├── kustomization.yaml ├── mario-bot │ ├── ingress.yaml │ ├── kustomization.yaml │ ├── mario-github-comment.yaml │ └── mario-image-build-trigger.yaml └── resources │ ├── README.md │ ├── cd │ ├── bindings.yaml │ ├── catalog-template.yaml │ ├── ci-triggers.yaml │ ├── cleanup-template.yaml │ ├── configmap-template.yaml │ ├── eventlistener.yaml │ ├── folder-template.yaml │ ├── helm-template.yaml │ ├── install-tekton-release.yaml │ ├── kustomization.yaml │ ├── notification-template.yaml │ ├── notification-triggers.yaml │ ├── peribolos-template.yaml │ ├── serviceaccount.yaml │ └── tekton-template.yaml │ ├── ci │ ├── bindings.yaml │ ├── github-template.yaml │ └── kustomization.yaml │ ├── images │ ├── bindings.yaml │ ├── copy-all-skopeo.yaml │ ├── docker-multi-arch-template.yaml │ ├── eventlistener.yaml │ ├── ko-multi-arch-template.yaml │ ├── kustomization.yaml │ └── single-arch-template.yaml │ ├── kustomization.yaml │ ├── nightly-release │ ├── README.md │ ├── base │ │ ├── kustomization.yaml │ │ ├── kustomizeconfig │ │ │ ├── eventlistener.yaml │ │ │ └── pipeline.yaml │ │ ├── template.yaml │ │ └── trigger.yaml │ ├── bindings.yaml │ ├── eventlistener.yaml │ ├── kustomization.yaml │ ├── overlays │ │ ├── add-pr-body-ci │ │ │ ├── kustomization.yaml │ │ │ ├── template.yaml │ │ │ └── trigger.yaml │ │ ├── add-team-members │ │ │ ├── kustomization.yaml │ │ │ ├── template.yaml │ │ │ └── trigger.yaml │ │ ├── build-id-ci │ │ │ ├── kustomization.yaml │ │ │ ├── template.yaml │ │ │ └── trigger.yaml │ │ ├── chains │ │ │ ├── kustomization.yaml │ │ │ ├── template.yaml │ │ │ └── trigger.yaml │ │ ├── dashboard │ │ │ ├── kustomization.yaml │ │ │ ├── template.yaml │ │ │ └── trigger.yaml │ │ ├── operator │ │ │ ├── kustomization.yaml │ │ │ ├── template.yaml │ │ │ └── trigger.yaml │ │ ├── pipeline │ │ │ ├── kustomization.yaml │ │ │ ├── template.yaml │ │ │ └── trigger.yaml │ │ ├── pr-commenter │ │ │ ├── kustomization.yaml │ │ │ ├── template.yaml │ │ │ └── trigger.yaml │ │ ├── pr-status-updater │ │ │ ├── kustomization.yaml │ │ │ ├── template.yaml │ │ │ └── trigger.yaml │ │ └── triggers │ │ │ ├── kustomization.yaml │ │ │ ├── template.yaml │ │ │ └── trigger.yaml │ └── serviceaccount.yaml │ ├── nightly-tests │ ├── README.md │ ├── base │ │ ├── deploy_tekton_component.yaml │ │ └── kustomization.yaml │ ├── bastion-p │ │ ├── k8s_cluster_setup.yaml │ │ ├── kustomization.yaml │ │ ├── test_tekton_cli.yaml │ │ └── test_tekton_component.yaml │ ├── bastion-z │ │ ├── cleanup_tekton.yaml │ │ ├── k8s_cluster_setup.yaml │ │ ├── kustomization.yaml │ │ ├── test_tekton_cli.yaml │ │ └── test_tekton_component.yaml │ ├── catalog-deploy-test-ppc64le-template.yaml │ ├── catalog-deploy-test-s390x-template.yaml │ ├── cli-deploy-test-ppc64le-template.yaml │ ├── cli-deploy-test-s390x-template.yaml │ ├── dashboard-deploy-test-ppc64le-template.yaml │ ├── dashboard-deploy-test-s390x-template.yaml │ ├── eventlistener.yaml │ ├── kustomization.yaml │ ├── operator-deploy-test-ppc64le-template.yaml │ ├── operator-deploy-test-s390x-template.yaml │ ├── pipeline-deploy-test-ppc64le-template.yaml │ ├── pipeline-deploy-test-s390x-template.yaml │ ├── serviceaccount.yaml │ ├── triggers-deploy-test-ppc64le-template.yaml │ └── triggers-deploy-test-s390x-template.yaml │ ├── org-permissions │ ├── README.md │ ├── kustomization.yaml │ ├── peribolos-run.yaml │ ├── peribolos-sync.yaml │ ├── peribolos-trigger.yaml │ └── peribolos.yaml │ └── release │ ├── README.md │ ├── base │ ├── github_release.yaml │ ├── github_release_oci.yaml │ ├── kustomization.yaml │ ├── prerelease_checks.yaml │ └── prerelease_checks_oci.yaml │ ├── kustomization.yaml │ ├── overlays │ ├── default │ │ └── kustomization.yaml │ └── tekton-nightly │ │ └── kustomization.yaml │ └── release-logs │ ├── kustomization.yaml │ ├── rbac.yaml │ ├── release-logs-triggers.yaml │ └── save-release-logs.yaml └── vendor ├── github.com ├── containerd │ └── stargz-snapshotter │ │ └── estargz │ │ ├── LICENSE │ │ ├── build.go │ │ ├── errorutil │ │ └── errors.go │ │ ├── estargz.go │ │ ├── gzip.go │ │ ├── testutil.go │ │ └── types.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 │ │ │ ├── memorystore │ │ │ └── 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 ├── emirpasic │ └── gods │ │ ├── LICENSE │ │ ├── containers │ │ ├── containers.go │ │ ├── enumerable.go │ │ ├── iterator.go │ │ └── serialization.go │ │ ├── lists │ │ ├── arraylist │ │ │ ├── arraylist.go │ │ │ ├── enumerable.go │ │ │ ├── iterator.go │ │ │ └── serialization.go │ │ └── lists.go │ │ ├── trees │ │ ├── binaryheap │ │ │ ├── binaryheap.go │ │ │ ├── iterator.go │ │ │ └── serialization.go │ │ └── trees.go │ │ └── utils │ │ ├── comparator.go │ │ ├── sort.go │ │ └── utils.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 │ │ ├── logr.go │ │ ├── sloghandler.go │ │ ├── slogr.go │ │ └── slogsink.go ├── golang │ └── groupcache │ │ ├── LICENSE │ │ └── lru │ │ └── lru.go ├── google │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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-licenses │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── check.go │ │ ├── csv.go │ │ ├── internal │ │ │ └── third_party │ │ │ │ └── pkgsite │ │ │ │ ├── LICENSE │ │ │ │ ├── PATENTS │ │ │ │ ├── derrors │ │ │ │ └── derrors.go │ │ │ │ ├── source │ │ │ │ ├── meta-tags.go │ │ │ │ ├── source.go │ │ │ │ └── source_patch.go │ │ │ │ ├── stdlib │ │ │ │ └── stdlib.go │ │ │ │ └── version │ │ │ │ └── version.go │ │ ├── licenses │ │ │ ├── classifier.go │ │ │ ├── find.go │ │ │ ├── git.go │ │ │ ├── library.go │ │ │ └── module.go │ │ ├── main.go │ │ ├── report.go │ │ └── save.go │ └── licenseclassifier │ │ ├── .travis.yml │ │ ├── CHANGELOG │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── classifier.go │ │ ├── file_system_resources.go │ │ ├── forbidden.go │ │ ├── internal │ │ └── sets │ │ │ ├── sets.go │ │ │ └── stringset.go │ │ ├── license_type.go │ │ ├── licenses │ │ ├── 0BSD.txt │ │ ├── AFL-1.1.header.txt │ │ ├── AFL-1.1.txt │ │ ├── AFL-1.2.header.txt │ │ ├── AFL-1.2.txt │ │ ├── AFL-2.0.header.txt │ │ ├── AFL-2.0.txt │ │ ├── AFL-2.1.header.txt │ │ ├── AFL-2.1.txt │ │ ├── AFL-3.0.header.txt │ │ ├── AFL-3.0.txt │ │ ├── AGPL-1.0.txt │ │ ├── AGPL-3.0.header.txt │ │ ├── AGPL-3.0.txt │ │ ├── APSL-1.0.header.txt │ │ ├── APSL-1.0.txt │ │ ├── APSL-1.1.header.txt │ │ ├── APSL-1.1.txt │ │ ├── APSL-1.2.header.txt │ │ ├── APSL-1.2.txt │ │ ├── APSL-2.0.header.txt │ │ ├── APSL-2.0.txt │ │ ├── Apache-1.0.txt │ │ ├── Apache-1.1.txt │ │ ├── Apache-2.0.header.txt │ │ ├── Apache-2.0.txt │ │ ├── Artistic-1.0-Perl.txt │ │ ├── Artistic-1.0-cl8.txt │ │ ├── Artistic-1.0.txt │ │ ├── Artistic-2.0.txt │ │ ├── BCL.txt │ │ ├── BSD-2-Clause-FreeBSD.txt │ │ ├── BSD-2-Clause-NetBSD.txt │ │ ├── BSD-2-Clause.txt │ │ ├── BSD-3-Clause-Attribution.txt │ │ ├── BSD-3-Clause-Clear.txt │ │ ├── BSD-3-Clause-LBNL.txt │ │ ├── BSD-3-Clause.txt │ │ ├── BSD-4-Clause-UC.txt │ │ ├── BSD-4-Clause.txt │ │ ├── BSD-Protection.txt │ │ ├── BSL-1.0.txt │ │ ├── Beerware.txt │ │ ├── CC-BY-1.0.txt │ │ ├── CC-BY-2.0.txt │ │ ├── CC-BY-2.5.txt │ │ ├── CC-BY-3.0.txt │ │ ├── CC-BY-4.0.txt │ │ ├── CC-BY-NC-1.0.txt │ │ ├── CC-BY-NC-2.0.txt │ │ ├── CC-BY-NC-2.5.txt │ │ ├── CC-BY-NC-3.0.txt │ │ ├── CC-BY-NC-4.0.txt │ │ ├── CC-BY-NC-ND-1.0.txt │ │ ├── CC-BY-NC-ND-2.0.txt │ │ ├── CC-BY-NC-ND-2.5.txt │ │ ├── CC-BY-NC-ND-3.0.txt │ │ ├── CC-BY-NC-ND-4.0.txt │ │ ├── CC-BY-NC-SA-1.0.txt │ │ ├── CC-BY-NC-SA-2.0.txt │ │ ├── CC-BY-NC-SA-2.5.txt │ │ ├── CC-BY-NC-SA-3.0.txt │ │ ├── CC-BY-NC-SA-4.0.txt │ │ ├── CC-BY-ND-1.0.txt │ │ ├── CC-BY-ND-2.0.txt │ │ ├── CC-BY-ND-2.5.txt │ │ ├── CC-BY-ND-3.0.txt │ │ ├── CC-BY-ND-4.0.txt │ │ ├── CC-BY-SA-1.0.txt │ │ ├── CC-BY-SA-2.0.txt │ │ ├── CC-BY-SA-2.5.txt │ │ ├── CC-BY-SA-3.0.txt │ │ ├── CC-BY-SA-4.0.txt │ │ ├── CC0-1.0.txt │ │ ├── CDDL-1.0.txt │ │ ├── CDDL-1.1.txt │ │ ├── CPAL-1.0.header.txt │ │ ├── CPAL-1.0.txt │ │ ├── CPL-1.0.txt │ │ ├── Commons-Clause.txt │ │ ├── EPL-1.0.txt │ │ ├── EPL-2.0.txt │ │ ├── EUPL-1.0.txt │ │ ├── EUPL-1.1.txt │ │ ├── FTL.txt │ │ ├── Facebook-2-Clause.txt │ │ ├── Facebook-3-Clause.txt │ │ ├── Facebook-Examples.txt │ │ ├── FreeImage.txt │ │ ├── GPL-1.0.header.txt │ │ ├── GPL-1.0.txt │ │ ├── GPL-2.0-with-GCC-exception.txt │ │ ├── GPL-2.0-with-autoconf-exception.txt │ │ ├── GPL-2.0-with-bison-exception.txt │ │ ├── GPL-2.0-with-classpath-exception.txt │ │ ├── GPL-2.0-with-font-exception.txt │ │ ├── GPL-2.0.header.txt │ │ ├── GPL-2.0.txt │ │ ├── GPL-3.0-with-GCC-exception.txt │ │ ├── GPL-3.0-with-autoconf-exception.txt │ │ ├── GPL-3.0.header.txt │ │ ├── GPL-3.0.txt │ │ ├── GUST-Font-License.txt │ │ ├── IPL-1.0.txt │ │ ├── ISC.txt │ │ ├── ImageMagick.header.txt │ │ ├── ImageMagick.txt │ │ ├── LGPL-2.0.header.txt │ │ ├── LGPL-2.0.txt │ │ ├── LGPL-2.1.header.txt │ │ ├── LGPL-2.1.txt │ │ ├── LGPL-3.0.header.txt │ │ ├── LGPL-3.0.txt │ │ ├── LGPLLR.txt │ │ ├── LPL-1.0.txt │ │ ├── LPL-1.02.txt │ │ ├── LPPL-1.3c.txt │ │ ├── Libpng.txt │ │ ├── Lil-1.0.txt │ │ ├── Linux-OpenIB.txt │ │ ├── MIT.txt │ │ ├── MPL-1.0.header.txt │ │ ├── MPL-1.0.txt │ │ ├── MPL-1.1.header.txt │ │ ├── MPL-1.1.txt │ │ ├── MPL-2.0-no-copyleft-exception.header.txt │ │ ├── MPL-2.0.header.txt │ │ ├── MPL-2.0.txt │ │ ├── MS-PL.txt │ │ ├── NCSA.txt │ │ ├── NPL-1.0.txt │ │ ├── NPL-1.1.txt │ │ ├── OFL-1.1.txt │ │ ├── OSL-1.0.txt │ │ ├── OSL-1.1.txt │ │ ├── OSL-2.0.txt │ │ ├── OSL-2.1.txt │ │ ├── OSL-3.0.header.txt │ │ ├── OSL-3.0.txt │ │ ├── OpenSSL.txt │ │ ├── OpenVision.txt │ │ ├── PHP-3.0.txt │ │ ├── PHP-3.01.txt │ │ ├── PIL.txt │ │ ├── PostgreSQL.txt │ │ ├── Python-2.0-complete.txt │ │ ├── Python-2.0.txt │ │ ├── QPL-1.0.txt │ │ ├── README.md │ │ ├── Ruby.txt │ │ ├── SGI-B-1.0.header.txt │ │ ├── SGI-B-1.0.txt │ │ ├── SGI-B-1.1.header.txt │ │ ├── SGI-B-1.1.txt │ │ ├── SGI-B-2.0.txt │ │ ├── SISSL-1.2.header.txt │ │ ├── SISSL-1.2.txt │ │ ├── SISSL.header.txt │ │ ├── SISSL.txt │ │ ├── Sleepycat.txt │ │ ├── UPL-1.0.txt │ │ ├── Unicode-DFS-2015.txt │ │ ├── Unicode-DFS-2016.txt │ │ ├── Unicode-TOU.txt │ │ ├── Unlicense.txt │ │ ├── W3C-19980720.txt │ │ ├── W3C-20150513.txt │ │ ├── W3C.header.txt │ │ ├── W3C.txt │ │ ├── WTFPL.txt │ │ ├── X11.txt │ │ ├── Xnet.txt │ │ ├── ZPL-1.1.txt │ │ ├── ZPL-2.0.txt │ │ ├── ZPL-2.1.txt │ │ ├── Zend-2.0.txt │ │ ├── Zlib.txt │ │ ├── eGenix.txt │ │ ├── embed.go │ │ ├── forbidden_licenses.db │ │ ├── licenses.db │ │ └── zlib-acknowledgement.txt │ │ └── stringclassifier │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── classifier.go │ │ ├── internal │ │ └── pq │ │ │ └── priority.go │ │ └── searchset │ │ ├── searchset.go │ │ └── tokenizer │ │ └── tokenizer.go ├── inconshreveable │ └── mousetrap │ │ ├── LICENSE │ │ ├── README.md │ │ ├── trap_others.go │ │ └── trap_windows.go ├── jbenet │ └── go-context │ │ ├── LICENSE │ │ └── io │ │ └── ctxio.go ├── kevinburke │ └── ssh_config │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .mailmap │ │ ├── .travis.yml │ │ ├── AUTHORS.txt │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── config.go │ │ ├── lexer.go │ │ ├── parser.go │ │ ├── position.go │ │ ├── token.go │ │ └── validators.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 │ │ ├── simple_go124.go │ │ ├── snappy.go │ │ ├── zip.go │ │ └── zstd.go ├── mitchellh │ └── go-homedir │ │ ├── LICENSE │ │ ├── README.md │ │ └── homedir.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 ├── otiai10 │ └── copy │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── copy.go │ │ ├── copy_namedpipes.go │ │ ├── copy_namedpipes_windows.go │ │ ├── options.go │ │ ├── preserve_times.go │ │ ├── stat_times.go │ │ ├── stat_times_darwin.go │ │ ├── stat_times_freebsd.go │ │ ├── stat_times_windows.go │ │ ├── test_setup.go │ │ └── test_setup_windows.go ├── sergi │ └── go-diff │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ └── diffmatchpatch │ │ ├── diff.go │ │ ├── diffmatchpatch.go │ │ ├── match.go │ │ ├── mathutil.go │ │ ├── operation_string.go │ │ ├── patch.go │ │ └── stringutil.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 ├── spf13 │ ├── 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 │ │ ├── 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 ├── src-d │ └── gcfg │ │ ├── LICENSE │ │ ├── README │ │ ├── doc.go │ │ ├── errors.go │ │ ├── go1_0.go │ │ ├── go1_2.go │ │ ├── read.go │ │ ├── scanner │ │ ├── errors.go │ │ └── scanner.go │ │ ├── set.go │ │ ├── token │ │ ├── position.go │ │ ├── serialize.go │ │ └── token.go │ │ └── types │ │ ├── bool.go │ │ ├── doc.go │ │ ├── enum.go │ │ ├── int.go │ │ └── scan.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 └── xanzy │ └── ssh-agent │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── pageant_windows.go │ ├── sshagent.go │ └── sshagent_windows.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 │ └── metricproducer │ │ ├── manager.go │ │ └── producer.go ├── opencensus.go ├── plugin │ └── ochttp │ │ ├── client.go │ │ ├── client_stats.go │ │ ├── doc.go │ │ ├── propagation │ │ └── b3 │ │ │ └── b3.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 ├── golang.org └── x │ ├── crypto │ ├── LICENSE │ ├── PATENTS │ ├── blowfish │ │ ├── block.go │ │ ├── cipher.go │ │ └── const.go │ ├── cast5 │ │ └── cast5.go │ ├── chacha20 │ │ ├── chacha_arm64.go │ │ ├── chacha_arm64.s │ │ ├── chacha_generic.go │ │ ├── chacha_noasm.go │ │ ├── chacha_ppc64x.go │ │ ├── chacha_ppc64x.s │ │ ├── chacha_s390x.go │ │ ├── chacha_s390x.s │ │ └── xor.go │ ├── curve25519 │ │ └── curve25519.go │ ├── internal │ │ ├── alias │ │ │ ├── alias.go │ │ │ └── alias_purego.go │ │ └── poly1305 │ │ │ ├── mac_noasm.go │ │ │ ├── poly1305.go │ │ │ ├── sum_amd64.s │ │ │ ├── sum_asm.go │ │ │ ├── sum_generic.go │ │ │ ├── sum_loong64.s │ │ │ ├── sum_ppc64x.s │ │ │ ├── sum_s390x.go │ │ │ └── sum_s390x.s │ ├── openpgp │ │ ├── armor │ │ │ ├── armor.go │ │ │ └── encode.go │ │ ├── canonical_text.go │ │ ├── elgamal │ │ │ └── elgamal.go │ │ ├── errors │ │ │ └── errors.go │ │ ├── keys.go │ │ ├── packet │ │ │ ├── compressed.go │ │ │ ├── config.go │ │ │ ├── encrypted_key.go │ │ │ ├── literal.go │ │ │ ├── ocfb.go │ │ │ ├── one_pass_signature.go │ │ │ ├── opaque.go │ │ │ ├── packet.go │ │ │ ├── private_key.go │ │ │ ├── public_key.go │ │ │ ├── public_key_v3.go │ │ │ ├── reader.go │ │ │ ├── signature.go │ │ │ ├── signature_v3.go │ │ │ ├── symmetric_key_encrypted.go │ │ │ ├── symmetrically_encrypted.go │ │ │ ├── userattribute.go │ │ │ └── userid.go │ │ ├── read.go │ │ ├── s2k │ │ │ └── s2k.go │ │ └── write.go │ └── ssh │ │ ├── agent │ │ ├── client.go │ │ ├── forward.go │ │ ├── keyring.go │ │ └── server.go │ │ ├── buffer.go │ │ ├── certs.go │ │ ├── channel.go │ │ ├── cipher.go │ │ ├── client.go │ │ ├── client_auth.go │ │ ├── common.go │ │ ├── connection.go │ │ ├── doc.go │ │ ├── handshake.go │ │ ├── internal │ │ └── bcrypt_pbkdf │ │ │ └── bcrypt_pbkdf.go │ │ ├── kex.go │ │ ├── keys.go │ │ ├── knownhosts │ │ └── knownhosts.go │ │ ├── mac.go │ │ ├── messages.go │ │ ├── mlkem.go │ │ ├── mux.go │ │ ├── server.go │ │ ├── session.go │ │ ├── ssh_gss.go │ │ ├── streamlocal.go │ │ ├── tcpip.go │ │ └── transport.go │ ├── mod │ ├── LICENSE │ ├── PATENTS │ └── semver │ │ └── semver.go │ ├── net │ ├── LICENSE │ ├── PATENTS │ ├── context │ │ ├── context.go │ │ └── ctxhttp │ │ │ └── ctxhttp.go │ ├── internal │ │ └── socks │ │ │ ├── client.go │ │ │ └── socks.go │ └── proxy │ │ ├── dial.go │ │ ├── direct.go │ │ ├── per_host.go │ │ ├── proxy.go │ │ └── socks5.go │ ├── sync │ ├── LICENSE │ ├── PATENTS │ └── errgroup │ │ └── errgroup.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 │ ├── 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 │ │ ├── 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 │ ├── text │ ├── LICENSE │ ├── PATENTS │ ├── cases │ │ ├── cases.go │ │ ├── context.go │ │ ├── fold.go │ │ ├── icu.go │ │ ├── info.go │ │ ├── map.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ └── trieval.go │ ├── internal │ │ ├── internal.go │ │ ├── language │ │ │ ├── common.go │ │ │ ├── compact.go │ │ │ ├── compact │ │ │ │ ├── compact.go │ │ │ │ ├── language.go │ │ │ │ ├── parents.go │ │ │ │ ├── tables.go │ │ │ │ └── tags.go │ │ │ ├── compose.go │ │ │ ├── coverage.go │ │ │ ├── language.go │ │ │ ├── lookup.go │ │ │ ├── match.go │ │ │ ├── parse.go │ │ │ ├── tables.go │ │ │ └── tags.go │ │ ├── match.go │ │ └── tag │ │ │ └── tag.go │ ├── language │ │ ├── coverage.go │ │ ├── doc.go │ │ ├── language.go │ │ ├── match.go │ │ ├── parse.go │ │ ├── tables.go │ │ └── tags.go │ ├── transform │ │ └── transform.go │ └── unicode │ │ └── 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 │ └── tools │ ├── LICENSE │ ├── PATENTS │ ├── go │ ├── ast │ │ ├── edge │ │ │ └── edge.go │ │ └── inspector │ │ │ ├── cursor.go │ │ │ ├── inspector.go │ │ │ ├── iter.go │ │ │ ├── typeof.go │ │ │ └── walk.go │ ├── gcexportdata │ │ ├── gcexportdata.go │ │ └── importer.go │ ├── packages │ │ ├── doc.go │ │ ├── external.go │ │ ├── golist.go │ │ ├── golist_overlay.go │ │ ├── loadmode_string.go │ │ ├── packages.go │ │ └── visit.go │ └── types │ │ ├── objectpath │ │ └── objectpath.go │ │ └── typeutil │ │ ├── callee.go │ │ ├── imports.go │ │ ├── map.go │ │ ├── methodsetcache.go │ │ └── ui.go │ └── internal │ ├── aliases │ ├── aliases.go │ └── aliases_go122.go │ ├── event │ ├── core │ │ ├── event.go │ │ ├── export.go │ │ └── fast.go │ ├── doc.go │ ├── event.go │ ├── keys │ │ ├── keys.go │ │ ├── standard.go │ │ └── util.go │ └── label │ │ └── label.go │ ├── gcimporter │ ├── bimport.go │ ├── exportdata.go │ ├── gcimporter.go │ ├── iexport.go │ ├── iimport.go │ ├── predeclared.go │ ├── support.go │ └── ureader_yes.go │ ├── gocommand │ ├── invoke.go │ ├── invoke_notunix.go │ ├── invoke_unix.go │ ├── vendor.go │ └── version.go │ ├── packagesinternal │ └── packages.go │ ├── pkgbits │ ├── codes.go │ ├── decoder.go │ ├── doc.go │ ├── encoder.go │ ├── flags.go │ ├── reloc.go │ ├── support.go │ ├── sync.go │ ├── syncmarker_string.go │ └── version.go │ ├── stdlib │ ├── deps.go │ ├── import.go │ ├── manifest.go │ └── stdlib.go │ ├── typeparams │ ├── common.go │ ├── coretype.go │ ├── free.go │ ├── normalize.go │ ├── termlist.go │ └── typeterm.go │ ├── typesinternal │ ├── classify_call.go │ ├── element.go │ ├── errorcode.go │ ├── errorcode_string.go │ ├── fx.go │ ├── isnamed.go │ ├── qualifier.go │ ├── recv.go │ ├── toonew.go │ ├── types.go │ ├── varkind.go │ ├── varkind_go124.go │ └── zerovalue.go │ └── versions │ ├── features.go │ ├── gover.go │ ├── types.go │ └── versions.go ├── gopkg.in ├── src-d │ ├── go-billy.v4 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── DCO │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── fs.go │ │ ├── helper │ │ │ ├── chroot │ │ │ │ └── chroot.go │ │ │ └── polyfill │ │ │ │ └── polyfill.go │ │ ├── osfs │ │ │ ├── os.go │ │ │ ├── os_posix.go │ │ │ └── os_windows.go │ │ └── util │ │ │ ├── glob.go │ │ │ └── util.go │ └── go-git.v4 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── COMPATIBILITY.md │ │ ├── CONTRIBUTING.md │ │ ├── DCO │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── blame.go │ │ ├── common.go │ │ ├── config │ │ ├── branch.go │ │ ├── config.go │ │ ├── modules.go │ │ └── refspec.go │ │ ├── doc.go │ │ ├── internal │ │ ├── revision │ │ │ ├── parser.go │ │ │ ├── scanner.go │ │ │ └── token.go │ │ └── url │ │ │ └── url.go │ │ ├── object_walker.go │ │ ├── options.go │ │ ├── plumbing │ │ ├── cache │ │ │ ├── buffer_lru.go │ │ │ ├── common.go │ │ │ └── object_lru.go │ │ ├── error.go │ │ ├── filemode │ │ │ └── filemode.go │ │ ├── format │ │ │ ├── config │ │ │ │ ├── common.go │ │ │ │ ├── decoder.go │ │ │ │ ├── doc.go │ │ │ │ ├── encoder.go │ │ │ │ ├── option.go │ │ │ │ └── section.go │ │ │ ├── diff │ │ │ │ ├── patch.go │ │ │ │ └── unified_encoder.go │ │ │ ├── gitignore │ │ │ │ ├── dir.go │ │ │ │ ├── doc.go │ │ │ │ ├── matcher.go │ │ │ │ └── pattern.go │ │ │ ├── idxfile │ │ │ │ ├── decoder.go │ │ │ │ ├── doc.go │ │ │ │ ├── encoder.go │ │ │ │ ├── idxfile.go │ │ │ │ └── writer.go │ │ │ ├── index │ │ │ │ ├── decoder.go │ │ │ │ ├── doc.go │ │ │ │ ├── encoder.go │ │ │ │ ├── index.go │ │ │ │ └── match.go │ │ │ ├── objfile │ │ │ │ ├── doc.go │ │ │ │ ├── reader.go │ │ │ │ └── writer.go │ │ │ ├── packfile │ │ │ │ ├── common.go │ │ │ │ ├── delta_index.go │ │ │ │ ├── delta_selector.go │ │ │ │ ├── diff_delta.go │ │ │ │ ├── doc.go │ │ │ │ ├── encoder.go │ │ │ │ ├── error.go │ │ │ │ ├── fsobject.go │ │ │ │ ├── object_pack.go │ │ │ │ ├── packfile.go │ │ │ │ ├── parser.go │ │ │ │ ├── patch_delta.go │ │ │ │ └── scanner.go │ │ │ └── pktline │ │ │ │ ├── encoder.go │ │ │ │ └── scanner.go │ │ ├── hash.go │ │ ├── memory.go │ │ ├── object.go │ │ ├── object │ │ │ ├── blob.go │ │ │ ├── change.go │ │ │ ├── change_adaptor.go │ │ │ ├── commit.go │ │ │ ├── commit_walker.go │ │ │ ├── commit_walker_bfs.go │ │ │ ├── commit_walker_bfs_filtered.go │ │ │ ├── commit_walker_ctime.go │ │ │ ├── commit_walker_file.go │ │ │ ├── common.go │ │ │ ├── difftree.go │ │ │ ├── file.go │ │ │ ├── merge_base.go │ │ │ ├── object.go │ │ │ ├── patch.go │ │ │ ├── tag.go │ │ │ ├── tree.go │ │ │ └── treenoder.go │ │ ├── protocol │ │ │ └── packp │ │ │ │ ├── advrefs.go │ │ │ │ ├── advrefs_decode.go │ │ │ │ ├── advrefs_encode.go │ │ │ │ ├── capability │ │ │ │ ├── capability.go │ │ │ │ └── list.go │ │ │ │ ├── common.go │ │ │ │ ├── doc.go │ │ │ │ ├── report_status.go │ │ │ │ ├── shallowupd.go │ │ │ │ ├── sideband │ │ │ │ ├── common.go │ │ │ │ ├── demux.go │ │ │ │ ├── doc.go │ │ │ │ └── muxer.go │ │ │ │ ├── srvresp.go │ │ │ │ ├── ulreq.go │ │ │ │ ├── ulreq_decode.go │ │ │ │ ├── ulreq_encode.go │ │ │ │ ├── updreq.go │ │ │ │ ├── updreq_decode.go │ │ │ │ ├── updreq_encode.go │ │ │ │ ├── uppackreq.go │ │ │ │ └── uppackresp.go │ │ ├── reference.go │ │ ├── revision.go │ │ ├── revlist │ │ │ └── revlist.go │ │ ├── storer │ │ │ ├── doc.go │ │ │ ├── index.go │ │ │ ├── object.go │ │ │ ├── reference.go │ │ │ ├── shallow.go │ │ │ └── storer.go │ │ └── transport │ │ │ ├── client │ │ │ └── client.go │ │ │ ├── common.go │ │ │ ├── file │ │ │ ├── client.go │ │ │ └── server.go │ │ │ ├── git │ │ │ └── common.go │ │ │ ├── http │ │ │ ├── common.go │ │ │ ├── receive_pack.go │ │ │ └── upload_pack.go │ │ │ ├── internal │ │ │ └── common │ │ │ │ ├── common.go │ │ │ │ └── server.go │ │ │ ├── server │ │ │ ├── loader.go │ │ │ └── server.go │ │ │ └── ssh │ │ │ ├── auth_method.go │ │ │ └── common.go │ │ ├── prune.go │ │ ├── references.go │ │ ├── remote.go │ │ ├── repository.go │ │ ├── status.go │ │ ├── storage │ │ ├── filesystem │ │ │ ├── config.go │ │ │ ├── deltaobject.go │ │ │ ├── dotgit │ │ │ │ ├── dotgit.go │ │ │ │ ├── dotgit_rewrite_packed_refs.go │ │ │ │ ├── dotgit_setref.go │ │ │ │ └── writers.go │ │ │ ├── index.go │ │ │ ├── module.go │ │ │ ├── object.go │ │ │ ├── reference.go │ │ │ ├── shallow.go │ │ │ └── storage.go │ │ ├── memory │ │ │ └── storage.go │ │ └── storer.go │ │ ├── submodule.go │ │ ├── utils │ │ ├── binary │ │ │ ├── read.go │ │ │ └── write.go │ │ ├── diff │ │ │ └── diff.go │ │ ├── ioutil │ │ │ └── common.go │ │ └── merkletrie │ │ │ ├── change.go │ │ │ ├── difftree.go │ │ │ ├── doc.go │ │ │ ├── doubleiter.go │ │ │ ├── filesystem │ │ │ └── node.go │ │ │ ├── index │ │ │ └── node.go │ │ │ ├── internal │ │ │ └── frame │ │ │ │ └── frame.go │ │ │ ├── iter.go │ │ │ └── noder │ │ │ ├── noder.go │ │ │ └── path.go │ │ ├── worktree.go │ │ ├── worktree_bsd.go │ │ ├── worktree_commit.go │ │ ├── worktree_linux.go │ │ ├── worktree_status.go │ │ ├── worktree_unix_other.go │ │ └── worktree_windows.go └── warnings.v0 │ ├── LICENSE │ ├── README │ └── warnings.go ├── k8s.io └── klog │ └── v2 │ ├── .gitignore │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── OWNERS │ ├── README.md │ ├── RELEASE.md │ ├── SECURITY.md │ ├── SECURITY_CONTACTS │ ├── code-of-conduct.md │ ├── contextual.go │ ├── exit.go │ ├── imports.go │ ├── internal │ ├── buffer │ │ └── buffer.go │ ├── clock │ │ ├── README.md │ │ └── clock.go │ ├── dbg │ │ └── dbg.go │ ├── serialize │ │ └── keyvalues.go │ └── severity │ │ └── severity.go │ ├── k8s_references.go │ ├── klog.go │ ├── klog_file.go │ ├── klog_file_others.go │ ├── klog_file_windows.go │ └── klogr.go └── modules.txt /.github/actions/setup-nightly-infra/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/.github/actions/setup-nightly-infra/action.yaml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/_chatops_retest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/.github/workflows/_chatops_retest.yml -------------------------------------------------------------------------------- /.github/workflows/_slash.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/.github/workflows/_slash.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/images.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/.github/workflows/images.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/.gitignore -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/.yamllint -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/Makefile -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/OWNERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/README.md -------------------------------------------------------------------------------- /adjustpermissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/adjustpermissions.py -------------------------------------------------------------------------------- /bots/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/bots/README.md -------------------------------------------------------------------------------- /bots/buildcaptain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/bots/buildcaptain/README.md -------------------------------------------------------------------------------- /bots/buildcaptain/cmd/buildcaptain/kodata/LICENSE: -------------------------------------------------------------------------------- 1 | ../../../../../LICENSE -------------------------------------------------------------------------------- /bots/buildcaptain/cmd/buildcaptain/kodata/OWNERS: -------------------------------------------------------------------------------- 1 | ../../../../../OWNERS -------------------------------------------------------------------------------- /bots/buildcaptain/cmd/buildcaptain/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/bots/buildcaptain/cmd/buildcaptain/main.go -------------------------------------------------------------------------------- /bots/buildcaptain/cmd/buildcaptain/rotation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/bots/buildcaptain/cmd/buildcaptain/rotation.go -------------------------------------------------------------------------------- /bots/buildcaptain/config/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/bots/buildcaptain/config/deployment.yaml -------------------------------------------------------------------------------- /bots/buildcaptain/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/bots/buildcaptain/go.mod -------------------------------------------------------------------------------- /bots/buildcaptain/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/bots/buildcaptain/go.sum -------------------------------------------------------------------------------- /bots/buildcaptain/rotation.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/bots/buildcaptain/rotation.csv -------------------------------------------------------------------------------- /bots/mariobot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/bots/mariobot/README.md -------------------------------------------------------------------------------- /bots/mariobot/cmd/mario/kodata/LICENSE: -------------------------------------------------------------------------------- 1 | ../../../../../LICENSE -------------------------------------------------------------------------------- /bots/mariobot/cmd/mario/kodata/OWNERS: -------------------------------------------------------------------------------- 1 | ../../../../../OWNERS -------------------------------------------------------------------------------- /bots/mariobot/cmd/mario/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/bots/mariobot/cmd/mario/main.go -------------------------------------------------------------------------------- /bots/mariobot/cmd/mario/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/bots/mariobot/cmd/mario/main_test.go -------------------------------------------------------------------------------- /bots/mariobot/config/100-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/bots/mariobot/config/100-namespace.yaml -------------------------------------------------------------------------------- /bots/mariobot/config/200-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/bots/mariobot/config/200-serviceaccount.yaml -------------------------------------------------------------------------------- /bots/mariobot/config/mario.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/bots/mariobot/config/mario.yaml -------------------------------------------------------------------------------- /bots/mariobot/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/bots/mariobot/go.mod -------------------------------------------------------------------------------- /bots/mariobot/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/bots/mariobot/go.sum -------------------------------------------------------------------------------- /cmd/combine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/cmd/combine/README.md -------------------------------------------------------------------------------- /cmd/combine/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/cmd/combine/main.go -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/code-of-conduct.md -------------------------------------------------------------------------------- /demo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/dogfooding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/docs/dogfooding.md -------------------------------------------------------------------------------- /docs/kind-e2e.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/docs/kind-e2e.md -------------------------------------------------------------------------------- /docs/prow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/docs/prow.md -------------------------------------------------------------------------------- /docs/robocat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/docs/robocat.md -------------------------------------------------------------------------------- /docs/signing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/docs/signing.md -------------------------------------------------------------------------------- /dummy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/dummy.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/go.sum -------------------------------------------------------------------------------- /hack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/hack/README.md -------------------------------------------------------------------------------- /hack/tekton_ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/hack/tekton_ci.sh -------------------------------------------------------------------------------- /hack/tekton_in_kind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/hack/tekton_in_kind.sh -------------------------------------------------------------------------------- /hack/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/hack/tools.go -------------------------------------------------------------------------------- /label_sync/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/label_sync/README.md -------------------------------------------------------------------------------- /label_sync/cluster/label_sync_cron_job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/label_sync/cluster/label_sync_cron_job.yaml -------------------------------------------------------------------------------- /label_sync/cluster/label_sync_job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/label_sync/cluster/label_sync_job.yaml -------------------------------------------------------------------------------- /label_sync/labels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/label_sync/labels.yaml -------------------------------------------------------------------------------- /pipelinerun-logs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/pipelinerun-logs/Dockerfile -------------------------------------------------------------------------------- /pipelinerun-logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/pipelinerun-logs/README.md -------------------------------------------------------------------------------- /pipelinerun-logs/cmd/http/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/pipelinerun-logs/cmd/http/entry.go -------------------------------------------------------------------------------- /pipelinerun-logs/cmd/http/kodata/templates: -------------------------------------------------------------------------------- 1 | ../../../templates -------------------------------------------------------------------------------- /pipelinerun-logs/cmd/http/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/pipelinerun-logs/cmd/http/main.go -------------------------------------------------------------------------------- /pipelinerun-logs/cmd/http/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/pipelinerun-logs/cmd/http/query.go -------------------------------------------------------------------------------- /pipelinerun-logs/cmd/http/query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/pipelinerun-logs/cmd/http/query_test.go -------------------------------------------------------------------------------- /pipelinerun-logs/cmd/http/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/pipelinerun-logs/cmd/http/server.go -------------------------------------------------------------------------------- /pipelinerun-logs/cmd/http/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/pipelinerun-logs/cmd/http/server_test.go -------------------------------------------------------------------------------- /pipelinerun-logs/config/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/pipelinerun-logs/config/deployment.yaml -------------------------------------------------------------------------------- /pipelinerun-logs/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/pipelinerun-logs/go.mod -------------------------------------------------------------------------------- /pipelinerun-logs/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/pipelinerun-logs/go.sum -------------------------------------------------------------------------------- /pipelinerun-logs/pkg/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/pipelinerun-logs/pkg/config/config.go -------------------------------------------------------------------------------- /pipelinerun-logs/pkg/config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/pipelinerun-logs/pkg/config/config_test.go -------------------------------------------------------------------------------- /pipelinerun-logs/templates/entries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/pipelinerun-logs/templates/entries.html -------------------------------------------------------------------------------- /prow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/prow/README.md -------------------------------------------------------------------------------- /prow/control-plane/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/prow/control-plane/config.yaml -------------------------------------------------------------------------------- /prow/control-plane/extra.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/prow/control-plane/extra.yaml -------------------------------------------------------------------------------- /prow/control-plane/ghproxy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/prow/control-plane/ghproxy.yaml -------------------------------------------------------------------------------- /prow/control-plane/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/prow/control-plane/ingress.yaml -------------------------------------------------------------------------------- /prow/control-plane/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/prow/control-plane/kustomization.yaml -------------------------------------------------------------------------------- /prow/control-plane/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/prow/control-plane/namespace.yaml -------------------------------------------------------------------------------- /prow/control-plane/plugins.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/prow/control-plane/plugins.yaml -------------------------------------------------------------------------------- /prow/control-plane/prow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/prow/control-plane/prow.yaml -------------------------------------------------------------------------------- /prow/control-plane/tune-sysctls_daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/prow/control-plane/tune-sysctls_daemonset.yaml -------------------------------------------------------------------------------- /prow/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/prow/kustomization.yaml -------------------------------------------------------------------------------- /prow/test-pods/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/prow/test-pods/kustomization.yaml -------------------------------------------------------------------------------- /prow/test-pods/prow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/prow/test-pods/prow.yaml -------------------------------------------------------------------------------- /prow/test-pods/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/prow/test-pods/rbac.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyyaml>=6.0 -------------------------------------------------------------------------------- /roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/roadmap.md -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/deploy-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/scripts/deploy-release.sh -------------------------------------------------------------------------------- /scripts/dummy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/scripts/dummy.go -------------------------------------------------------------------------------- /scripts/e2e-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/scripts/e2e-tests.sh -------------------------------------------------------------------------------- /scripts/library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/scripts/library.sh -------------------------------------------------------------------------------- /scripts/markdown-link-check-config.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/scripts/markdown-link-check-config.rc -------------------------------------------------------------------------------- /scripts/markdown-lint-config.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/scripts/markdown-lint-config.rc -------------------------------------------------------------------------------- /scripts/presubmit-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/scripts/presubmit-tests.sh -------------------------------------------------------------------------------- /scripts/verified-catalog-e2e-common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/scripts/verified-catalog-e2e-common.sh -------------------------------------------------------------------------------- /tekton/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/README.md -------------------------------------------------------------------------------- /tekton/catalog/pipelines/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/catalog/pipelines/release.yaml -------------------------------------------------------------------------------- /tekton/catalog/tasks/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/catalog/tasks/publish.yaml -------------------------------------------------------------------------------- /tekton/cd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/cd/README.md -------------------------------------------------------------------------------- /tekton/cd/add-pr-body-ci/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/cd/add-pr-body-ci/base/kustomization.yaml -------------------------------------------------------------------------------- /tekton/cd/build-id-ci/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/cd/build-id-ci/base/kustomization.yaml -------------------------------------------------------------------------------- /tekton/cd/chains/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/cd/chains/base/kustomization.yaml -------------------------------------------------------------------------------- /tekton/cd/dashboard/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/cd/dashboard/base/kustomization.yaml -------------------------------------------------------------------------------- /tekton/cd/pipeline/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/cd/pipeline/base/kustomization.yaml -------------------------------------------------------------------------------- /tekton/cd/pipeline/overlays/oci-ci-cd/webhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/cd/pipeline/overlays/oci-ci-cd/webhook.yaml -------------------------------------------------------------------------------- /tekton/cd/pr-commenter/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/cd/pr-commenter/base/kustomization.yaml -------------------------------------------------------------------------------- /tekton/cd/results/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/cd/results/README.md -------------------------------------------------------------------------------- /tekton/cd/results/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/cd/results/base/kustomization.yaml -------------------------------------------------------------------------------- /tekton/cd/results/overlays/oci-ci-cd/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/cd/results/overlays/oci-ci-cd/ingress.yaml -------------------------------------------------------------------------------- /tekton/cd/results/overlays/oci-ci-cd/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/cd/results/overlays/oci-ci-cd/rbac.yaml -------------------------------------------------------------------------------- /tekton/cd/results/overlays/oci-ci-cd/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/cd/results/overlays/oci-ci-cd/service.yaml -------------------------------------------------------------------------------- /tekton/cd/triggers/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/cd/triggers/base/kustomization.yaml -------------------------------------------------------------------------------- /tekton/certificates/clusterissuer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/certificates/clusterissuer.yaml -------------------------------------------------------------------------------- /tekton/ci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/README.md -------------------------------------------------------------------------------- /tekton/ci/bases/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/bases/kustomization.yaml -------------------------------------------------------------------------------- /tekton/ci/bases/kustomizeconfig/trigger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/bases/kustomizeconfig/trigger.yaml -------------------------------------------------------------------------------- /tekton/ci/bases/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/bases/template.yaml -------------------------------------------------------------------------------- /tekton/ci/bases/trigger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/bases/trigger.yaml -------------------------------------------------------------------------------- /tekton/ci/cluster-interceptors/add-pr-body/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/cluster-interceptors/add-pr-body/go.mod -------------------------------------------------------------------------------- /tekton/ci/cluster-interceptors/add-pr-body/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/cluster-interceptors/add-pr-body/go.sum -------------------------------------------------------------------------------- /tekton/ci/cluster-interceptors/build-id/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/cluster-interceptors/build-id/README.md -------------------------------------------------------------------------------- /tekton/ci/cluster-interceptors/build-id/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/cluster-interceptors/build-id/go.mod -------------------------------------------------------------------------------- /tekton/ci/cluster-interceptors/build-id/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/cluster-interceptors/build-id/go.sum -------------------------------------------------------------------------------- /tekton/ci/cluster-interceptors/build-id/pkg/bid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/cluster-interceptors/build-id/pkg/bid.go -------------------------------------------------------------------------------- /tekton/ci/custom-tasks/pr-commenter/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/custom-tasks/pr-commenter/.golangci.yml -------------------------------------------------------------------------------- /tekton/ci/custom-tasks/pr-commenter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/custom-tasks/pr-commenter/Makefile -------------------------------------------------------------------------------- /tekton/ci/custom-tasks/pr-commenter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/custom-tasks/pr-commenter/README.md -------------------------------------------------------------------------------- /tekton/ci/custom-tasks/pr-commenter/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/custom-tasks/pr-commenter/go.mod -------------------------------------------------------------------------------- /tekton/ci/custom-tasks/pr-commenter/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/custom-tasks/pr-commenter/go.sum -------------------------------------------------------------------------------- /tekton/ci/custom-tasks/pr-commenter/tools/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/custom-tasks/pr-commenter/tools/go.mod -------------------------------------------------------------------------------- /tekton/ci/custom-tasks/pr-commenter/tools/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/custom-tasks/pr-commenter/tools/tools.go -------------------------------------------------------------------------------- /tekton/ci/custom-tasks/pr-status-updater/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/custom-tasks/pr-status-updater/Makefile -------------------------------------------------------------------------------- /tekton/ci/custom-tasks/pr-status-updater/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/custom-tasks/pr-status-updater/README.md -------------------------------------------------------------------------------- /tekton/ci/custom-tasks/pr-status-updater/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/custom-tasks/pr-status-updater/go.mod -------------------------------------------------------------------------------- /tekton/ci/custom-tasks/pr-status-updater/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/custom-tasks/pr-status-updater/go.sum -------------------------------------------------------------------------------- /tekton/ci/docs/ci-concept.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/docs/ci-concept.md -------------------------------------------------------------------------------- /tekton/ci/docs/ci-setup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/docs/ci-setup.svg -------------------------------------------------------------------------------- /tekton/ci/infra/0001_rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/infra/0001_rbac.yaml -------------------------------------------------------------------------------- /tekton/ci/infra/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/infra/ingress.yaml -------------------------------------------------------------------------------- /tekton/ci/infra/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/infra/kustomization.yaml -------------------------------------------------------------------------------- /tekton/ci/infra/namespace.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: tekton-ci -------------------------------------------------------------------------------- /tekton/ci/interceptors/add-pr-body/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/interceptors/add-pr-body/README.md -------------------------------------------------------------------------------- /tekton/ci/interceptors/add-pr-body/cmd/add-pr-body/kodata/LICENSE: -------------------------------------------------------------------------------- 1 | ../../../../../../../LICENSE -------------------------------------------------------------------------------- /tekton/ci/interceptors/add-pr-body/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/interceptors/add-pr-body/go.mod -------------------------------------------------------------------------------- /tekton/ci/interceptors/add-pr-body/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/interceptors/add-pr-body/go.sum -------------------------------------------------------------------------------- /tekton/ci/interceptors/add-team-members/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/interceptors/add-team-members/README.md -------------------------------------------------------------------------------- /tekton/ci/interceptors/add-team-members/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/interceptors/add-team-members/go.mod -------------------------------------------------------------------------------- /tekton/ci/interceptors/add-team-members/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/interceptors/add-team-members/go.sum -------------------------------------------------------------------------------- /tekton/ci/interceptors/github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/interceptors/github/README.md -------------------------------------------------------------------------------- /tekton/ci/interceptors/github/config/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/interceptors/github/config/service.yaml -------------------------------------------------------------------------------- /tekton/ci/interceptors/github/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/interceptors/github/go.mod -------------------------------------------------------------------------------- /tekton/ci/interceptors/github/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/interceptors/github/go.sum -------------------------------------------------------------------------------- /tekton/ci/interceptors/github/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/interceptors/github/main.go -------------------------------------------------------------------------------- /tekton/ci/interceptors/github/pkg/github/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/interceptors/github/pkg/github/config.go -------------------------------------------------------------------------------- /tekton/ci/interceptors/github/pkg/github/push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/interceptors/github/pkg/github/push.go -------------------------------------------------------------------------------- /tekton/ci/interceptors/github/pkg/github/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/interceptors/github/pkg/github/server.go -------------------------------------------------------------------------------- /tekton/ci/interceptors/github/pkg/github/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/interceptors/github/pkg/github/status.go -------------------------------------------------------------------------------- /tekton/ci/jobs/e2e-kind.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/jobs/e2e-kind.yaml -------------------------------------------------------------------------------- /tekton/ci/jobs/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/jobs/kustomization.yaml -------------------------------------------------------------------------------- /tekton/ci/jobs/tekton-catalog-catlin-lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/jobs/tekton-catalog-catlin-lint.yaml -------------------------------------------------------------------------------- /tekton/ci/jobs/tekton-catalog-diff-task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/jobs/tekton-catalog-diff-task.yaml -------------------------------------------------------------------------------- /tekton/ci/jobs/tekton-docs-reviews.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/jobs/tekton-docs-reviews.yaml -------------------------------------------------------------------------------- /tekton/ci/jobs/tekton-github-tasks-completed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/jobs/tekton-github-tasks-completed.yaml -------------------------------------------------------------------------------- /tekton/ci/jobs/tekton-golang-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/jobs/tekton-golang-coverage.yaml -------------------------------------------------------------------------------- /tekton/ci/jobs/tekton-golang-lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/jobs/tekton-golang-lint.yaml -------------------------------------------------------------------------------- /tekton/ci/jobs/tekton-golang-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/jobs/tekton-golang-tests.yaml -------------------------------------------------------------------------------- /tekton/ci/jobs/tekton-org-validation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/jobs/tekton-org-validation.yaml -------------------------------------------------------------------------------- /tekton/ci/jobs/tekton-python-unit-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/jobs/tekton-python-unit-tests.yaml -------------------------------------------------------------------------------- /tekton/ci/jobs/tekton-teps-validation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/jobs/tekton-teps-validation.yaml -------------------------------------------------------------------------------- /tekton/ci/jobs/tekton-yamllint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/jobs/tekton-yamllint.yaml -------------------------------------------------------------------------------- /tekton/ci/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/kustomization.yaml -------------------------------------------------------------------------------- /tekton/ci/repos/catalog/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/repos/catalog/base/kustomization.yaml -------------------------------------------------------------------------------- /tekton/ci/repos/catalog/base/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/repos/catalog/base/template.yaml -------------------------------------------------------------------------------- /tekton/ci/repos/catalog/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/repos/catalog/kustomization.yaml -------------------------------------------------------------------------------- /tekton/ci/repos/community/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/repos/community/kustomization.yaml -------------------------------------------------------------------------------- /tekton/ci/repos/community/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/repos/community/template.yaml -------------------------------------------------------------------------------- /tekton/ci/repos/community/trigger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/repos/community/trigger.yaml -------------------------------------------------------------------------------- /tekton/ci/repos/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/repos/kustomization.yaml -------------------------------------------------------------------------------- /tekton/ci/repos/shared/all/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/repos/shared/all/kustomization.yaml -------------------------------------------------------------------------------- /tekton/ci/repos/shared/all/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/repos/shared/all/template.yaml -------------------------------------------------------------------------------- /tekton/ci/repos/shared/all/trigger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/repos/shared/all/trigger.yaml -------------------------------------------------------------------------------- /tekton/ci/repos/shared/doc-reviews/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/repos/shared/doc-reviews/template.yaml -------------------------------------------------------------------------------- /tekton/ci/repos/shared/doc-reviews/trigger-pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/repos/shared/doc-reviews/trigger-pr.yaml -------------------------------------------------------------------------------- /tekton/ci/repos/shared/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/repos/shared/kustomization.yaml -------------------------------------------------------------------------------- /tekton/ci/repos/website/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/repos/website/kustomization.yaml -------------------------------------------------------------------------------- /tekton/ci/repos/website/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/repos/website/template.yaml -------------------------------------------------------------------------------- /tekton/ci/repos/website/trigger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/repos/website/trigger.yaml -------------------------------------------------------------------------------- /tekton/ci/shared/bindings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/shared/bindings.yaml -------------------------------------------------------------------------------- /tekton/ci/shared/common-tasks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/shared/common-tasks.yaml -------------------------------------------------------------------------------- /tekton/ci/shared/eventlistener.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/shared/eventlistener.yaml -------------------------------------------------------------------------------- /tekton/ci/shared/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/shared/kustomization.yaml -------------------------------------------------------------------------------- /tekton/ci/stepactions/gcs-upload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/stepactions/gcs-upload.yaml -------------------------------------------------------------------------------- /tekton/ci/stepactions/git-batch-merge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/stepactions/git-batch-merge.yaml -------------------------------------------------------------------------------- /tekton/ci/stepactions/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/ci/stepactions/kustomization.yaml -------------------------------------------------------------------------------- /tekton/cronjobs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/cronjobs/README.md -------------------------------------------------------------------------------- /tekton/cronjobs/bases/catalog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/cronjobs/bases/catalog/README.md -------------------------------------------------------------------------------- /tekton/cronjobs/bases/catalog/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/cronjobs/bases/catalog/kustomization.yaml -------------------------------------------------------------------------------- /tekton/cronjobs/bases/cleanup/README.md: -------------------------------------------------------------------------------- 1 | Cron Job template to cleanup runs from a cluster. 2 | -------------------------------------------------------------------------------- /tekton/cronjobs/bases/cleanup/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/cronjobs/bases/cleanup/kustomization.yaml -------------------------------------------------------------------------------- /tekton/cronjobs/bases/configmap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/cronjobs/bases/configmap/README.md -------------------------------------------------------------------------------- /tekton/cronjobs/bases/configmap/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/cronjobs/bases/configmap/kustomization.yaml -------------------------------------------------------------------------------- /tekton/cronjobs/bases/folder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/cronjobs/bases/folder/README.md -------------------------------------------------------------------------------- /tekton/cronjobs/bases/folder/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/cronjobs/bases/folder/kustomization.yaml -------------------------------------------------------------------------------- /tekton/cronjobs/bases/helm/README.md: -------------------------------------------------------------------------------- 1 | Cron Job template to deploy a helm chart to a cluster. 2 | -------------------------------------------------------------------------------- /tekton/cronjobs/bases/helm/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/cronjobs/bases/helm/kustomization.yaml -------------------------------------------------------------------------------- /tekton/cronjobs/bases/image-build/README.md: -------------------------------------------------------------------------------- 1 | Cron Job template to build container images. 2 | -------------------------------------------------------------------------------- /tekton/cronjobs/bases/nightly-tests/README.md: -------------------------------------------------------------------------------- 1 | Cron Job template to run nightly tests. 2 | -------------------------------------------------------------------------------- /tekton/cronjobs/bases/peribolos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/cronjobs/bases/peribolos/README.md -------------------------------------------------------------------------------- /tekton/cronjobs/bases/peribolos/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/cronjobs/bases/peribolos/kustomization.yaml -------------------------------------------------------------------------------- /tekton/cronjobs/bases/release/README.md: -------------------------------------------------------------------------------- 1 | Cron Job template to trigger nightly releases. 2 | -------------------------------------------------------------------------------- /tekton/cronjobs/bases/release/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/cronjobs/bases/release/kustomization.yaml -------------------------------------------------------------------------------- /tekton/cronjobs/bases/tekton-service/README.md: -------------------------------------------------------------------------------- 1 | Cron Job template to deploy a Tekton service release. 2 | -------------------------------------------------------------------------------- /tekton/cronjobs/dogfooding/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/cronjobs/dogfooding/kustomization.yaml -------------------------------------------------------------------------------- /tekton/cronjobs/nightly_oci/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/cronjobs/nightly_oci/kustomization.yaml -------------------------------------------------------------------------------- /tekton/cronjobs/nightly_oci/nightly-tests/ppc64le/catalog-nightly-test/README.md: -------------------------------------------------------------------------------- 1 | Cron Job to run nightly catalog e2e tests on ppc64le hardware. 2 | -------------------------------------------------------------------------------- /tekton/cronjobs/nightly_oci/nightly-tests/ppc64le/cli-nightly-test/README.md: -------------------------------------------------------------------------------- 1 | Cron Job to run nightly cli e2e tests on ppc64le hardware. 2 | -------------------------------------------------------------------------------- /tekton/cronjobs/nightly_oci/nightly-tests/ppc64le/dashboard-nightly-test/README.md: -------------------------------------------------------------------------------- 1 | Cron Job to run nightly dashboard e2e tests on ppc64le hardware. 2 | -------------------------------------------------------------------------------- /tekton/cronjobs/nightly_oci/nightly-tests/ppc64le/operator-nightly-test/README.md: -------------------------------------------------------------------------------- 1 | Cron Job to run nightly operator e2e tests on ppc64le hardware. 2 | -------------------------------------------------------------------------------- /tekton/cronjobs/nightly_oci/nightly-tests/ppc64le/pipeline-nightly-test/README.md: -------------------------------------------------------------------------------- 1 | Cron Job to run nightly pipeline e2e tests. 2 | -------------------------------------------------------------------------------- /tekton/cronjobs/nightly_oci/nightly-tests/ppc64le/triggers-nightly-test/README.md: -------------------------------------------------------------------------------- 1 | Cron Job to run nightly triggers e2e tests on ppc64le hardware. 2 | -------------------------------------------------------------------------------- /tekton/cronjobs/nightly_oci/nightly-tests/s390x/catalog-nightly-test/README.md: -------------------------------------------------------------------------------- 1 | Cron Job to run nightly catalog e2e tests on s390x hardware. 2 | -------------------------------------------------------------------------------- /tekton/cronjobs/nightly_oci/nightly-tests/s390x/cli-nightly-test/README.md: -------------------------------------------------------------------------------- 1 | Cron Job to run nightly cli e2e tests on s390x hardware. 2 | -------------------------------------------------------------------------------- /tekton/cronjobs/nightly_oci/nightly-tests/s390x/dashboard-nightly-test/README.md: -------------------------------------------------------------------------------- 1 | Cron Job to run nightly dashboard e2e tests on s390x hardware. 2 | -------------------------------------------------------------------------------- /tekton/cronjobs/nightly_oci/nightly-tests/s390x/operator-nightly-test/README.md: -------------------------------------------------------------------------------- 1 | Cron Job to run nightly operator e2e tests on s390x hardware. 2 | -------------------------------------------------------------------------------- /tekton/cronjobs/nightly_oci/nightly-tests/s390x/pipeline-nightly-test/README.md: -------------------------------------------------------------------------------- 1 | Cron Job to run nightly pipeline e2e tests on s390x hardware. 2 | -------------------------------------------------------------------------------- /tekton/cronjobs/nightly_oci/nightly-tests/s390x/triggers-nightly-test/README.md: -------------------------------------------------------------------------------- 1 | Cron Job to run nightly triggers e2e tests on s390x hardware. 2 | -------------------------------------------------------------------------------- /tekton/cronjobs/nightly_oci/releases/nextcron.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/cronjobs/nightly_oci/releases/nextcron.txt -------------------------------------------------------------------------------- /tekton/images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/images/README.md -------------------------------------------------------------------------------- /tekton/images/alpine-git-nonroot/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/images/alpine-git-nonroot/Dockerfile -------------------------------------------------------------------------------- /tekton/images/buildx-gcloud/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/images/buildx-gcloud/Dockerfile -------------------------------------------------------------------------------- /tekton/images/coverage/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/images/coverage/Dockerfile -------------------------------------------------------------------------------- /tekton/images/generate-matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/images/generate-matrix.py -------------------------------------------------------------------------------- /tekton/images/hub/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/images/hub/Dockerfile -------------------------------------------------------------------------------- /tekton/images/kind-e2e/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/images/kind-e2e/Dockerfile -------------------------------------------------------------------------------- /tekton/images/kind-e2e/setup-kind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/images/kind-e2e/setup-kind.sh -------------------------------------------------------------------------------- /tekton/images/kind/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/images/kind/Dockerfile -------------------------------------------------------------------------------- /tekton/images/ko-gcloud/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/images/ko-gcloud/Dockerfile -------------------------------------------------------------------------------- /tekton/images/ko/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/images/ko/Dockerfile -------------------------------------------------------------------------------- /tekton/images/koparse/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/images/koparse/Dockerfile -------------------------------------------------------------------------------- /tekton/images/koparse/koparse/koparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/images/koparse/koparse/koparse.py -------------------------------------------------------------------------------- /tekton/images/koparse/koparse/test_koparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/images/koparse/koparse/test_koparse.py -------------------------------------------------------------------------------- /tekton/images/koparse/koparse/test_release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/images/koparse/koparse/test_release.yaml -------------------------------------------------------------------------------- /tekton/images/kubectl/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/images/kubectl/Dockerfile -------------------------------------------------------------------------------- /tekton/images/test-runner/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/images/test-runner/Dockerfile -------------------------------------------------------------------------------- /tekton/images/test-runner/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/images/test-runner/entrypoint.sh -------------------------------------------------------------------------------- /tekton/images/test-runner/runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/images/test-runner/runner.sh -------------------------------------------------------------------------------- /tekton/images/test-runner/setup-kind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/images/test-runner/setup-kind.sh -------------------------------------------------------------------------------- /tekton/images/test-runner/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/images/test-runner/test.sh -------------------------------------------------------------------------------- /tekton/images/tini-git/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/images/tini-git/Dockerfile -------------------------------------------------------------------------------- /tekton/images/tkn/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/images/tkn/Dockerfile -------------------------------------------------------------------------------- /tekton/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/kustomization.yaml -------------------------------------------------------------------------------- /tekton/mario-bot/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/mario-bot/ingress.yaml -------------------------------------------------------------------------------- /tekton/mario-bot/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/mario-bot/kustomization.yaml -------------------------------------------------------------------------------- /tekton/mario-bot/mario-github-comment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/mario-bot/mario-github-comment.yaml -------------------------------------------------------------------------------- /tekton/mario-bot/mario-image-build-trigger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/mario-bot/mario-image-build-trigger.yaml -------------------------------------------------------------------------------- /tekton/resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/resources/README.md -------------------------------------------------------------------------------- /tekton/resources/cd/bindings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/resources/cd/bindings.yaml -------------------------------------------------------------------------------- /tekton/resources/cd/catalog-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/resources/cd/catalog-template.yaml -------------------------------------------------------------------------------- /tekton/resources/cd/ci-triggers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/resources/cd/ci-triggers.yaml -------------------------------------------------------------------------------- /tekton/resources/cd/cleanup-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/resources/cd/cleanup-template.yaml -------------------------------------------------------------------------------- /tekton/resources/cd/configmap-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/resources/cd/configmap-template.yaml -------------------------------------------------------------------------------- /tekton/resources/cd/eventlistener.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/resources/cd/eventlistener.yaml -------------------------------------------------------------------------------- /tekton/resources/cd/folder-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/resources/cd/folder-template.yaml -------------------------------------------------------------------------------- /tekton/resources/cd/helm-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/resources/cd/helm-template.yaml -------------------------------------------------------------------------------- /tekton/resources/cd/install-tekton-release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/resources/cd/install-tekton-release.yaml -------------------------------------------------------------------------------- /tekton/resources/cd/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/resources/cd/kustomization.yaml -------------------------------------------------------------------------------- /tekton/resources/cd/notification-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/resources/cd/notification-template.yaml -------------------------------------------------------------------------------- /tekton/resources/cd/notification-triggers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/resources/cd/notification-triggers.yaml -------------------------------------------------------------------------------- /tekton/resources/cd/peribolos-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/resources/cd/peribolos-template.yaml -------------------------------------------------------------------------------- /tekton/resources/cd/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/resources/cd/serviceaccount.yaml -------------------------------------------------------------------------------- /tekton/resources/cd/tekton-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/resources/cd/tekton-template.yaml -------------------------------------------------------------------------------- /tekton/resources/ci/bindings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/resources/ci/bindings.yaml -------------------------------------------------------------------------------- /tekton/resources/ci/github-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/resources/ci/github-template.yaml -------------------------------------------------------------------------------- /tekton/resources/ci/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/resources/ci/kustomization.yaml -------------------------------------------------------------------------------- /tekton/resources/images/bindings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/resources/images/bindings.yaml -------------------------------------------------------------------------------- /tekton/resources/images/copy-all-skopeo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/resources/images/copy-all-skopeo.yaml -------------------------------------------------------------------------------- /tekton/resources/images/eventlistener.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/resources/images/eventlistener.yaml -------------------------------------------------------------------------------- /tekton/resources/images/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/resources/images/kustomization.yaml -------------------------------------------------------------------------------- /tekton/resources/images/single-arch-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/resources/images/single-arch-template.yaml -------------------------------------------------------------------------------- /tekton/resources/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/resources/kustomization.yaml -------------------------------------------------------------------------------- /tekton/resources/nightly-release/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/resources/nightly-release/README.md -------------------------------------------------------------------------------- /tekton/resources/nightly-release/base/trigger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/resources/nightly-release/base/trigger.yaml -------------------------------------------------------------------------------- /tekton/resources/nightly-release/bindings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/resources/nightly-release/bindings.yaml -------------------------------------------------------------------------------- /tekton/resources/nightly-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/resources/nightly-tests/README.md -------------------------------------------------------------------------------- /tekton/resources/nightly-tests/eventlistener.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/resources/nightly-tests/eventlistener.yaml -------------------------------------------------------------------------------- /tekton/resources/nightly-tests/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/resources/nightly-tests/kustomization.yaml -------------------------------------------------------------------------------- /tekton/resources/nightly-tests/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/resources/nightly-tests/serviceaccount.yaml -------------------------------------------------------------------------------- /tekton/resources/org-permissions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/resources/org-permissions/README.md -------------------------------------------------------------------------------- /tekton/resources/org-permissions/peribolos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/resources/org-permissions/peribolos.yaml -------------------------------------------------------------------------------- /tekton/resources/release/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/resources/release/README.md -------------------------------------------------------------------------------- /tekton/resources/release/base/github_release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/resources/release/base/github_release.yaml -------------------------------------------------------------------------------- /tekton/resources/release/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/resources/release/base/kustomization.yaml -------------------------------------------------------------------------------- /tekton/resources/release/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/resources/release/kustomization.yaml -------------------------------------------------------------------------------- /tekton/resources/release/release-logs/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/tekton/resources/release/release-logs/rbac.yaml -------------------------------------------------------------------------------- /vendor/github.com/docker/cli/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/docker/cli/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/docker/cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/docker/cli/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/docker/cli/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/docker/cli/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/docker/cli/cli/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/docker/cli/cli/config/config.go -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/docker/distribution/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/emirpasic/gods/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/emirpasic/gods/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/emirpasic/gods/lists/lists.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/emirpasic/gods/lists/lists.go -------------------------------------------------------------------------------- /vendor/github.com/emirpasic/gods/trees/trees.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/emirpasic/gods/trees/trees.go -------------------------------------------------------------------------------- /vendor/github.com/emirpasic/gods/utils/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/emirpasic/gods/utils/sort.go -------------------------------------------------------------------------------- /vendor/github.com/emirpasic/gods/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/emirpasic/gods/utils/utils.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/go-logr/logr/.golangci.yaml -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/go-logr/logr/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/go-logr/logr/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/go-logr/logr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/go-logr/logr/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/go-logr/logr/SECURITY.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/go-logr/logr/context.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/context_noslog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/go-logr/logr/context_noslog.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/context_slog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/go-logr/logr/context_slog.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/discard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/go-logr/logr/discard.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/logr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/go-logr/logr/logr.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/sloghandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/go-logr/logr/sloghandler.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/slogr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/go-logr/logr/slogr.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/slogsink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/go-logr/logr/slogsink.go -------------------------------------------------------------------------------- /vendor/github.com/golang/groupcache/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/golang/groupcache/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/groupcache/lru/lru.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/golang/groupcache/lru/lru.go -------------------------------------------------------------------------------- /vendor/github.com/google/go-licenses/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /vendor/github.com/google/go-licenses/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/google/go-licenses/Dockerfile -------------------------------------------------------------------------------- /vendor/github.com/google/go-licenses/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/google/go-licenses/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/go-licenses/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/google/go-licenses/Makefile -------------------------------------------------------------------------------- /vendor/github.com/google/go-licenses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/google/go-licenses/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/go-licenses/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/google/go-licenses/check.go -------------------------------------------------------------------------------- /vendor/github.com/google/go-licenses/csv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/google/go-licenses/csv.go -------------------------------------------------------------------------------- /vendor/github.com/google/go-licenses/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/google/go-licenses/main.go -------------------------------------------------------------------------------- /vendor/github.com/google/go-licenses/report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/google/go-licenses/report.go -------------------------------------------------------------------------------- /vendor/github.com/google/go-licenses/save.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/google/go-licenses/save.go -------------------------------------------------------------------------------- /vendor/github.com/google/licenseclassifier/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/google/licenseclassifier/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jbenet/go-context/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/jbenet/go-context/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jbenet/go-context/io/ctxio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/jbenet/go-context/io/ctxio.go -------------------------------------------------------------------------------- /vendor/github.com/kevinburke/ssh_config/.gitattributes: -------------------------------------------------------------------------------- 1 | testdata/dos-lines eol=crlf 2 | -------------------------------------------------------------------------------- /vendor/github.com/kevinburke/ssh_config/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/kevinburke/ssh_config/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/kevinburke/ssh_config/.mailmap -------------------------------------------------------------------------------- /vendor/github.com/kevinburke/ssh_config/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/kevinburke/ssh_config/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/kevinburke/ssh_config/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/kevinburke/ssh_config/Makefile -------------------------------------------------------------------------------- /vendor/github.com/kevinburke/ssh_config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/kevinburke/ssh_config/README.md -------------------------------------------------------------------------------- /vendor/github.com/kevinburke/ssh_config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/kevinburke/ssh_config/config.go -------------------------------------------------------------------------------- /vendor/github.com/kevinburke/ssh_config/lexer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/kevinburke/ssh_config/lexer.go -------------------------------------------------------------------------------- /vendor/github.com/kevinburke/ssh_config/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/kevinburke/ssh_config/parser.go -------------------------------------------------------------------------------- /vendor/github.com/kevinburke/ssh_config/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/kevinburke/ssh_config/token.go -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/klauspost/compress/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/klauspost/compress/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/klauspost/compress/README.md -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/klauspost/compress/SECURITY.md -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/fse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/klauspost/compress/fse/README.md -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/fse/fse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/klauspost/compress/fse/fse.go -------------------------------------------------------------------------------- /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/klauspost/compress/zstd/dict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/klauspost/compress/zstd/dict.go -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/zstd/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/klauspost/compress/zstd/hash.go -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/zstd/zip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/klauspost/compress/zstd/zip.go -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/zstd/zstd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/klauspost/compress/zstd/zstd.go -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/go-homedir/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/mitchellh/go-homedir/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/go-homedir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/mitchellh/go-homedir/README.md -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/go-homedir/homedir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/mitchellh/go-homedir/homedir.go -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/go-digest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/opencontainers/go-digest/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/go-digest/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/opencontainers/go-digest/doc.go -------------------------------------------------------------------------------- /vendor/github.com/otiai10/copy/.gitignore: -------------------------------------------------------------------------------- 1 | test/data.copy 2 | coverage.txt 3 | vendor 4 | .vagrant 5 | .idea/ 6 | -------------------------------------------------------------------------------- /vendor/github.com/otiai10/copy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/otiai10/copy/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/otiai10/copy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/otiai10/copy/README.md -------------------------------------------------------------------------------- /vendor/github.com/otiai10/copy/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/otiai10/copy/copy.go -------------------------------------------------------------------------------- /vendor/github.com/otiai10/copy/copy_namedpipes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/otiai10/copy/copy_namedpipes.go -------------------------------------------------------------------------------- /vendor/github.com/otiai10/copy/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/otiai10/copy/options.go -------------------------------------------------------------------------------- /vendor/github.com/otiai10/copy/preserve_times.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/otiai10/copy/preserve_times.go -------------------------------------------------------------------------------- /vendor/github.com/otiai10/copy/stat_times.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/otiai10/copy/stat_times.go -------------------------------------------------------------------------------- /vendor/github.com/otiai10/copy/test_setup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/otiai10/copy/test_setup.go -------------------------------------------------------------------------------- /vendor/github.com/sergi/go-diff/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/sergi/go-diff/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/sergi/go-diff/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/sergi/go-diff/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/sergi/go-diff/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/sergi/go-diff/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | vendor 3 | 4 | .idea/ 5 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/sirupsen/logrus/.golangci.yml -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/sirupsen/logrus/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/sirupsen/logrus/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/sirupsen/logrus/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/sirupsen/logrus/README.md -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/alt_exit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/sirupsen/logrus/alt_exit.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/sirupsen/logrus/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/sirupsen/logrus/doc.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/sirupsen/logrus/entry.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/exported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/sirupsen/logrus/exported.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/sirupsen/logrus/formatter.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/sirupsen/logrus/hooks.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/sirupsen/logrus/logger.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/logrus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/sirupsen/logrus/logrus.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/sirupsen/logrus/writer.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/cobra/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/cobra/.golangci.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/cobra/.mailmap -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/cobra/CONDUCT.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/cobra/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/cobra/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/cobra/MAINTAINERS -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/cobra/Makefile -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/cobra/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/cobra/SECURITY.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/active_help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/cobra/active_help.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/cobra/args.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/cobra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/cobra/cobra.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/cobra/command.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/command_notwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/cobra/command_notwin.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/command_win.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/cobra/command_win.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/completions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/cobra/completions.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/flag_groups.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/cobra/flag_groups.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/pflag/.editorconfig -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/pflag/.golangci.yaml -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/pflag/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/pflag/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool_func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/pflag/bool_func.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/pflag/bool_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/pflag/bytes.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/pflag/duration.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/duration_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/pflag/duration_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/pflag/errors.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/pflag/float32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float32_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/pflag/float32_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/pflag/float64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float64_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/pflag/float64_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/pflag/func.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/golangflag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/pflag/golangflag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/pflag/int16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int32_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/pflag/int32_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int64_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/pflag/int64_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/pflag/int_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/pflag/ip_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipmask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/pflag/ipmask.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipnet_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/pflag/ipnet_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/pflag/string.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/pflag/string_array.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/pflag/string_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string_to_int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/pflag/string_to_int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/pflag/text.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/pflag/time.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/pflag/uint16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/pflag/uint32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/pflag/uint64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/spf13/pflag/uint_slice.go -------------------------------------------------------------------------------- /vendor/github.com/src-d/gcfg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/src-d/gcfg/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/src-d/gcfg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/src-d/gcfg/README -------------------------------------------------------------------------------- /vendor/github.com/src-d/gcfg/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/src-d/gcfg/doc.go -------------------------------------------------------------------------------- /vendor/github.com/src-d/gcfg/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/src-d/gcfg/errors.go -------------------------------------------------------------------------------- /vendor/github.com/src-d/gcfg/go1_0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/src-d/gcfg/go1_0.go -------------------------------------------------------------------------------- /vendor/github.com/src-d/gcfg/go1_2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/src-d/gcfg/go1_2.go -------------------------------------------------------------------------------- /vendor/github.com/src-d/gcfg/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/src-d/gcfg/read.go -------------------------------------------------------------------------------- /vendor/github.com/src-d/gcfg/scanner/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/src-d/gcfg/scanner/errors.go -------------------------------------------------------------------------------- /vendor/github.com/src-d/gcfg/scanner/scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/src-d/gcfg/scanner/scanner.go -------------------------------------------------------------------------------- /vendor/github.com/src-d/gcfg/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/src-d/gcfg/set.go -------------------------------------------------------------------------------- /vendor/github.com/src-d/gcfg/token/position.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/src-d/gcfg/token/position.go -------------------------------------------------------------------------------- /vendor/github.com/src-d/gcfg/token/serialize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/src-d/gcfg/token/serialize.go -------------------------------------------------------------------------------- /vendor/github.com/src-d/gcfg/token/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/src-d/gcfg/token/token.go -------------------------------------------------------------------------------- /vendor/github.com/src-d/gcfg/types/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/src-d/gcfg/types/bool.go -------------------------------------------------------------------------------- /vendor/github.com/src-d/gcfg/types/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/src-d/gcfg/types/doc.go -------------------------------------------------------------------------------- /vendor/github.com/src-d/gcfg/types/enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/src-d/gcfg/types/enum.go -------------------------------------------------------------------------------- /vendor/github.com/src-d/gcfg/types/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/src-d/gcfg/types/int.go -------------------------------------------------------------------------------- /vendor/github.com/src-d/gcfg/types/scan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/src-d/gcfg/types/scan.go -------------------------------------------------------------------------------- /vendor/github.com/vbatts/tar-split/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/vbatts/tar-split/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/xanzy/ssh-agent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/xanzy/ssh-agent/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/xanzy/ssh-agent/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/xanzy/ssh-agent/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/xanzy/ssh-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/xanzy/ssh-agent/README.md -------------------------------------------------------------------------------- /vendor/github.com/xanzy/ssh-agent/sshagent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/github.com/xanzy/ssh-agent/sshagent.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/.gitignore -------------------------------------------------------------------------------- /vendor/go.opencensus.io/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/go.opencensus.io/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/go.opencensus.io/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/LICENSE -------------------------------------------------------------------------------- /vendor/go.opencensus.io/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/Makefile -------------------------------------------------------------------------------- /vendor/go.opencensus.io/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/README.md -------------------------------------------------------------------------------- /vendor/go.opencensus.io/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/appveyor.yml -------------------------------------------------------------------------------- /vendor/go.opencensus.io/internal/internal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/internal/internal.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/internal/sanitize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/internal/sanitize.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/opencensus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/opencensus.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/plugin/ochttp/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/plugin/ochttp/client.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/plugin/ochttp/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/plugin/ochttp/doc.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/plugin/ochttp/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/plugin/ochttp/route.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/plugin/ochttp/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/plugin/ochttp/server.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/plugin/ochttp/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/plugin/ochttp/stats.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/plugin/ochttp/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/plugin/ochttp/trace.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/resource/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/resource/resource.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/stats/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/stats/doc.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/stats/measure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/stats/measure.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/stats/measure_int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/stats/measure_int64.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/stats/record.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/stats/record.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/stats/units.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/stats/units.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/stats/view/collector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/stats/view/collector.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/stats/view/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/stats/view/doc.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/stats/view/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/stats/view/export.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/stats/view/view.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/stats/view/view.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/stats/view/worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/stats/view/worker.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/tag/context.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/tag/doc.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/tag/key.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/tag/map.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/map_codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/tag/map_codec.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/tag/metadata.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/profile_19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/tag/profile_19.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/profile_not19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/tag/profile_not19.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/tag/validate.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/basetypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/trace/basetypes.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/trace/config.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/trace/doc.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/evictedqueue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/trace/evictedqueue.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/trace/export.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/lrumap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/trace/lrumap.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/sampling.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/trace/sampling.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/spanbucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/trace/spanbucket.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/spanstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/trace/spanstore.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/status_codes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/trace/status_codes.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/trace/trace.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/trace_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/trace/trace_api.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/trace_go11.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/trace/trace_go11.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/trace_nongo11.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/go.opencensus.io/trace/trace_nongo11.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blowfish/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/crypto/blowfish/block.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blowfish/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/crypto/blowfish/cipher.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blowfish/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/crypto/blowfish/const.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/cast5/cast5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/crypto/cast5/cast5.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/chacha20/xor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/crypto/chacha20/xor.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/crypto/openpgp/keys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/crypto/openpgp/read.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/s2k/s2k.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/crypto/openpgp/s2k/s2k.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/crypto/openpgp/write.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/agent/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/crypto/ssh/agent/client.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/agent/forward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/crypto/ssh/agent/forward.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/agent/keyring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/crypto/ssh/agent/keyring.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/agent/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/crypto/ssh/agent/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/crypto/ssh/buffer.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/certs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/crypto/ssh/certs.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/crypto/ssh/channel.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/crypto/ssh/cipher.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/crypto/ssh/client.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/client_auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/crypto/ssh/client_auth.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/crypto/ssh/common.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/crypto/ssh/connection.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/crypto/ssh/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/handshake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/crypto/ssh/handshake.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/kex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/crypto/ssh/kex.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/crypto/ssh/keys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/crypto/ssh/mac.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/crypto/ssh/messages.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mlkem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/crypto/ssh/mlkem.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/crypto/ssh/mux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/crypto/ssh/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/crypto/ssh/session.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/ssh_gss.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/crypto/ssh/ssh_gss.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/streamlocal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/crypto/ssh/streamlocal.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/tcpip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/crypto/ssh/tcpip.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/crypto/ssh/transport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/mod/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/mod/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/semver/semver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/mod/semver/semver.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/net/context/context.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socks/socks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/net/internal/socks/socks.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/dial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/net/proxy/dial.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/direct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/net/proxy/direct.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/per_host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/net/proxy/per_host.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/net/proxy/proxy.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/socks5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/net/proxy/socks5.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sync/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sync/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/errgroup/errgroup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sync/errgroup/errgroup.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/asm_aix_ppc64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/asm_aix_ppc64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/asm_darwin_x86_gc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/asm_darwin_x86_gc.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/byteorder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/byteorder.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/cpu.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/cpu_aix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/cpu_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/cpu_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/cpu_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_darwin_x86.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/cpu_darwin_x86.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_gc_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/cpu_gc_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_gc_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/cpu_gc_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_gc_x86.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/cpu_gc_x86.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_gc_x86.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/cpu_gc_x86.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_gccgo_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/cpu_gccgo_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_gccgo_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/cpu_gccgo_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/cpu_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/cpu_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/cpu_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_linux_noinit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/cpu_linux_noinit.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_linux_ppc64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/cpu_linux_ppc64x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/cpu_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_loong64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/cpu_loong64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_loong64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/cpu_loong64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_mips64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/cpu_mips64x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_mipsx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/cpu_mipsx.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_netbsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/cpu_netbsd_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_openbsd_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/cpu_openbsd_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_other_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/cpu_other_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_other_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/cpu_other_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_other_ppc64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/cpu_other_ppc64x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_other_x86.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/cpu_other_x86.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_ppc64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/cpu_ppc64x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_riscv64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/cpu_riscv64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/cpu_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/cpu_s390x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/cpu_wasm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_x86.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/cpu_x86.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/cpu_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_zos_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/cpu_zos_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/endian_big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/endian_big.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/endian_little.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/endian_little.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/hwcap_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/hwcap_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/runtime_auxv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/cpu/runtime_auxv.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/plumbing/HEAD/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/affinity_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/affinity_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_aix_ppc64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/asm_aix_ppc64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_ppc64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_ppc64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_riscv64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_riscv64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/asm_linux_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/asm_linux_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/asm_linux_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/asm_linux_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_mipsx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/asm_linux_s390x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_zos_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/asm_zos_s390x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/auxv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/auxv.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/bluetooth_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/bluetooth_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/bpxsvc_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/bpxsvc_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/bpxsvc_zos.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/bpxsvc_zos.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/cap_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/cap_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/dev_aix_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/dev_aix_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/dev_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/dev_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/dev_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/dev_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/dev_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/dev_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/dev_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/endian_big.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_little.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/endian_little.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/fcntl_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fdset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/fdset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ifreq_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/ifreq_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ioctl_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/ioctl_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ioctl_signed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/ioctl_signed.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ioctl_unsigned.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/ioctl_unsigned.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ioctl_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/ioctl_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mmap_nomremap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/mmap_nomremap.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mremap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/mremap.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/pagesize_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/pagesize_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/pledge_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/pledge_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ptrace_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/ptrace_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ptrace_ios.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/ptrace_ios.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/syscall_aix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/syscall_aix_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/syscall_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_hurd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/syscall_hurd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_illumos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/syscall_illumos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/syscall_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/syscall_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/syscall_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_unix_gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/syscall_unix_gc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sysvshm_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/sysvshm_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sysvshm_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/sysvshm_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/timestruct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/timestruct.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/unveil_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/unveil_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/xattr_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/xattr_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/windows/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/dll_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/windows/dll_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/env_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/windows/env_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/eventlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/windows/eventlog.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/exec_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/windows/exec_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/mkerrors.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/windows/mkerrors.bash -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/mksyscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/windows/mksyscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/windows/service.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/sys/windows/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/cases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/text/cases/cases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/text/cases/context.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/fold.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/text/cases/fold.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/icu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/text/cases/icu.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/text/cases/info.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/text/cases/map.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/tables10.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/text/cases/tables10.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/tables11.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/text/cases/tables11.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/tables12.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/text/cases/tables12.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/tables13.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/text/cases/tables13.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/tables15.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/text/cases/tables15.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/tables9.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/text/cases/tables9.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/text/cases/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/internal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/text/internal/internal.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/text/internal/match.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/tag/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/text/internal/tag/tag.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/coverage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/text/language/coverage.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/text/language/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/language.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/text/language/language.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/text/language/match.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/text/language/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/text/language/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/text/language/tags.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/transform/transform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/text/transform/transform.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/text/unicode/norm/input.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/text/unicode/norm/iter.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/text/unicode/norm/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/tools/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/tools/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/ast/edge/edge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/tools/go/ast/edge/edge.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/packages/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/tools/go/packages/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/packages/golist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/tools/go/packages/golist.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/packages/visit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/tools/go/packages/visit.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/internal/event/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/golang.org/x/tools/internal/event/doc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/src-d/go-billy.v4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/gopkg.in/src-d/go-billy.v4/.gitignore -------------------------------------------------------------------------------- /vendor/gopkg.in/src-d/go-billy.v4/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/gopkg.in/src-d/go-billy.v4/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/src-d/go-billy.v4/DCO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/gopkg.in/src-d/go-billy.v4/DCO -------------------------------------------------------------------------------- /vendor/gopkg.in/src-d/go-billy.v4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/gopkg.in/src-d/go-billy.v4/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/src-d/go-billy.v4/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/gopkg.in/src-d/go-billy.v4/MAINTAINERS -------------------------------------------------------------------------------- /vendor/gopkg.in/src-d/go-billy.v4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/gopkg.in/src-d/go-billy.v4/Makefile -------------------------------------------------------------------------------- /vendor/gopkg.in/src-d/go-billy.v4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/gopkg.in/src-d/go-billy.v4/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/src-d/go-billy.v4/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/gopkg.in/src-d/go-billy.v4/appveyor.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/src-d/go-billy.v4/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/gopkg.in/src-d/go-billy.v4/fs.go -------------------------------------------------------------------------------- /vendor/gopkg.in/src-d/go-billy.v4/osfs/os.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/gopkg.in/src-d/go-billy.v4/osfs/os.go -------------------------------------------------------------------------------- /vendor/gopkg.in/src-d/go-billy.v4/util/glob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/gopkg.in/src-d/go-billy.v4/util/glob.go -------------------------------------------------------------------------------- /vendor/gopkg.in/src-d/go-billy.v4/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/gopkg.in/src-d/go-billy.v4/util/util.go -------------------------------------------------------------------------------- /vendor/gopkg.in/src-d/go-git.v4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/gopkg.in/src-d/go-git.v4/.gitignore -------------------------------------------------------------------------------- /vendor/gopkg.in/src-d/go-git.v4/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/gopkg.in/src-d/go-git.v4/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/src-d/go-git.v4/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/gopkg.in/src-d/go-git.v4/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/gopkg.in/src-d/go-git.v4/DCO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/gopkg.in/src-d/go-git.v4/DCO -------------------------------------------------------------------------------- /vendor/gopkg.in/src-d/go-git.v4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/gopkg.in/src-d/go-git.v4/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/src-d/go-git.v4/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/gopkg.in/src-d/go-git.v4/MAINTAINERS -------------------------------------------------------------------------------- /vendor/gopkg.in/src-d/go-git.v4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/gopkg.in/src-d/go-git.v4/Makefile -------------------------------------------------------------------------------- /vendor/gopkg.in/src-d/go-git.v4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/gopkg.in/src-d/go-git.v4/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/src-d/go-git.v4/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/gopkg.in/src-d/go-git.v4/appveyor.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/src-d/go-git.v4/blame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/gopkg.in/src-d/go-git.v4/blame.go -------------------------------------------------------------------------------- /vendor/gopkg.in/src-d/go-git.v4/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/gopkg.in/src-d/go-git.v4/common.go -------------------------------------------------------------------------------- /vendor/gopkg.in/src-d/go-git.v4/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/gopkg.in/src-d/go-git.v4/doc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/src-d/go-git.v4/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/gopkg.in/src-d/go-git.v4/options.go -------------------------------------------------------------------------------- /vendor/gopkg.in/src-d/go-git.v4/prune.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/gopkg.in/src-d/go-git.v4/prune.go -------------------------------------------------------------------------------- /vendor/gopkg.in/src-d/go-git.v4/references.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/gopkg.in/src-d/go-git.v4/references.go -------------------------------------------------------------------------------- /vendor/gopkg.in/src-d/go-git.v4/remote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/gopkg.in/src-d/go-git.v4/remote.go -------------------------------------------------------------------------------- /vendor/gopkg.in/src-d/go-git.v4/repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/gopkg.in/src-d/go-git.v4/repository.go -------------------------------------------------------------------------------- /vendor/gopkg.in/src-d/go-git.v4/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/gopkg.in/src-d/go-git.v4/status.go -------------------------------------------------------------------------------- /vendor/gopkg.in/src-d/go-git.v4/submodule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/gopkg.in/src-d/go-git.v4/submodule.go -------------------------------------------------------------------------------- /vendor/gopkg.in/src-d/go-git.v4/worktree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/gopkg.in/src-d/go-git.v4/worktree.go -------------------------------------------------------------------------------- /vendor/gopkg.in/src-d/go-git.v4/worktree_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/gopkg.in/src-d/go-git.v4/worktree_bsd.go -------------------------------------------------------------------------------- /vendor/gopkg.in/warnings.v0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/gopkg.in/warnings.v0/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/warnings.v0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/gopkg.in/warnings.v0/README -------------------------------------------------------------------------------- /vendor/gopkg.in/warnings.v0/warnings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/gopkg.in/warnings.v0/warnings.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/k8s.io/klog/v2/.gitignore -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/k8s.io/klog/v2/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/k8s.io/klog/v2/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/k8s.io/klog/v2/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/k8s.io/klog/v2/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/k8s.io/klog/v2/RELEASE.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/k8s.io/klog/v2/SECURITY.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/SECURITY_CONTACTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/k8s.io/klog/v2/SECURITY_CONTACTS -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/k8s.io/klog/v2/code-of-conduct.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/contextual.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/k8s.io/klog/v2/contextual.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/exit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/k8s.io/klog/v2/exit.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/imports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/k8s.io/klog/v2/imports.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/internal/buffer/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/k8s.io/klog/v2/internal/buffer/buffer.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/internal/clock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/k8s.io/klog/v2/internal/clock/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/internal/clock/clock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/k8s.io/klog/v2/internal/clock/clock.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/internal/dbg/dbg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/k8s.io/klog/v2/internal/dbg/dbg.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/k8s_references.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/k8s.io/klog/v2/k8s_references.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/k8s.io/klog/v2/klog.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/k8s.io/klog/v2/klog_file.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog_file_others.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/k8s.io/klog/v2/klog_file_others.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog_file_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/k8s.io/klog/v2/klog_file_windows.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klogr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/k8s.io/klog/v2/klogr.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tektoncd/plumbing/HEAD/vendor/modules.txt --------------------------------------------------------------------------------