├── .gitignore ├── .gitmodules ├── .overcommit.yml ├── Gopkg.lock ├── Gopkg.toml ├── LICENSE ├── Makefile ├── NOTICE ├── README.md ├── VERSION ├── app ├── build_images.go ├── fissile.go ├── fissile_test.go ├── validation.go └── validation_test.go ├── bin └── graph-diff ├── cmd ├── build-cleancache.go ├── build-helm.go ├── build-images.go ├── build-kube.go ├── build-packages.go ├── build-release-images.go ├── build.go ├── diff.go ├── docs-autocomplete.go ├── docs-man.go ├── docs-markdown.go ├── docs.go ├── root.go ├── show-image.go ├── show-properties.go ├── show-release.go ├── show.go ├── validation.go └── version.go ├── compilator ├── compilator.go ├── compilator_linux.go ├── compilator_linux_test.go ├── compilator_other.go ├── compilator_test.go ├── storage.go └── storage_test.go ├── docker ├── docker.go └── docker_test.go ├── docs ├── build-docker-imgs.md ├── configuration.md ├── fissile-logo.png ├── generated │ ├── fissile.md │ ├── fissile_build.md │ ├── fissile_build_cleancache.md │ ├── fissile_build_helm.md │ ├── fissile_build_images.md │ ├── fissile_build_kube.md │ ├── fissile_build_packages.md │ ├── fissile_build_release-images.md │ ├── fissile_diff.md │ ├── fissile_docs.md │ ├── fissile_docs_autocomplete.md │ ├── fissile_docs_man.md │ ├── fissile_docs_markdown.md │ ├── fissile_show.md │ ├── fissile_show_image.md │ ├── fissile_show_properties.md │ ├── fissile_show_release.md │ ├── fissile_validate.md │ └── fissile_version.md ├── kubernetes.md ├── sizing-hierarchy.md ├── stemcells.md └── validator-description.md ├── helm ├── config.go └── config_test.go ├── kube ├── bosh_deployment_manifest_secret.go ├── bosh_deployment_manifest_secret_test.go ├── deployment.go ├── deployment_test.go ├── export_settings.go ├── job.go ├── job_test.go ├── kube_test.go ├── pod.go ├── pod_test.go ├── rbac.go ├── rbac_test.go ├── registry_credentials.go ├── registry_credentials_test.go ├── secret.go ├── secret_test.go ├── service.go ├── service_test.go ├── stateful_set.go ├── stateful_set_test.go ├── templates.go ├── templates_test.go ├── utils.go ├── utils_test.go ├── values.go └── values_test.go ├── main.go ├── make ├── bindata ├── build ├── clean ├── docker-deps ├── format ├── generate-markdown ├── include │ ├── colors.sh │ └── versioning ├── lint ├── package ├── reap ├── release ├── show-versions ├── test ├── tools ├── update-tor-release └── vet ├── model ├── configuration.go ├── dev_release.go ├── dev_release_test.go ├── final_release.go ├── final_release_test.go ├── instance_groups.go ├── instance_groups_test.go ├── job.go ├── job_reference.go ├── job_reference_test.go ├── job_template.go ├── job_template_test.go ├── job_test.go ├── job_util.go ├── job_util_test.go ├── loader │ └── loader.go ├── models.go ├── models_test.go ├── mustache.go ├── mustache_test.go ├── opinions.go ├── opinions_test.go ├── package.go ├── package_test.go ├── pod_security_policy.go ├── release.go ├── release_config.go ├── release_resolver.go ├── release_test.go ├── releaseresolver │ ├── load_releases.go │ └── release_resolver.go ├── resolver │ ├── resolve_role_manifest_test.go │ ├── resolver.go │ ├── resolver_test.go │ ├── validation.go │ ├── validation_role_run.go │ ├── validation_test.go │ └── variables_test.go ├── role_run.go ├── roles.go └── variables.go ├── mustache ├── LICENSE ├── README.md ├── mustache.go └── mustache_test.go ├── scripts ├── compilation │ ├── linux-compile.sh │ └── scripts.go └── dockerfiles │ ├── Dockerfile-packages │ ├── Dockerfile-release │ ├── Dockerfile-role │ ├── pre-stop.sh │ ├── readiness-probe.sh │ └── run.sh ├── test-assets ├── bad-release │ └── license.tgz ├── bosh-cache │ ├── 28d3d13e29bf209f4acdedbd73622fb057e2910a │ ├── 3f95a26abc246f5fa2385b95b798c3dc93491e64 │ ├── 4d5bfffdc29414e16f840aa47a6baafc924d248b │ ├── 6555a7d32c13f38be9b6017ec4f0e65f60e7b4e0 │ ├── 68a95894b04649a62d1cb7543573f8ff1af50928 │ ├── 692bb3d14c4e49ec702affbf2c8360b23710f874 │ ├── 795c6f45e6fa51d2cf22ca68d163393988fbd441 │ ├── 84d62aa3f6ea5949eac1f36b2f3ae81e3e591d89 │ ├── 8eeef09ae67e65aeb3257df402336de04822efc5 │ ├── 9342f30db4c9af33841034030e87011ae35b24dc │ ├── a44049fbf59ccffdf05e9706d5ad10f7e73ede36 │ ├── c3323913873907e05dcafe32498cab7c4137548b │ ├── d95b7a054e0c98d52134a27158b988e375b07bf0 │ ├── e0defb93e5fcb82533157c693ab15928598c8cd0 │ └── e41461c222b05f961350547da086569cc4264e54 ├── configgin │ └── fake-configgin.tgz ├── corrupt-releases │ ├── corrupt-job │ │ ├── jobs │ │ │ └── corrupt_job.tgz │ │ ├── license.tgz │ │ ├── packages │ │ │ └── valid_package.tgz │ │ └── release.MF │ ├── corrupt-license │ │ ├── jobs │ │ │ └── valid_job.tgz │ │ ├── license.tgz │ │ ├── packages │ │ │ └── valid_package.tgz │ │ └── release.MF │ ├── corrupt-package │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bosh-cache │ │ │ ├── 1bed533e3817f9789a6a63050139e03e39154af1 │ │ │ ├── 5cc12bd07e4545535b6dc45b4b77d4dd53a7eff6 │ │ │ └── 5d5aae1bfef18f3dc815a5a6831d2f138be5aa81 │ │ ├── config │ │ │ ├── blobs.yml │ │ │ ├── dev.yml │ │ │ └── final.yml │ │ ├── dev_releases │ │ │ ├── bad-index-no-builds-key │ │ │ │ └── index.yml │ │ │ ├── bad-index-no-version-in-build │ │ │ │ └── index.yml │ │ │ ├── bad-index-wrong-builds-key-type │ │ │ │ └── index.yml │ │ │ ├── bad-index-wrong-version-type-in-build │ │ │ │ └── index.yml │ │ │ ├── ntp │ │ │ │ ├── index.yml │ │ │ │ ├── ntp-2+dev.1.yml │ │ │ │ └── ntp-2+dev.2.yml │ │ │ ├── test-dev │ │ │ │ ├── index.yml │ │ │ │ ├── test-dev-0+dev.1.yml │ │ │ │ └── test-dev-0+dev.2.yml │ │ │ └── test2 │ │ │ │ ├── index.yml │ │ │ │ └── test2-0+dev.1.yml │ │ ├── examples │ │ │ └── ntp-bosh-lite.yml │ │ ├── jobs │ │ │ ├── bar │ │ │ │ ├── monit │ │ │ │ ├── spec │ │ │ │ └── templates │ │ │ │ │ └── bar_ctl.erb │ │ │ ├── foo │ │ │ │ ├── monit │ │ │ │ ├── spec │ │ │ │ └── templates │ │ │ │ │ └── foo_ctl.erb │ │ │ └── ntpd │ │ │ │ ├── monit │ │ │ │ ├── spec │ │ │ │ └── templates │ │ │ │ ├── ctl.sh │ │ │ │ └── ntp.conf.erb │ │ ├── packages │ │ │ ├── bar │ │ │ │ ├── packaging │ │ │ │ ├── pre_packaging │ │ │ │ └── spec │ │ │ ├── foo │ │ │ │ ├── packaging │ │ │ │ ├── pre_packaging │ │ │ │ └── spec │ │ │ └── ntp-4.2.8p2 │ │ │ │ ├── packaging │ │ │ │ ├── pre_packaging │ │ │ │ └── spec │ │ ├── releases │ │ │ └── ntp │ │ │ │ ├── index.yml │ │ │ │ ├── ntp-1.yml │ │ │ │ └── ntp-2.yml │ │ └── src │ │ │ ├── bar │ │ │ └── bar.txt │ │ │ ├── foo │ │ │ └── foo.txt │ │ │ └── ntp-4.2.8p2 │ │ │ ├── .gitkeep │ │ │ └── ntp-4.2.8p2.tar.gz │ └── valid-release │ │ ├── jobs │ │ └── valid_job.tgz │ │ ├── license.tgz │ │ ├── packages │ │ └── valid_package.tgz │ │ └── release.MF ├── deployment-manifests │ └── bosh-deployment.yml ├── extra-imports.go ├── extracted-license │ ├── LICENSE │ ├── bosh-cache │ │ ├── 4d5bfffdc29414e16f840aa47a6baafc924d248b │ │ ├── 68a95894b04649a62d1cb7543573f8ff1af50928 │ │ ├── 692bb3d14c4e49ec702affbf2c8360b23710f874 │ │ └── c3323913873907e05dcafe32498cab7c4137548b │ ├── config │ │ ├── blobs.yml │ │ └── final.yml │ ├── dev_releases │ │ ├── bad-index-no-builds-key │ │ │ └── index.yml │ │ ├── bad-index-no-version-in-build │ │ │ └── index.yml │ │ ├── bad-index-wrong-builds-key-type │ │ │ └── index.yml │ │ ├── bad-index-wrong-version-type-in-build │ │ │ └── index.yml │ │ ├── test-dev │ │ │ ├── index.yml │ │ │ ├── test-dev-0+dev.1.yml │ │ │ └── test-dev-0+dev.2.yml │ │ └── test2 │ │ │ ├── index.yml │ │ │ └── test2-0+dev.1.yml │ ├── jobs │ │ ├── bar │ │ │ ├── monit │ │ │ ├── spec │ │ │ └── templates │ │ │ │ └── bar_ctl.erb │ │ └── foo │ │ │ ├── monit │ │ │ ├── spec │ │ │ └── templates │ │ │ └── foo_ctl.erb │ ├── packages │ │ ├── bar │ │ │ ├── packaging │ │ │ ├── pre_packaging │ │ │ └── spec │ │ └── foo │ │ │ ├── packaging │ │ │ ├── pre_packaging │ │ │ └── spec │ └── src │ │ ├── bar │ │ └── bar.txt │ │ └── foo │ │ └── foo.txt ├── long-dep-chain │ ├── jobs │ │ └── dummy │ ├── license.tgz │ ├── packages │ │ ├── bar.tgz │ │ ├── br.tgz │ │ ├── cf.tgz │ │ ├── foo.tgz │ │ ├── fubar.tgz │ │ └── snafu.tgz │ └── release.MF ├── misc │ └── empty.yml ├── missing-license │ ├── .dev_builds │ │ ├── jobs │ │ │ ├── bar │ │ │ │ └── index.yml │ │ │ └── foo │ │ │ │ └── index.yml │ │ └── packages │ │ │ ├── bar │ │ │ └── index.yml │ │ │ └── foo │ │ │ └── index.yml │ ├── config │ │ ├── blobs.yml │ │ └── dev.yml │ ├── dev_releases │ │ ├── bad-index-no-builds-key │ │ │ └── index.yml │ │ ├── bad-index-no-version-in-build │ │ │ └── index.yml │ │ ├── bad-index-wrong-builds-key-type │ │ │ └── index.yml │ │ ├── bad-index-wrong-version-type-in-build │ │ │ └── index.yml │ │ ├── test-dev │ │ │ ├── index.yml │ │ │ ├── test-dev-0+dev.1.yml │ │ │ └── test-dev-0+dev.2.yml │ │ └── test2 │ │ │ ├── index.yml │ │ │ └── test2-0+dev.1.yml │ ├── jobs │ │ ├── bar │ │ │ ├── monit │ │ │ ├── spec │ │ │ └── templates │ │ │ │ └── bar_ctl.erb │ │ └── foo │ │ │ ├── monit │ │ │ ├── spec │ │ │ └── templates │ │ │ └── foo_ctl.erb │ ├── packages │ │ ├── bar │ │ │ ├── packaging │ │ │ ├── pre_packaging │ │ │ └── spec │ │ └── foo │ │ │ ├── packaging │ │ │ ├── pre_packaging │ │ │ └── spec │ └── src │ │ ├── bar │ │ └── bar.txt │ │ └── foo │ │ └── foo.txt ├── mustache │ ├── partial.mustache │ ├── test1.mustache │ ├── test2.mustache │ └── test3.mustache ├── no-license │ ├── config │ │ ├── blobs.yml │ │ └── final.yml │ ├── dev_releases │ │ ├── bad-index-no-builds-key │ │ │ └── index.yml │ │ ├── bad-index-no-version-in-build │ │ │ └── index.yml │ │ ├── bad-index-wrong-builds-key-type │ │ │ └── index.yml │ │ ├── bad-index-wrong-version-type-in-build │ │ │ └── index.yml │ │ ├── test-dev │ │ │ ├── index.yml │ │ │ ├── test-dev-0+dev.1.yml │ │ │ └── test-dev-0+dev.2.yml │ │ └── test2 │ │ │ ├── index.yml │ │ │ └── test2-0+dev.1.yml │ ├── jobs │ │ ├── bar │ │ │ ├── monit │ │ │ ├── spec │ │ │ └── templates │ │ │ │ └── bar_ctl.erb │ │ └── foo │ │ │ ├── monit │ │ │ ├── spec │ │ │ └── templates │ │ │ └── foo_ctl.erb │ ├── packages │ │ ├── bar │ │ │ ├── packaging │ │ │ ├── pre_packaging │ │ │ └── spec │ │ └── foo │ │ │ ├── packaging │ │ │ ├── pre_packaging │ │ │ └── spec │ └── src │ │ ├── bar │ │ └── bar.txt │ │ └── foo │ │ └── foo.txt ├── ntp-final-release │ ├── LICENSE │ ├── jobs │ │ └── ntpd.tgz │ ├── license.tgz │ ├── packages │ │ └── ntp.tgz │ └── release.MF ├── ntp-opinions │ ├── dark-opinions.yml │ └── opinions.yml ├── ntp-release │ ├── LICENSE │ ├── README.md │ ├── config │ │ ├── blobs.yml │ │ ├── dev.yml │ │ └── final.yml │ ├── dev_releases │ │ └── ntp │ │ │ ├── index.yml │ │ │ ├── ntp-2+dev.1.yml │ │ │ ├── ntp-2+dev.2.yml │ │ │ └── ntp-2+dev.3.yml │ ├── examples │ │ └── ntp-bosh-lite.yml │ ├── jobs │ │ └── ntpd │ │ │ ├── monit │ │ │ ├── spec │ │ │ └── templates │ │ │ ├── ctl.sh │ │ │ └── ntp.conf.erb │ ├── packages │ │ └── ntp-4.2.8p2 │ │ │ ├── packaging │ │ │ ├── pre_packaging │ │ │ └── spec │ ├── releases │ │ └── ntp │ │ │ ├── index.yml │ │ │ ├── ntp-1.yml │ │ │ └── ntp-2.yml │ └── src │ │ └── ntp-4.2.8p2 │ │ ├── .gitkeep │ │ └── ntp-4.2.8p2.tar.gz ├── package-cache-config │ ├── localexample.yaml │ └── s3example.yaml ├── role-manifests │ ├── app │ │ ├── generate-auth.yml │ │ ├── no-instance-groups │ │ │ ├── no-instance-groups.yml │ │ │ └── scripts │ │ │ │ └── .gitkeep │ │ ├── roles-to-build.yml │ │ ├── scripts │ │ │ └── myrole.sh │ │ ├── tor-invalid-environ-script-reference.yml │ │ ├── tor-invalid-global-template-type.yml │ │ ├── tor-invalid-post-config-script-reference.yml │ │ ├── tor-invalid-script-reference.yml │ │ ├── tor-invalid-template-keys.yml │ │ ├── tor-missing-description.yml │ │ ├── tor-valid-instance-group-template-type.yml │ │ ├── two-roles.yml │ │ └── validation │ │ │ ├── dark-opinion-in-light-opinion.yml │ │ │ ├── duplicates-between-manifest-and-light.yml │ │ │ ├── global-template-sorting.yml │ │ │ ├── hashmat.yml │ │ │ ├── instance-template-sorting.yml │ │ │ ├── light-opinion-matches-default.yml │ │ │ ├── scripts │ │ │ └── myrole.sh │ │ │ ├── template-constant.yml │ │ │ ├── template-mustache-error.yml │ │ │ ├── tor-validation-ok.yml │ │ │ ├── undefined-global-properties.yml │ │ │ ├── undefined-instance-properties.yml │ │ │ ├── undefined-light-properties.yml │ │ │ ├── untemplated-dark-opinions.yml │ │ │ ├── variables-sort.yml │ │ │ ├── variables-without-decl.yml │ │ │ └── variables-without-usage.yml │ ├── builder │ │ ├── scripts │ │ │ ├── environ.sh │ │ │ ├── myrole.sh │ │ │ └── post_config_script.sh │ │ └── tor-good.yml │ ├── compilator │ │ └── tor-good.yml │ ├── kube │ │ ├── bosh-run-count-configurable.yml │ │ ├── colocated-containers-with-deployment-and-empty-dir.yml │ │ ├── colocated-containers-with-stateful-set-and-empty-dir.yml │ │ ├── colocated-containers.yml │ │ ├── exposed-ports-service-name.yml │ │ ├── exposed-ports.yml │ │ ├── jobs.yml │ │ ├── myrole.sh │ │ ├── pod-with-invalid-node-affinity.yml │ │ ├── pod-with-invalid-pod-affinity.yml │ │ ├── pod-with-no-pod-anti-affinity.yml │ │ ├── pod-with-valid-pod-anti-affinity.yml │ │ ├── pods.yml │ │ ├── service-headed.yml │ │ ├── service-headless.yml │ │ ├── volumes-with-annotation.yml │ │ └── volumes.yml │ └── model │ │ ├── bad-cv-type-internal.yml │ │ ├── bad-cv-type.yml │ │ ├── bad-type.yml │ │ ├── bosh-run-bad-cpu.yml │ │ ├── bosh-run-bad-memory.yml │ │ ├── bosh-run-bad-parse.yml │ │ ├── bosh-run-bad-port-count.yml │ │ ├── bosh-run-bad-port-names.yml │ │ ├── bosh-run-bad-ports.yml │ │ ├── bosh-run-bad-proto.yml │ │ ├── bosh-run-env.yml │ │ ├── bosh-run-headless-public-port.yml │ │ ├── bosh-run-missing-portrange.yml │ │ ├── bosh-run-missing.yml │ │ ├── bosh-run-ok.yml │ │ ├── bosh-run-reverse-portrange.yml │ │ ├── colocated-containers-with-clustered-tag.yml │ │ ├── colocated-containers-with-different-volume-shares.yml │ │ ├── colocated-containers-with-missing-role.yml │ │ ├── colocated-containers-with-no-port-collision.yml │ │ ├── colocated-containers-with-port-collision.yml │ │ ├── colocated-containers-with-unused-role.yml │ │ ├── colocated-containers-with-volume-share-issues.yml │ │ ├── colocated-containers.yml │ │ ├── multiple-bad.yml │ │ ├── multiple-good.yml │ │ ├── non-bosh-roles.yml │ │ ├── online-release-references.yml │ │ ├── rbac-clone-sa-psp-mismatch.yml │ │ ├── rbac-missing-account.yml │ │ ├── rbac-missing-role.yml │ │ ├── script-bad-prefix.yml │ │ ├── scripts │ │ ├── environ.sh │ │ ├── myrole.sh │ │ ├── nested │ │ │ └── run.sh │ │ └── post_config_script.sh │ │ ├── tor-bad.yml │ │ ├── tor-good.yml │ │ ├── variable-expansion.yml │ │ ├── variables-badly-sorted.yml │ │ ├── variables-ssh.yml │ │ └── variables-with-dup-prev-names.yml ├── scripts │ └── compilation │ │ ├── fail-compile.sh │ │ ├── fail-prerequisites.sh │ │ ├── fake-compile.sh │ │ └── fake-prerequisites.sh ├── tarReadTest.tar.gz ├── test-dev-config-diff │ ├── cache │ │ ├── cf-release-215-acceptance-tests.tgz │ │ ├── cf-release-215-cloud_controller_ng.tgz │ │ ├── cf-release-224-acceptance-tests.tgz │ │ └── cf-release-224-cloud_controller_ng.tgz │ ├── cf-release-215 │ │ ├── config │ │ │ ├── blobs.yml │ │ │ ├── dev.yml │ │ │ └── final.yml │ │ └── dev_releases │ │ │ └── cf │ │ │ ├── cf-215+dev.1.yml │ │ │ ├── cf-215+dev.2.yml │ │ │ └── index.yml │ └── cf-release-224 │ │ ├── config │ │ ├── blobs.yml │ │ ├── dev.yml │ │ └── final.yml │ │ └── dev_releases │ │ └── cf │ │ ├── cf-224+dev.8.yml │ │ └── index.yml ├── test-dev-release-missing-dev-name │ ├── config │ │ ├── blobs.yml │ │ ├── dev.yml │ │ └── final.yml │ └── dev_releases │ │ └── test-final │ │ ├── index.yml │ │ └── test-final-0+dev.2.yml ├── test-dev-release-missing-final-name │ ├── config │ │ ├── blobs.yml │ │ ├── dev.yml │ │ └── final.yml │ └── dev_releases │ │ └── test-final │ │ ├── index.yml │ │ └── test-final-0+dev.2.yml ├── test-dev-release-wrong-final-name-type │ ├── config │ │ ├── blobs.yml │ │ ├── dev.yml │ │ └── final.yml │ └── dev_releases │ │ └── test-dev │ │ ├── index.yml │ │ ├── test-dev-0+dev.1.yml │ │ └── test-dev-0+dev.2.yml ├── test-dev-release │ ├── config │ │ ├── blobs.yml │ │ └── final.yml │ ├── dev_releases │ │ ├── bad-index-no-builds-key │ │ │ └── index.yml │ │ ├── bad-index-no-version-in-build │ │ │ └── index.yml │ │ ├── bad-index-wrong-builds-key-type │ │ │ └── index.yml │ │ ├── bad-index-wrong-version-type-in-build │ │ │ └── index.yml │ │ ├── test-dev │ │ │ ├── index.yml │ │ │ ├── test-dev-0+dev.1.yml │ │ │ └── test-dev-0+dev.2.yml │ │ └── test2 │ │ │ ├── index.yml │ │ │ └── test2-0+dev.1.yml │ ├── jobs │ │ ├── bar │ │ │ ├── monit │ │ │ ├── spec │ │ │ └── templates │ │ │ │ └── bar_ctl.erb │ │ └── foo │ │ │ ├── monit │ │ │ ├── spec │ │ │ └── templates │ │ │ └── foo_ctl.erb │ ├── packages │ │ ├── bar │ │ │ ├── packaging │ │ │ ├── pre_packaging │ │ │ └── spec │ │ └── foo │ │ │ ├── packaging │ │ │ ├── pre_packaging │ │ │ └── spec │ └── src │ │ ├── bar │ │ └── bar.txt │ │ └── foo │ │ └── foo.txt ├── test-final-release-missing-release-name │ └── release.MF ├── test-final-release-missing-release-version │ └── release.MF ├── test-final-release │ ├── LICENSE │ ├── jobs │ │ ├── bar.tgz │ │ └── foo.tgz │ ├── packages │ │ ├── bar.tgz │ │ └── foo.tgz │ └── release.MF ├── test-opinions │ ├── dark-opinions.yml │ ├── good-dark-opinions.yml │ ├── good-opinions.yml │ └── opinions.yml ├── tor-boshrelease-fake-compiled │ └── 4d51b43d077ed5a7b7ae4fb200aeb216b7736a96 │ │ ├── 588f9c8e2a0abf31fac8416fbe8560df3173fb5b │ │ └── compiled │ │ │ └── foo │ │ ├── 59523b1cc4042dff1217ab5b79ff885cdd2de032 │ │ └── compiled │ │ │ └── bar │ │ ├── b9973278a447dfb5e8e67661deaa5fe7001ad742 │ │ └── compiled │ │ │ └── bar │ │ └── e3fb8ab976aca9b9ea2a6b28b76506f0130ba296 │ │ └── compiled │ │ └── foo ├── tor-boshrelease │ ├── LICENSE │ ├── README.md │ ├── Rakefile │ ├── ci │ │ ├── README.md │ │ ├── ci_image │ │ │ ├── Dockerfile │ │ │ └── pipeline.yml │ │ ├── pipeline.yml │ │ ├── release_notes.md │ │ └── scripts │ │ │ ├── acceptance_tests.sh │ │ │ ├── create_release_and_deploy.sh │ │ │ ├── new_hostname_errand.sh │ │ │ ├── run_tor.sh │ │ │ └── shipit.sh │ ├── config │ │ ├── blobs.yml │ │ ├── dev.yml │ │ └── final.yml │ ├── dev_releases │ │ └── tor │ │ │ ├── index.yml │ │ │ ├── tor-0.3.5+dev.1.yml │ │ │ ├── tor-0.3.5+dev.2.yml │ │ │ ├── tor-0.3.5+dev.3.yml │ │ │ ├── tor-0.3.5+dev.4.yml │ │ │ └── tor-0.3.5+dev.5.yml │ ├── jobs │ │ ├── .gitkeep │ │ ├── hashmat │ │ │ ├── monit │ │ │ ├── spec │ │ │ └── templates │ │ │ │ └── bin │ │ │ │ └── tor_ctl │ │ ├── new_hostname │ │ │ ├── monit │ │ │ ├── spec │ │ │ └── templates │ │ │ │ ├── bin │ │ │ │ └── run │ │ │ │ ├── config │ │ │ │ ├── .gitkeep │ │ │ │ └── torrc.erb │ │ │ │ └── helpers │ │ │ │ ├── ctl_setup.sh │ │ │ │ └── ctl_utils.sh │ │ └── tor │ │ │ ├── monit │ │ │ ├── spec │ │ │ └── templates │ │ │ ├── bin │ │ │ ├── monit_debugger │ │ │ └── tor_ctl │ │ │ ├── config │ │ │ ├── .gitkeep │ │ │ └── torrc.erb │ │ │ ├── data │ │ │ └── properties.sh.erb │ │ │ ├── helpers │ │ │ ├── ctl_setup.sh │ │ │ └── ctl_utils.sh │ │ │ └── hidden_service │ │ │ ├── client_keys.erb │ │ │ ├── hostname.erb │ │ │ └── private_key.erb │ ├── packages │ │ ├── .gitkeep │ │ ├── libevent │ │ │ ├── packaging │ │ │ └── spec │ │ └── tor │ │ │ ├── packaging │ │ │ └── spec │ ├── releases │ │ └── tor │ │ │ ├── index.yml │ │ │ ├── tor-0.2.1.yml │ │ │ ├── tor-0.2.3.yml │ │ │ ├── tor-0.2.4.yml │ │ │ ├── tor-0.3.1.yml │ │ │ ├── tor-0.3.3.yml │ │ │ ├── tor-0.3.4.yml │ │ │ └── tor-0.3.5.yml │ ├── src │ │ └── .gitkeep │ └── templates │ │ ├── deployment.yml │ │ ├── infrastructure-aws-ec2.yml │ │ ├── infrastructure-warden.yml │ │ ├── jobs.yml │ │ ├── make_manifest │ │ └── stub.yml └── tor-opinions │ ├── dark-opinions.yml │ └── opinions.yml ├── testhelpers └── serialization_helper.go ├── util ├── download_file.go ├── download_file_test.go ├── hash.go ├── hash_test.go ├── model_grapher.go ├── name_sanitization.go ├── name_sanitization_test.go ├── name_to_key.go ├── name_to_key_test.go ├── serialization_helper.go ├── serialization_helper_test.go ├── string_utils.go ├── string_utils_test.go ├── synced_writer.go ├── tar_helper.go ├── tar_helper_test.go ├── tempdir.go ├── tempdir_darwin.go ├── validate_path.go └── validate_path_test.go ├── validation ├── errors.go ├── errors_test.go ├── rules.go ├── validation.go └── validation_test.go └── vendor ├── cloud.google.com └── go │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ └── compute │ └── metadata │ └── metadata.go ├── code.cloudfoundry.org └── archiver │ ├── LICENSE │ ├── NOTICE │ └── extractor │ ├── detectable_extractor.go │ ├── extractor_interface.go │ ├── mime_type.go │ ├── package.go │ ├── tar_extractor.go │ ├── tgz_extractor.go │ └── zip_extractor.go ├── github.com ├── Azure │ ├── azure-sdk-for-go │ │ ├── LICENSE │ │ └── storage │ │ │ ├── appendblob.go │ │ │ ├── authorization.go │ │ │ ├── blob.go │ │ │ ├── blobsasuri.go │ │ │ ├── blobserviceclient.go │ │ │ ├── blockblob.go │ │ │ ├── client.go │ │ │ ├── container.go │ │ │ ├── copyblob.go │ │ │ ├── directory.go │ │ │ ├── entity.go │ │ │ ├── file.go │ │ │ ├── fileserviceclient.go │ │ │ ├── leaseblob.go │ │ │ ├── message.go │ │ │ ├── odata.go │ │ │ ├── pageblob.go │ │ │ ├── queue.go │ │ │ ├── queueserviceclient.go │ │ │ ├── share.go │ │ │ ├── storagepolicy.go │ │ │ ├── storageservice.go │ │ │ ├── table.go │ │ │ ├── table_batch.go │ │ │ ├── tableserviceclient.go │ │ │ ├── util.go │ │ │ └── version.go │ ├── go-ansiterm │ │ ├── LICENSE │ │ ├── README.md │ │ ├── constants.go │ │ ├── context.go │ │ ├── csi_entry_state.go │ │ ├── csi_param_state.go │ │ ├── escape_intermediate_state.go │ │ ├── escape_state.go │ │ ├── event_handler.go │ │ ├── ground_state.go │ │ ├── osc_string_state.go │ │ ├── parser.go │ │ ├── parser_action_helpers.go │ │ ├── parser_actions.go │ │ ├── states.go │ │ ├── utilities.go │ │ └── winterm │ │ │ ├── ansi.go │ │ │ ├── api.go │ │ │ ├── attr_translation.go │ │ │ ├── cursor_helpers.go │ │ │ ├── erase_helpers.go │ │ │ ├── scroll_helper.go │ │ │ ├── utilities.go │ │ │ └── win_event_handler.go │ └── go-autorest │ │ ├── LICENSE │ │ └── autorest │ │ ├── adal │ │ ├── README.md │ │ ├── config.go │ │ ├── devicetoken.go │ │ ├── persist.go │ │ ├── sender.go │ │ └── token.go │ │ ├── authorization.go │ │ ├── autorest.go │ │ ├── azure │ │ ├── async.go │ │ ├── azure.go │ │ └── environments.go │ │ ├── client.go │ │ ├── date │ │ ├── date.go │ │ ├── time.go │ │ ├── timerfc1123.go │ │ ├── unixtime.go │ │ └── utility.go │ │ ├── error.go │ │ ├── preparer.go │ │ ├── responder.go │ │ ├── retriablerequest.go │ │ ├── sender.go │ │ ├── utility.go │ │ └── version.go ├── Masterminds │ ├── semver │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── collection.go │ │ ├── constraints.go │ │ ├── doc.go │ │ └── version.go │ └── sprig │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── crypto.go │ │ ├── date.go │ │ ├── defaults.go │ │ ├── dict.go │ │ ├── doc.go │ │ ├── functions.go │ │ ├── glide.lock │ │ ├── glide.yaml │ │ ├── list.go │ │ ├── numeric.go │ │ ├── reflect.go │ │ ├── regex.go │ │ ├── semver.go │ │ └── strings.go ├── Microsoft │ └── go-winio │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── archive │ │ └── tar │ │ │ └── LICENSE │ │ ├── backup.go │ │ ├── ea.go │ │ ├── file.go │ │ ├── fileinfo.go │ │ ├── pipe.go │ │ ├── privilege.go │ │ ├── reparse.go │ │ ├── sd.go │ │ ├── syscall.go │ │ └── zsyscall_windows.go ├── Nvveen │ └── Gotty │ │ ├── LICENSE │ │ ├── README │ │ ├── TODO │ │ ├── attributes.go │ │ ├── gotty.go │ │ ├── parser.go │ │ └── types.go ├── SUSE │ ├── stampy │ │ ├── .gitignore │ │ ├── LICENSE.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── VERSION │ │ ├── glide.lock │ │ ├── glide.yaml │ │ └── stampy.go │ └── termui │ │ ├── .gitignore │ │ ├── LICENSE.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── error_printer.go │ │ ├── sigint │ │ └── sigint.go │ │ ├── table.go │ │ ├── termpassword │ │ ├── password_reader.go │ │ ├── password_reader_unix.go │ │ └── password_reader_windows.go │ │ └── ui.go ├── VividCortex │ └── ewma │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ └── ewma.go ├── aokoli │ └── goutils │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── randomstringutils.go │ │ ├── stringutils.go │ │ └── wordutils.go ├── aws │ └── aws-sdk-go │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ ├── aws │ │ ├── awserr │ │ │ ├── error.go │ │ │ └── types.go │ │ ├── awsutil │ │ │ ├── copy.go │ │ │ ├── equal.go │ │ │ ├── path_value.go │ │ │ ├── prettify.go │ │ │ └── string_value.go │ │ ├── client │ │ │ ├── client.go │ │ │ ├── default_retryer.go │ │ │ ├── logger.go │ │ │ └── metadata │ │ │ │ └── client_info.go │ │ ├── config.go │ │ ├── context.go │ │ ├── context_1_6.go │ │ ├── context_1_7.go │ │ ├── convert_types.go │ │ ├── corehandlers │ │ │ ├── handlers.go │ │ │ ├── param_validator.go │ │ │ └── user_agent.go │ │ ├── credentials │ │ │ ├── chain_provider.go │ │ │ ├── credentials.go │ │ │ ├── ec2rolecreds │ │ │ │ └── ec2_role_provider.go │ │ │ ├── endpointcreds │ │ │ │ └── provider.go │ │ │ ├── env_provider.go │ │ │ ├── example.ini │ │ │ ├── shared_credentials_provider.go │ │ │ ├── static_provider.go │ │ │ └── stscreds │ │ │ │ └── assume_role_provider.go │ │ ├── csm │ │ │ ├── doc.go │ │ │ ├── enable.go │ │ │ ├── metric.go │ │ │ ├── metric_chan.go │ │ │ └── reporter.go │ │ ├── defaults │ │ │ ├── defaults.go │ │ │ └── shared_config.go │ │ ├── doc.go │ │ ├── ec2metadata │ │ │ ├── api.go │ │ │ └── service.go │ │ ├── endpoints │ │ │ ├── decode.go │ │ │ ├── defaults.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── v3model.go │ │ │ └── v3model_codegen.go │ │ ├── errors.go │ │ ├── jsonvalue.go │ │ ├── logger.go │ │ ├── request │ │ │ ├── connection_reset_error.go │ │ │ ├── connection_reset_error_other.go │ │ │ ├── handlers.go │ │ │ ├── http_request.go │ │ │ ├── offset_reader.go │ │ │ ├── request.go │ │ │ ├── request_1_7.go │ │ │ ├── request_1_8.go │ │ │ ├── request_context.go │ │ │ ├── request_context_1_6.go │ │ │ ├── request_pagination.go │ │ │ ├── retryer.go │ │ │ ├── timeout_read_closer.go │ │ │ ├── validation.go │ │ │ └── waiter.go │ │ ├── session │ │ │ ├── doc.go │ │ │ ├── env_config.go │ │ │ ├── session.go │ │ │ └── shared_config.go │ │ ├── signer │ │ │ └── v4 │ │ │ │ ├── header_rules.go │ │ │ │ ├── options.go │ │ │ │ ├── uri_path.go │ │ │ │ └── v4.go │ │ ├── types.go │ │ ├── url.go │ │ ├── url_1_7.go │ │ └── version.go │ │ ├── internal │ │ ├── ini │ │ │ ├── ast.go │ │ │ ├── comma_token.go │ │ │ ├── comment_token.go │ │ │ ├── doc.go │ │ │ ├── empty_token.go │ │ │ ├── expression.go │ │ │ ├── fuzz.go │ │ │ ├── ini.go │ │ │ ├── ini_lexer.go │ │ │ ├── ini_parser.go │ │ │ ├── literal_tokens.go │ │ │ ├── newline_token.go │ │ │ ├── number_helper.go │ │ │ ├── op_tokens.go │ │ │ ├── parse_error.go │ │ │ ├── parse_stack.go │ │ │ ├── sep_tokens.go │ │ │ ├── skipper.go │ │ │ ├── statement.go │ │ │ ├── value_util.go │ │ │ ├── visitor.go │ │ │ ├── walker.go │ │ │ └── ws_token.go │ │ ├── s3err │ │ │ └── error.go │ │ ├── sdkio │ │ │ ├── io_go1.6.go │ │ │ └── io_go1.7.go │ │ ├── sdkrand │ │ │ └── locked_source.go │ │ ├── sdkuri │ │ │ └── path.go │ │ └── shareddefaults │ │ │ ├── ecs_container.go │ │ │ └── shared_config.go │ │ ├── private │ │ └── protocol │ │ │ ├── eventstream │ │ │ ├── debug.go │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── error.go │ │ │ ├── eventstreamapi │ │ │ │ ├── api.go │ │ │ │ └── error.go │ │ │ ├── header.go │ │ │ ├── header_value.go │ │ │ └── message.go │ │ │ ├── host.go │ │ │ ├── idempotency.go │ │ │ ├── jsonvalue.go │ │ │ ├── payload.go │ │ │ ├── query │ │ │ ├── build.go │ │ │ ├── queryutil │ │ │ │ └── queryutil.go │ │ │ ├── unmarshal.go │ │ │ └── unmarshal_error.go │ │ │ ├── rest │ │ │ ├── build.go │ │ │ ├── payload.go │ │ │ └── unmarshal.go │ │ │ ├── restxml │ │ │ └── restxml.go │ │ │ ├── timestamp.go │ │ │ ├── unmarshal.go │ │ │ └── xml │ │ │ └── xmlutil │ │ │ ├── build.go │ │ │ ├── unmarshal.go │ │ │ └── xml_to_struct.go │ │ └── service │ │ ├── s3 │ │ ├── api.go │ │ ├── body_hash.go │ │ ├── bucket_location.go │ │ ├── customizations.go │ │ ├── doc.go │ │ ├── doc_custom.go │ │ ├── errors.go │ │ ├── host_style_bucket.go │ │ ├── platform_handlers.go │ │ ├── platform_handlers_go1.6.go │ │ ├── service.go │ │ ├── sse.go │ │ ├── statusok_error.go │ │ ├── unmarshal_error.go │ │ └── waiters.go │ │ └── sts │ │ ├── api.go │ │ ├── customizations.go │ │ ├── doc.go │ │ ├── errors.go │ │ └── service.go ├── containerd │ └── continuity │ │ ├── AUTHORS │ │ ├── LICENSE │ │ └── pathdriver │ │ └── path_driver.go ├── cppforlife │ └── go-semi-semantic │ │ ├── LICENSE │ │ └── version │ │ ├── ver_seg_comp_int.go │ │ ├── ver_seg_comp_str.go │ │ ├── version.go │ │ ├── version_segment.go │ │ └── version_sort.go ├── cpuguy83 │ └── go-md2man │ │ ├── LICENSE.md │ │ └── md2man │ │ ├── md2man.go │ │ └── roff.go ├── cyphar │ └── filepath-securejoin │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── VERSION │ │ ├── join.go │ │ ├── vendor.conf │ │ └── vfs.go ├── davecgh │ └── go-spew │ │ ├── LICENSE │ │ └── spew │ │ ├── bypass.go │ │ ├── bypasssafe.go │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── dump.go │ │ ├── format.go │ │ └── spew.go ├── dgrijalva │ └── jwt-go │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── MIGRATION_GUIDE.md │ │ ├── README.md │ │ ├── VERSION_HISTORY.md │ │ ├── claims.go │ │ ├── doc.go │ │ ├── ecdsa.go │ │ ├── ecdsa_utils.go │ │ ├── errors.go │ │ ├── hmac.go │ │ ├── map_claims.go │ │ ├── none.go │ │ ├── parser.go │ │ ├── rsa.go │ │ ├── rsa_pss.go │ │ ├── rsa_utils.go │ │ ├── signing_method.go │ │ └── token.go ├── docker │ ├── docker │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── api │ │ │ └── types │ │ │ │ ├── auth.go │ │ │ │ ├── blkiodev │ │ │ │ └── blkio.go │ │ │ │ ├── client.go │ │ │ │ ├── configs.go │ │ │ │ ├── container │ │ │ │ ├── config.go │ │ │ │ ├── container_changes.go │ │ │ │ ├── container_create.go │ │ │ │ ├── container_top.go │ │ │ │ ├── container_update.go │ │ │ │ ├── container_wait.go │ │ │ │ ├── host_config.go │ │ │ │ ├── hostconfig_unix.go │ │ │ │ ├── hostconfig_windows.go │ │ │ │ └── waitcondition.go │ │ │ │ ├── error_response.go │ │ │ │ ├── filters │ │ │ │ └── parse.go │ │ │ │ ├── graph_driver_data.go │ │ │ │ ├── id_response.go │ │ │ │ ├── image_delete_response_item.go │ │ │ │ ├── image_summary.go │ │ │ │ ├── mount │ │ │ │ └── mount.go │ │ │ │ ├── network │ │ │ │ └── network.go │ │ │ │ ├── plugin.go │ │ │ │ ├── plugin_device.go │ │ │ │ ├── plugin_env.go │ │ │ │ ├── plugin_interface_type.go │ │ │ │ ├── plugin_mount.go │ │ │ │ ├── plugin_responses.go │ │ │ │ ├── port.go │ │ │ │ ├── registry │ │ │ │ ├── authenticate.go │ │ │ │ └── registry.go │ │ │ │ ├── seccomp.go │ │ │ │ ├── service_update_response.go │ │ │ │ ├── stats.go │ │ │ │ ├── strslice │ │ │ │ └── strslice.go │ │ │ │ ├── swarm │ │ │ │ ├── common.go │ │ │ │ ├── config.go │ │ │ │ ├── container.go │ │ │ │ ├── network.go │ │ │ │ ├── node.go │ │ │ │ ├── runtime.go │ │ │ │ ├── runtime │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── plugin.pb.go │ │ │ │ │ └── plugin.proto │ │ │ │ ├── secret.go │ │ │ │ ├── service.go │ │ │ │ ├── swarm.go │ │ │ │ └── task.go │ │ │ │ ├── types.go │ │ │ │ ├── versions │ │ │ │ ├── README.md │ │ │ │ └── compare.go │ │ │ │ └── volume.go │ │ ├── contrib │ │ │ └── syntax │ │ │ │ └── vim │ │ │ │ └── LICENSE │ │ ├── docs │ │ │ └── static_files │ │ │ │ └── contributors.png │ │ ├── errdefs │ │ │ ├── defs.go │ │ │ ├── doc.go │ │ │ ├── helpers.go │ │ │ └── is.go │ │ ├── hack │ │ │ └── generate-authors.sh │ │ ├── integration-cli │ │ │ └── fixtures │ │ │ │ └── https │ │ │ │ ├── ca.pem │ │ │ │ ├── client-cert.pem │ │ │ │ ├── client-key.pem │ │ │ │ ├── server-cert.pem │ │ │ │ └── server-key.pem │ │ ├── opts │ │ │ ├── address_pools.go │ │ │ ├── env.go │ │ │ ├── hosts.go │ │ │ ├── hosts_unix.go │ │ │ ├── hosts_windows.go │ │ │ ├── ip.go │ │ │ ├── opts.go │ │ │ ├── opts_unix.go │ │ │ ├── opts_windows.go │ │ │ ├── quotedstring.go │ │ │ ├── runtime.go │ │ │ └── ulimit.go │ │ └── pkg │ │ │ ├── fileutils │ │ │ ├── fileutils.go │ │ │ ├── fileutils_darwin.go │ │ │ ├── fileutils_unix.go │ │ │ └── fileutils_windows.go │ │ │ ├── homedir │ │ │ ├── homedir_linux.go │ │ │ ├── homedir_others.go │ │ │ ├── homedir_unix.go │ │ │ └── homedir_windows.go │ │ │ ├── idtools │ │ │ ├── idtools.go │ │ │ ├── idtools_unix.go │ │ │ ├── idtools_windows.go │ │ │ ├── usergroupadd_linux.go │ │ │ ├── usergroupadd_unsupported.go │ │ │ └── utils_unix.go │ │ │ ├── ioutils │ │ │ ├── buffer.go │ │ │ ├── bytespipe.go │ │ │ ├── fswriters.go │ │ │ ├── readers.go │ │ │ ├── temp_unix.go │ │ │ ├── temp_windows.go │ │ │ ├── writeflusher.go │ │ │ └── writers.go │ │ │ ├── longpath │ │ │ └── longpath.go │ │ │ ├── mount │ │ │ ├── flags.go │ │ │ ├── flags_freebsd.go │ │ │ ├── flags_linux.go │ │ │ ├── flags_unsupported.go │ │ │ ├── mount.go │ │ │ ├── mounter_freebsd.go │ │ │ ├── mounter_linux.go │ │ │ ├── mounter_unsupported.go │ │ │ ├── mountinfo.go │ │ │ ├── mountinfo_freebsd.go │ │ │ ├── mountinfo_linux.go │ │ │ ├── mountinfo_unsupported.go │ │ │ ├── mountinfo_windows.go │ │ │ └── sharedsubtree_linux.go │ │ │ ├── pools │ │ │ └── pools.go │ │ │ ├── stdcopy │ │ │ └── stdcopy.go │ │ │ ├── symlink │ │ │ ├── LICENSE.APACHE │ │ │ └── LICENSE.BSD │ │ │ └── system │ │ │ ├── chtimes.go │ │ │ ├── chtimes_unix.go │ │ │ ├── chtimes_windows.go │ │ │ ├── errors.go │ │ │ ├── exitcode.go │ │ │ ├── filesys.go │ │ │ ├── filesys_windows.go │ │ │ ├── init.go │ │ │ ├── init_unix.go │ │ │ ├── init_windows.go │ │ │ ├── lcow.go │ │ │ ├── lcow_unix.go │ │ │ ├── lcow_windows.go │ │ │ ├── lstat_unix.go │ │ │ ├── lstat_windows.go │ │ │ ├── meminfo.go │ │ │ ├── meminfo_linux.go │ │ │ ├── meminfo_unsupported.go │ │ │ ├── meminfo_windows.go │ │ │ ├── mknod.go │ │ │ ├── mknod_windows.go │ │ │ ├── path.go │ │ │ ├── path_unix.go │ │ │ ├── path_windows.go │ │ │ ├── process_unix.go │ │ │ ├── process_windows.go │ │ │ ├── rm.go │ │ │ ├── stat_darwin.go │ │ │ ├── stat_freebsd.go │ │ │ ├── stat_linux.go │ │ │ ├── stat_openbsd.go │ │ │ ├── stat_solaris.go │ │ │ ├── stat_unix.go │ │ │ ├── stat_windows.go │ │ │ ├── syscall_unix.go │ │ │ ├── syscall_windows.go │ │ │ ├── umask.go │ │ │ ├── umask_windows.go │ │ │ ├── utimes_freebsd.go │ │ │ ├── utimes_linux.go │ │ │ ├── utimes_unsupported.go │ │ │ ├── xattrs_linux.go │ │ │ └── xattrs_unsupported.go │ ├── go-connections │ │ ├── LICENSE │ │ └── nat │ │ │ ├── nat.go │ │ │ ├── parse.go │ │ │ └── sort.go │ ├── go-units │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── README.md │ │ ├── circle.yml │ │ ├── duration.go │ │ ├── size.go │ │ └── ulimit.go │ └── libnetwork │ │ ├── LICENSE │ │ ├── client │ │ └── mflag │ │ │ └── LICENSE │ │ └── ipamutils │ │ └── utils.go ├── dsnet │ └── compress │ │ ├── .travis.yml │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── api.go │ │ ├── bzip2 │ │ ├── bwt.go │ │ ├── common.go │ │ ├── fuzz_off.go │ │ ├── fuzz_on.go │ │ ├── internal │ │ │ └── sais │ │ │ │ ├── common.go │ │ │ │ ├── sais_byte.go │ │ │ │ ├── sais_gen.go │ │ │ │ └── sais_int.go │ │ ├── mtf_rle2.go │ │ ├── prefix.go │ │ ├── reader.go │ │ ├── rle1.go │ │ └── writer.go │ │ ├── internal │ │ ├── common.go │ │ ├── debug.go │ │ ├── errors │ │ │ └── errors.go │ │ ├── gofuzz.go │ │ ├── prefix │ │ │ ├── debug.go │ │ │ ├── decoder.go │ │ │ ├── encoder.go │ │ │ ├── prefix.go │ │ │ ├── range.go │ │ │ ├── reader.go │ │ │ ├── wrap.go │ │ │ └── writer.go │ │ └── release.go │ │ ├── zbench.sh │ │ ├── zfuzz.sh │ │ ├── zprof.sh │ │ └── ztest.sh ├── fatih │ └── color │ │ ├── .travis.yml │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── color.go │ │ └── doc.go ├── fsnotify │ └── fsnotify │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── fen.go │ │ ├── fsnotify.go │ │ ├── inotify.go │ │ ├── inotify_poller.go │ │ ├── kqueue.go │ │ ├── open_mode_bsd.go │ │ ├── open_mode_darwin.go │ │ └── windows.go ├── fsouza │ └── go-dockerclient │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── DOCKER-LICENSE │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.markdown │ │ ├── appveyor.yml │ │ ├── auth.go │ │ ├── change.go │ │ ├── client.go │ │ ├── client_unix.go │ │ ├── client_windows.go │ │ ├── container.go │ │ ├── distribution.go │ │ ├── env.go │ │ ├── event.go │ │ ├── exec.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── image.go │ │ ├── internal │ │ ├── archive │ │ │ ├── archive.go │ │ │ ├── archive_linux.go │ │ │ ├── archive_other.go │ │ │ ├── archive_unix.go │ │ │ ├── archive_windows.go │ │ │ ├── changes_unix.go │ │ │ ├── changes_windows.go │ │ │ ├── copy.go │ │ │ └── whiteouts.go │ │ ├── jsonmessage │ │ │ └── jsonmessage.go │ │ └── term │ │ │ ├── term.go │ │ │ ├── winsize.go │ │ │ └── winsize_windows.go │ │ ├── misc.go │ │ ├── network.go │ │ ├── plugin.go │ │ ├── registry_auth.go │ │ ├── signal.go │ │ ├── swarm.go │ │ ├── swarm_configs.go │ │ ├── swarm_node.go │ │ ├── swarm_secrets.go │ │ ├── swarm_service.go │ │ ├── swarm_task.go │ │ ├── system.go │ │ ├── tar.go │ │ ├── tls.go │ │ └── volume.go ├── gogo │ └── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── GOLANG_CONTRIBUTORS │ │ ├── LICENSE │ │ └── proto │ │ ├── Makefile │ │ ├── clone.go │ │ ├── decode.go │ │ ├── decode_gogo.go │ │ ├── discard.go │ │ ├── duration.go │ │ ├── duration_gogo.go │ │ ├── encode.go │ │ ├── encode_gogo.go │ │ ├── equal.go │ │ ├── extensions.go │ │ ├── extensions_gogo.go │ │ ├── lib.go │ │ ├── lib_gogo.go │ │ ├── message_set.go │ │ ├── pointer_reflect.go │ │ ├── pointer_reflect_gogo.go │ │ ├── pointer_unsafe.go │ │ ├── pointer_unsafe_gogo.go │ │ ├── properties.go │ │ ├── properties_gogo.go │ │ ├── skip_gogo.go │ │ ├── text.go │ │ ├── text_gogo.go │ │ ├── text_parser.go │ │ ├── timestamp.go │ │ └── timestamp_gogo.go ├── golang │ ├── glog │ │ ├── LICENSE │ │ ├── README │ │ ├── glog.go │ │ └── glog_file.go │ ├── mock │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── gomock │ │ │ ├── call.go │ │ │ ├── callset.go │ │ │ ├── controller.go │ │ │ └── matchers.go │ │ └── mockgen │ │ │ ├── mockgen.go │ │ │ ├── model │ │ │ └── model.go │ │ │ ├── parse.go │ │ │ └── reflect.go │ ├── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ └── proto │ │ │ ├── clone.go │ │ │ ├── decode.go │ │ │ ├── discard.go │ │ │ ├── encode.go │ │ │ ├── equal.go │ │ │ ├── extensions.go │ │ │ ├── lib.go │ │ │ ├── message_set.go │ │ │ ├── pointer_reflect.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── properties.go │ │ │ ├── table_marshal.go │ │ │ ├── table_merge.go │ │ │ ├── table_unmarshal.go │ │ │ ├── text.go │ │ │ └── text_parser.go │ └── snappy │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README │ │ ├── decode.go │ │ ├── decode_amd64.go │ │ ├── decode_amd64.s │ │ ├── decode_other.go │ │ ├── encode.go │ │ ├── encode_amd64.go │ │ ├── encode_amd64.s │ │ ├── encode_other.go │ │ └── snappy.go ├── google │ └── uuid │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dce.go │ │ ├── doc.go │ │ ├── hash.go │ │ ├── marshal.go │ │ ├── node.go │ │ ├── node_js.go │ │ ├── node_net.go │ │ ├── sql.go │ │ ├── time.go │ │ ├── util.go │ │ ├── uuid.go │ │ ├── version1.go │ │ └── version4.go ├── gosuri │ ├── uilive │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── writer.go │ │ ├── writer_posix.go │ │ └── writer_windows.go │ └── uiprogress │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── bar.go │ │ ├── doc.go │ │ ├── progress.go │ │ └── util │ │ └── strutil │ │ └── strutil.go ├── graymeta │ └── stow │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── BestPractices.md │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── azure │ │ ├── config.go │ │ ├── container.go │ │ ├── doc.go │ │ ├── item.go │ │ ├── location.go │ │ └── multipart.go │ │ ├── doc.go │ │ ├── google │ │ ├── README.md │ │ ├── config.go │ │ ├── container.go │ │ ├── doc.go │ │ ├── item.go │ │ └── location.go │ │ ├── local │ │ ├── container.go │ │ ├── doc.go │ │ ├── filedata_darwin.go │ │ ├── filedata_linux.go │ │ ├── filedata_windows.go │ │ ├── item.go │ │ ├── local.go │ │ └── location.go │ │ ├── oracle │ │ ├── config.go │ │ ├── container.go │ │ ├── doc.go │ │ ├── item.go │ │ └── location.go │ │ ├── s3 │ │ ├── README.md │ │ ├── config.go │ │ ├── container.go │ │ ├── doc.go │ │ ├── item.go │ │ └── location.go │ │ ├── stow-aeroplane.png │ │ ├── stow-definition.png │ │ ├── stow.go │ │ ├── swift │ │ ├── config.go │ │ ├── container.go │ │ ├── doc.go │ │ ├── item.go │ │ └── location.go │ │ └── walk.go ├── hashicorp │ ├── errwrap │ │ ├── LICENSE │ │ ├── README.md │ │ ├── errwrap.go │ │ └── go.mod │ ├── go-multierror │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── append.go │ │ ├── flatten.go │ │ ├── format.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── multierror.go │ │ ├── prefix.go │ │ └── sort.go │ └── hcl │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── decoder.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── hcl.go │ │ ├── hcl │ │ ├── ast │ │ │ ├── ast.go │ │ │ └── walk.go │ │ ├── parser │ │ │ ├── error.go │ │ │ └── parser.go │ │ ├── printer │ │ │ ├── nodes.go │ │ │ └── printer.go │ │ ├── scanner │ │ │ └── scanner.go │ │ ├── strconv │ │ │ └── quote.go │ │ └── token │ │ │ ├── position.go │ │ │ └── token.go │ │ ├── json │ │ ├── parser │ │ │ ├── flatten.go │ │ │ └── parser.go │ │ ├── scanner │ │ │ └── scanner.go │ │ └── token │ │ │ ├── position.go │ │ │ └── token.go │ │ ├── lex.go │ │ └── parse.go ├── huandu │ └── xstrings │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── common.go │ │ ├── convert.go │ │ ├── count.go │ │ ├── doc.go │ │ ├── format.go │ │ ├── manipulate.go │ │ └── translate.go ├── imdario │ └── mergo │ │ ├── .travis.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── map.go │ │ ├── merge.go │ │ ├── mergo.go │ │ └── testdata │ │ └── license.yml ├── inconshreveable │ └── mousetrap │ │ ├── LICENSE │ │ ├── README.md │ │ ├── trap_others.go │ │ ├── trap_windows.go │ │ └── trap_windows_1.4.go ├── jimmysawczuk │ └── worker │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── map.go │ │ ├── package.go │ │ ├── queue.go │ │ ├── switch.go │ │ ├── types.go │ │ └── worker.go ├── jmespath │ └── go-jmespath │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── api.go │ │ ├── astnodetype_string.go │ │ ├── functions.go │ │ ├── interpreter.go │ │ ├── lexer.go │ │ ├── parser.go │ │ ├── toktype_string.go │ │ └── util.go ├── konsorten │ └── go-windows-terminal-sequences │ │ ├── LICENSE │ │ ├── README.md │ │ ├── go.mod │ │ └── sequences.go ├── machinebox │ └── progress │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── progress.go │ │ ├── reader.go │ │ └── writer.go ├── magiconair │ └── properties │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decode.go │ │ ├── doc.go │ │ ├── integrate.go │ │ ├── lex.go │ │ ├── load.go │ │ ├── parser.go │ │ ├── properties.go │ │ └── rangecheck.go ├── mattn │ └── go-isatty │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── isatty_appengine.go │ │ ├── isatty_bsd.go │ │ ├── isatty_linux.go │ │ ├── isatty_linux_ppc64x.go │ │ ├── isatty_others.go │ │ ├── isatty_solaris.go │ │ └── isatty_windows.go ├── mholt │ └── archiver │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── archiver.go │ │ ├── build.bash │ │ ├── rar.go │ │ ├── tar.go │ │ ├── tarbz2.go │ │ ├── targz.go │ │ ├── tarlz4.go │ │ ├── tarsz.go │ │ ├── tarxz.go │ │ └── zip.go ├── mitchellh │ └── mapstructure │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decode_hooks.go │ │ ├── error.go │ │ ├── go.mod │ │ └── mapstructure.go ├── ncw │ └── swift │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── COPYING │ │ ├── README.md │ │ ├── auth.go │ │ ├── auth_v3.go │ │ ├── bin │ │ └── update-authors.py │ │ ├── compatibility_1_0.go │ │ ├── compatibility_1_1.go │ │ ├── dlo.go │ │ ├── doc.go │ │ ├── largeobjects.go │ │ ├── meta.go │ │ ├── notes.txt │ │ ├── slo.go │ │ ├── swift.go │ │ ├── timeout_reader.go │ │ ├── travis_realserver.sh │ │ └── watchdog_reader.go ├── nwaples │ └── rardecode │ │ ├── LICENSE │ │ ├── README.md │ │ ├── archive.go │ │ ├── archive15.go │ │ ├── archive50.go │ │ ├── bit_reader.go │ │ ├── decode29.go │ │ ├── decode29_lz.go │ │ ├── decode29_ppm.go │ │ ├── decode50.go │ │ ├── decode_reader.go │ │ ├── decrypt_reader.go │ │ ├── filters.go │ │ ├── go.mod │ │ ├── huffman.go │ │ ├── ppm_model.go │ │ ├── reader.go │ │ └── vm.go ├── opencontainers │ ├── go-digest │ │ ├── .mailmap │ │ ├── .pullapprove.yml │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.code │ │ ├── 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 │ └── runc │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── libcontainer │ │ └── user │ │ ├── MAINTAINERS │ │ ├── lookup.go │ │ ├── lookup_unix.go │ │ ├── lookup_windows.go │ │ └── user.go ├── openshift │ └── source-to-image │ │ ├── AUTHORS │ │ ├── LICENSE │ │ └── pkg │ │ ├── api │ │ ├── constants │ │ │ ├── doc.go │ │ │ ├── env.go │ │ │ ├── labels.go │ │ │ └── scripts.go │ │ ├── doc.go │ │ ├── helpers.go │ │ └── types.go │ │ ├── errors │ │ ├── doc.go │ │ └── errors.go │ │ ├── scm │ │ └── git │ │ │ ├── git.go │ │ │ ├── testhelpers.go │ │ │ ├── types.go │ │ │ └── url.go │ │ ├── tar │ │ ├── doc.go │ │ └── tar.go │ │ └── util │ │ ├── callback.go │ │ ├── cmd │ │ └── cmd.go │ │ ├── cygpath │ │ └── cygpath.go │ │ ├── doc.go │ │ ├── env.go │ │ ├── fs │ │ └── fs.go │ │ ├── glog │ │ └── glog.go │ │ ├── injection.go │ │ ├── labels.go │ │ ├── strings.go │ │ ├── timeout.go │ │ ├── user │ │ ├── range.go │ │ └── rangelist.go │ │ └── util.go ├── pborman │ └── uuid │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dce.go │ │ ├── doc.go │ │ ├── hash.go │ │ ├── marshal.go │ │ ├── node.go │ │ ├── sql.go │ │ ├── time.go │ │ ├── util.go │ │ ├── uuid.go │ │ ├── version1.go │ │ └── version4.go ├── pelletier │ └── go-toml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── benchmark.json │ │ ├── benchmark.sh │ │ ├── benchmark.toml │ │ ├── benchmark.yml │ │ ├── doc.go │ │ ├── example-crlf.toml │ │ ├── example.toml │ │ ├── fuzz.go │ │ ├── fuzz.sh │ │ ├── keysparsing.go │ │ ├── lexer.go │ │ ├── marshal.go │ │ ├── marshal_test.toml │ │ ├── parser.go │ │ ├── position.go │ │ ├── test.sh │ │ ├── token.go │ │ ├── toml.go │ │ ├── tomltree_create.go │ │ └── tomltree_write.go ├── pierrec │ └── lz4 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── block.go │ │ ├── debug.go │ │ ├── debug_stub.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── internal │ │ └── xxh32 │ │ │ └── xxh32zero.go │ │ ├── lz4.go │ │ ├── lz4_go1.10.go │ │ ├── lz4_notgo1.10.go │ │ ├── reader.go │ │ └── writer.go ├── pkg │ └── errors │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── errors.go │ │ └── stack.go ├── pmezard │ └── go-difflib │ │ ├── LICENSE │ │ └── difflib │ │ └── difflib.go ├── russross │ └── blackfriday │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── block.go │ │ ├── doc.go │ │ ├── go.mod │ │ ├── html.go │ │ ├── inline.go │ │ ├── latex.go │ │ ├── markdown.go │ │ └── smartypants.go ├── satori │ ├── go.uuid │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── codec.go │ │ ├── generator.go │ │ ├── sql.go │ │ └── uuid.go │ └── uuid │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── uuid.go ├── shiena │ └── ansicolor │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── ansicolor.go │ │ ├── ansicolor_ansi.go │ │ └── ansicolor_windows.go ├── sirupsen │ └── logrus │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── alt_exit.go │ │ ├── appveyor.yml │ │ ├── doc.go │ │ ├── entry.go │ │ ├── exported.go │ │ ├── formatter.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── hooks.go │ │ ├── json_formatter.go │ │ ├── logger.go │ │ ├── logrus.go │ │ ├── terminal_check_appengine.go │ │ ├── terminal_check_js.go │ │ ├── terminal_check_notappengine.go │ │ ├── terminal_check_windows.go │ │ ├── terminal_notwindows.go │ │ ├── terminal_windows.go │ │ ├── text_formatter.go │ │ └── writer.go ├── spf13 │ ├── afero │ │ ├── .travis.yml │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── afero.go │ │ ├── appveyor.yml │ │ ├── basepath.go │ │ ├── cacheOnReadFs.go │ │ ├── const_bsds.go │ │ ├── const_win_unix.go │ │ ├── copyOnWriteFs.go │ │ ├── go.mod │ │ ├── httpFs.go │ │ ├── ioutil.go │ │ ├── lstater.go │ │ ├── match.go │ │ ├── mem │ │ │ ├── dir.go │ │ │ ├── dirmap.go │ │ │ └── file.go │ │ ├── memmap.go │ │ ├── os.go │ │ ├── path.go │ │ ├── readonlyfs.go │ │ ├── regexpfs.go │ │ ├── unionFile.go │ │ └── util.go │ ├── cast │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── cast.go │ │ ├── caste.go │ │ ├── go.mod │ │ └── go.sum │ ├── cobra │ │ ├── .gitignore │ │ ├── .mailmap │ │ ├── .travis.yml │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── args.go │ │ ├── bash_completions.go │ │ ├── bash_completions.md │ │ ├── cobra.go │ │ ├── cobra │ │ │ └── cmd │ │ │ │ └── testdata │ │ │ │ └── LICENSE.golden │ │ ├── command.go │ │ ├── command_notwin.go │ │ ├── command_win.go │ │ ├── doc │ │ │ ├── man_docs.go │ │ │ ├── man_docs.md │ │ │ ├── md_docs.go │ │ │ ├── md_docs.md │ │ │ ├── rest_docs.go │ │ │ ├── rest_docs.md │ │ │ ├── util.go │ │ │ ├── yaml_docs.go │ │ │ └── yaml_docs.md │ │ └── zsh_completions.go │ ├── jwalterweatherman │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── default_notepad.go │ │ ├── go.mod │ │ ├── log_counter.go │ │ └── notepad.go │ ├── pflag │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bool.go │ │ ├── bool_slice.go │ │ ├── bytes.go │ │ ├── count.go │ │ ├── duration.go │ │ ├── duration_slice.go │ │ ├── flag.go │ │ ├── float32.go │ │ ├── float64.go │ │ ├── golangflag.go │ │ ├── int.go │ │ ├── int16.go │ │ ├── int32.go │ │ ├── int64.go │ │ ├── int8.go │ │ ├── int_slice.go │ │ ├── ip.go │ │ ├── ip_slice.go │ │ ├── ipmask.go │ │ ├── ipnet.go │ │ ├── string.go │ │ ├── string_array.go │ │ ├── string_slice.go │ │ ├── string_to_int.go │ │ ├── string_to_string.go │ │ ├── uint.go │ │ ├── uint16.go │ │ ├── uint32.go │ │ ├── uint64.go │ │ ├── uint8.go │ │ └── uint_slice.go │ └── viper │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── flags.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── util.go │ │ └── viper.go ├── stretchr │ └── testify │ │ ├── LICENSE │ │ ├── assert │ │ ├── assertion_format.go │ │ ├── assertion_format.go.tmpl │ │ ├── assertion_forward.go │ │ ├── assertion_forward.go.tmpl │ │ ├── assertions.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── forward_assertions.go │ │ └── http_assertions.go │ │ └── require │ │ ├── doc.go │ │ ├── forward_requirements.go │ │ ├── require.go │ │ ├── require.go.tmpl │ │ ├── require_forward.go │ │ ├── require_forward.go.tmpl │ │ └── requirements.go ├── termie │ └── go-shutil │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.rst │ │ └── shutil.go ├── ulikunitz │ └── xz │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── TODO.md │ │ ├── bits.go │ │ ├── crc.go │ │ ├── example.go │ │ ├── format.go │ │ ├── fox.xz │ │ ├── internal │ │ ├── hash │ │ │ ├── cyclic_poly.go │ │ │ ├── doc.go │ │ │ ├── rabin_karp.go │ │ │ └── roller.go │ │ └── xlog │ │ │ └── xlog.go │ │ ├── lzma │ │ ├── bintree.go │ │ ├── bitops.go │ │ ├── breader.go │ │ ├── buffer.go │ │ ├── bytewriter.go │ │ ├── decoder.go │ │ ├── decoderdict.go │ │ ├── directcodec.go │ │ ├── distcodec.go │ │ ├── encoder.go │ │ ├── encoderdict.go │ │ ├── fox.lzma │ │ ├── hashtable.go │ │ ├── header.go │ │ ├── header2.go │ │ ├── lengthcodec.go │ │ ├── literalcodec.go │ │ ├── matchalgorithm.go │ │ ├── operation.go │ │ ├── prob.go │ │ ├── properties.go │ │ ├── rangecodec.go │ │ ├── reader.go │ │ ├── reader2.go │ │ ├── state.go │ │ ├── treecodecs.go │ │ ├── writer.go │ │ └── writer2.go │ │ ├── lzmafilter.go │ │ ├── make-docs │ │ ├── reader.go │ │ └── writer.go └── vbauerster │ └── mpb │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── bar.go │ ├── bar_option.go │ ├── cwriter │ ├── writer.go │ ├── writer_posix.go │ └── writer_windows.go │ ├── decor │ ├── counters.go │ ├── decorator.go │ ├── doc.go │ ├── elapsed.go │ ├── eta.go │ ├── moving-average.go │ ├── name.go │ ├── percentage.go │ └── speed.go │ ├── doc.go │ ├── go.test.sh │ ├── internal │ ├── percentage.go │ └── round.go │ ├── options.go │ ├── options_go1.7.go │ ├── priority_queue.go │ ├── progress.go │ ├── progress_posix.go │ ├── progress_windows.go │ └── proxyreader.go ├── golang.org └── x │ ├── crypto │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── pbkdf2 │ │ └── pbkdf2.go │ ├── scrypt │ │ └── scrypt.go │ └── ssh │ │ └── terminal │ │ ├── terminal.go │ │ ├── util.go │ │ ├── util_bsd.go │ │ ├── util_linux.go │ │ ├── util_plan9.go │ │ ├── util_solaris.go │ │ └── util_windows.go │ ├── net │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ └── context │ │ ├── context.go │ │ ├── ctxhttp │ │ ├── ctxhttp.go │ │ └── ctxhttp_pre17.go │ │ ├── go17.go │ │ └── pre_go17.go │ ├── oauth2 │ ├── .travis.yml │ ├── AUTHORS │ ├── CONTRIBUTING.md │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── README.md │ ├── google │ │ ├── appengine.go │ │ ├── appengine_gen1.go │ │ ├── appengine_gen2_flex.go │ │ ├── default.go │ │ ├── doc.go │ │ ├── google.go │ │ ├── jwt.go │ │ └── sdk.go │ ├── internal │ │ ├── client_appengine.go │ │ ├── doc.go │ │ ├── oauth2.go │ │ ├── token.go │ │ └── transport.go │ ├── jws │ │ └── jws.go │ ├── jwt │ │ └── jwt.go │ ├── oauth2.go │ ├── token.go │ └── transport.go │ ├── sys │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── unix │ │ ├── .gitignore │ │ ├── README.md │ │ ├── affinity_linux.go │ │ ├── aliases.go │ │ ├── asm_aix_ppc64.s │ │ ├── asm_darwin_386.s │ │ ├── asm_darwin_amd64.s │ │ ├── asm_darwin_arm.s │ │ ├── asm_darwin_arm64.s │ │ ├── asm_dragonfly_amd64.s │ │ ├── asm_freebsd_386.s │ │ ├── asm_freebsd_amd64.s │ │ ├── asm_freebsd_arm.s │ │ ├── asm_linux_386.s │ │ ├── asm_linux_amd64.s │ │ ├── asm_linux_arm.s │ │ ├── asm_linux_arm64.s │ │ ├── asm_linux_mips64x.s │ │ ├── asm_linux_mipsx.s │ │ ├── asm_linux_ppc64x.s │ │ ├── asm_linux_s390x.s │ │ ├── asm_netbsd_386.s │ │ ├── asm_netbsd_amd64.s │ │ ├── asm_netbsd_arm.s │ │ ├── asm_openbsd_386.s │ │ ├── asm_openbsd_amd64.s │ │ ├── asm_openbsd_arm.s │ │ ├── asm_solaris_amd64.s │ │ ├── bluetooth_linux.go │ │ ├── cap_freebsd.go │ │ ├── constants.go │ │ ├── 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 │ │ ├── dirent.go │ │ ├── endian_big.go │ │ ├── endian_little.go │ │ ├── env_unix.go │ │ ├── errors_freebsd_386.go │ │ ├── errors_freebsd_amd64.go │ │ ├── errors_freebsd_arm.go │ │ ├── fcntl.go │ │ ├── fcntl_linux_32bit.go │ │ ├── gccgo.go │ │ ├── gccgo_c.c │ │ ├── gccgo_linux_amd64.go │ │ ├── ioctl.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mkpost.go │ │ ├── mksyscall.pl │ │ ├── mksyscall_aix_ppc.pl │ │ ├── mksyscall_aix_ppc64.pl │ │ ├── mksyscall_solaris.pl │ │ ├── mksysctl_openbsd.pl │ │ ├── mksysnum_darwin.pl │ │ ├── mksysnum_dragonfly.pl │ │ ├── mksysnum_freebsd.pl │ │ ├── mksysnum_netbsd.pl │ │ ├── mksysnum_openbsd.pl │ │ ├── openbsd_pledge.go │ │ ├── openbsd_unveil.go │ │ ├── pagesize_unix.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── sockcmsg_linux.go │ │ ├── sockcmsg_unix.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_aix.go │ │ ├── syscall_aix_ppc.go │ │ ├── syscall_aix_ppc64.go │ │ ├── syscall_bsd.go │ │ ├── syscall_darwin.go │ │ ├── syscall_darwin_386.go │ │ ├── syscall_darwin_amd64.go │ │ ├── syscall_darwin_arm.go │ │ ├── syscall_darwin_arm64.go │ │ ├── syscall_dragonfly.go │ │ ├── syscall_dragonfly_amd64.go │ │ ├── syscall_freebsd.go │ │ ├── syscall_freebsd_386.go │ │ ├── syscall_freebsd_amd64.go │ │ ├── syscall_freebsd_arm.go │ │ ├── syscall_linux.go │ │ ├── syscall_linux_386.go │ │ ├── syscall_linux_amd64.go │ │ ├── syscall_linux_amd64_gc.go │ │ ├── syscall_linux_arm.go │ │ ├── syscall_linux_arm64.go │ │ ├── syscall_linux_gc.go │ │ ├── syscall_linux_gc_386.go │ │ ├── syscall_linux_gccgo_386.go │ │ ├── syscall_linux_gccgo_arm.go │ │ ├── syscall_linux_mips64x.go │ │ ├── syscall_linux_mipsx.go │ │ ├── syscall_linux_ppc64x.go │ │ ├── syscall_linux_riscv64.go │ │ ├── syscall_linux_s390x.go │ │ ├── syscall_linux_sparc64.go │ │ ├── syscall_netbsd.go │ │ ├── syscall_netbsd_386.go │ │ ├── syscall_netbsd_amd64.go │ │ ├── syscall_netbsd_arm.go │ │ ├── syscall_openbsd.go │ │ ├── syscall_openbsd_386.go │ │ ├── syscall_openbsd_amd64.go │ │ ├── syscall_openbsd_arm.go │ │ ├── syscall_solaris.go │ │ ├── syscall_solaris_amd64.go │ │ ├── syscall_unix.go │ │ ├── syscall_unix_gc.go │ │ ├── syscall_unix_gc_ppc64x.go │ │ ├── timestruct.go │ │ ├── types_aix.go │ │ ├── types_darwin.go │ │ ├── types_dragonfly.go │ │ ├── types_freebsd.go │ │ ├── types_netbsd.go │ │ ├── types_openbsd.go │ │ ├── types_solaris.go │ │ ├── xattr_bsd.go │ │ ├── zerrors_aix_ppc.go │ │ ├── zerrors_aix_ppc64.go │ │ ├── zerrors_darwin_386.go │ │ ├── zerrors_darwin_amd64.go │ │ ├── zerrors_darwin_arm.go │ │ ├── zerrors_darwin_arm64.go │ │ ├── zerrors_dragonfly_amd64.go │ │ ├── zerrors_freebsd_386.go │ │ ├── zerrors_freebsd_amd64.go │ │ ├── zerrors_freebsd_arm.go │ │ ├── zerrors_linux_386.go │ │ ├── zerrors_linux_amd64.go │ │ ├── zerrors_linux_arm.go │ │ ├── zerrors_linux_arm64.go │ │ ├── zerrors_linux_mips.go │ │ ├── zerrors_linux_mips64.go │ │ ├── zerrors_linux_mips64le.go │ │ ├── zerrors_linux_mipsle.go │ │ ├── zerrors_linux_ppc64.go │ │ ├── zerrors_linux_ppc64le.go │ │ ├── zerrors_linux_riscv64.go │ │ ├── zerrors_linux_s390x.go │ │ ├── zerrors_linux_sparc64.go │ │ ├── zerrors_netbsd_386.go │ │ ├── zerrors_netbsd_amd64.go │ │ ├── zerrors_netbsd_arm.go │ │ ├── zerrors_openbsd_386.go │ │ ├── zerrors_openbsd_amd64.go │ │ ├── zerrors_openbsd_arm.go │ │ ├── zerrors_solaris_amd64.go │ │ ├── zptrace386_linux.go │ │ ├── zptracearm_linux.go │ │ ├── zptracemips_linux.go │ │ ├── zptracemipsle_linux.go │ │ ├── zsyscall_aix_ppc.go │ │ ├── zsyscall_aix_ppc64.go │ │ ├── zsyscall_aix_ppc64_gc.go │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ ├── zsyscall_darwin_386.go │ │ ├── zsyscall_darwin_amd64.go │ │ ├── zsyscall_darwin_arm.go │ │ ├── zsyscall_darwin_arm64.go │ │ ├── zsyscall_dragonfly_amd64.go │ │ ├── zsyscall_freebsd_386.go │ │ ├── zsyscall_freebsd_amd64.go │ │ ├── zsyscall_freebsd_arm.go │ │ ├── zsyscall_linux_386.go │ │ ├── zsyscall_linux_amd64.go │ │ ├── zsyscall_linux_arm.go │ │ ├── zsyscall_linux_arm64.go │ │ ├── zsyscall_linux_mips.go │ │ ├── zsyscall_linux_mips64.go │ │ ├── zsyscall_linux_mips64le.go │ │ ├── zsyscall_linux_mipsle.go │ │ ├── zsyscall_linux_ppc64.go │ │ ├── zsyscall_linux_ppc64le.go │ │ ├── zsyscall_linux_riscv64.go │ │ ├── zsyscall_linux_s390x.go │ │ ├── zsyscall_linux_sparc64.go │ │ ├── zsyscall_netbsd_386.go │ │ ├── zsyscall_netbsd_amd64.go │ │ ├── zsyscall_netbsd_arm.go │ │ ├── zsyscall_openbsd_386.go │ │ ├── zsyscall_openbsd_amd64.go │ │ ├── zsyscall_openbsd_arm.go │ │ ├── zsyscall_solaris_amd64.go │ │ ├── zsysctl_openbsd_386.go │ │ ├── zsysctl_openbsd_amd64.go │ │ ├── zsysctl_openbsd_arm.go │ │ ├── zsysnum_darwin_386.go │ │ ├── zsysnum_darwin_amd64.go │ │ ├── zsysnum_darwin_arm.go │ │ ├── zsysnum_darwin_arm64.go │ │ ├── zsysnum_dragonfly_amd64.go │ │ ├── zsysnum_freebsd_386.go │ │ ├── zsysnum_freebsd_amd64.go │ │ ├── zsysnum_freebsd_arm.go │ │ ├── zsysnum_linux_386.go │ │ ├── zsysnum_linux_amd64.go │ │ ├── zsysnum_linux_arm.go │ │ ├── zsysnum_linux_arm64.go │ │ ├── zsysnum_linux_mips.go │ │ ├── zsysnum_linux_mips64.go │ │ ├── zsysnum_linux_mips64le.go │ │ ├── zsysnum_linux_mipsle.go │ │ ├── zsysnum_linux_ppc64.go │ │ ├── zsysnum_linux_ppc64le.go │ │ ├── zsysnum_linux_riscv64.go │ │ ├── zsysnum_linux_s390x.go │ │ ├── zsysnum_linux_sparc64.go │ │ ├── zsysnum_netbsd_386.go │ │ ├── zsysnum_netbsd_amd64.go │ │ ├── zsysnum_netbsd_arm.go │ │ ├── zsysnum_openbsd_386.go │ │ ├── zsysnum_openbsd_amd64.go │ │ ├── zsysnum_openbsd_arm.go │ │ ├── ztypes_aix_ppc.go │ │ ├── ztypes_aix_ppc64.go │ │ ├── ztypes_darwin_386.go │ │ ├── ztypes_darwin_amd64.go │ │ ├── ztypes_darwin_arm.go │ │ ├── ztypes_darwin_arm64.go │ │ ├── ztypes_dragonfly_amd64.go │ │ ├── ztypes_freebsd_386.go │ │ ├── ztypes_freebsd_amd64.go │ │ ├── ztypes_freebsd_arm.go │ │ ├── ztypes_linux_386.go │ │ ├── ztypes_linux_amd64.go │ │ ├── ztypes_linux_arm.go │ │ ├── ztypes_linux_arm64.go │ │ ├── ztypes_linux_mips.go │ │ ├── ztypes_linux_mips64.go │ │ ├── ztypes_linux_mips64le.go │ │ ├── ztypes_linux_mipsle.go │ │ ├── ztypes_linux_ppc64.go │ │ ├── ztypes_linux_ppc64le.go │ │ ├── ztypes_linux_riscv64.go │ │ ├── ztypes_linux_s390x.go │ │ ├── ztypes_linux_sparc64.go │ │ ├── ztypes_netbsd_386.go │ │ ├── ztypes_netbsd_amd64.go │ │ ├── ztypes_netbsd_arm.go │ │ ├── ztypes_openbsd_386.go │ │ ├── ztypes_openbsd_amd64.go │ │ ├── ztypes_openbsd_arm.go │ │ └── ztypes_solaris_amd64.go │ └── windows │ │ ├── aliases.go │ │ ├── asm_windows_386.s │ │ ├── asm_windows_amd64.s │ │ ├── asm_windows_arm.s │ │ ├── dll_windows.go │ │ ├── env_windows.go │ │ ├── eventlog.go │ │ ├── exec_windows.go │ │ ├── memory_windows.go │ │ ├── mksyscall.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── security_windows.go │ │ ├── service.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_windows.go │ │ ├── types_windows.go │ │ ├── types_windows_386.go │ │ ├── types_windows_amd64.go │ │ ├── types_windows_arm.go │ │ └── zsyscall_windows.go │ └── text │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── internal │ ├── gen │ │ ├── code.go │ │ └── gen.go │ ├── triegen │ │ ├── compact.go │ │ ├── print.go │ │ └── triegen.go │ └── ucd │ │ └── ucd.go │ ├── transform │ └── transform.go │ └── unicode │ ├── cldr │ ├── base.go │ ├── cldr.go │ ├── collate.go │ ├── decode.go │ ├── makexml.go │ ├── resolve.go │ ├── slice.go │ └── xml.go │ └── norm │ ├── composition.go │ ├── forminfo.go │ ├── input.go │ ├── iter.go │ ├── maketables.go │ ├── normalize.go │ ├── readwriter.go │ ├── tables10.0.0.go │ ├── tables9.0.0.go │ ├── transform.go │ ├── trie.go │ └── triegen.go ├── google.golang.org ├── api │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── gensupport │ │ ├── backoff.go │ │ ├── buffer.go │ │ ├── doc.go │ │ ├── header.go │ │ ├── json.go │ │ ├── jsonfloat.go │ │ ├── media.go │ │ ├── params.go │ │ ├── resumable.go │ │ ├── retry.go │ │ └── send.go │ ├── googleapi │ │ ├── googleapi.go │ │ ├── internal │ │ │ └── uritemplates │ │ │ │ ├── LICENSE │ │ │ │ ├── uritemplates.go │ │ │ │ └── utils.go │ │ └── types.go │ └── storage │ │ └── v1 │ │ ├── storage-api.json │ │ └── storage-gen.go └── appengine │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── appengine.go │ ├── appengine_vm.go │ ├── errors.go │ ├── go.mod │ ├── go.sum │ ├── identity.go │ ├── internal │ ├── api.go │ ├── api_classic.go │ ├── api_common.go │ ├── app_id.go │ ├── app_identity │ │ ├── app_identity_service.pb.go │ │ └── app_identity_service.proto │ ├── base │ │ ├── api_base.pb.go │ │ └── api_base.proto │ ├── datastore │ │ ├── datastore_v3.pb.go │ │ └── datastore_v3.proto │ ├── identity.go │ ├── identity_classic.go │ ├── identity_flex.go │ ├── identity_vm.go │ ├── internal.go │ ├── log │ │ ├── log_service.pb.go │ │ └── log_service.proto │ ├── main.go │ ├── main_vm.go │ ├── metadata.go │ ├── modules │ │ ├── modules_service.pb.go │ │ └── modules_service.proto │ ├── net.go │ ├── regen.sh │ ├── remote_api │ │ ├── remote_api.pb.go │ │ └── remote_api.proto │ ├── transaction.go │ └── urlfetch │ │ ├── urlfetch_service.pb.go │ │ └── urlfetch_service.proto │ ├── namespace.go │ ├── timeout.go │ ├── travis_install.sh │ ├── travis_test.sh │ └── urlfetch │ └── urlfetch.go └── gopkg.in └── yaml.v2 ├── .travis.yml ├── LICENSE ├── LICENSE.libyaml ├── NOTICE ├── README.md ├── apic.go ├── decode.go ├── emitterc.go ├── encode.go ├── go.mod ├── parserc.go ├── readerc.go ├── resolve.go ├── scannerc.go ├── sorter.go ├── writerc.go ├── yaml.go ├── yamlh.go └── yamlprivateh.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.overcommit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/.overcommit.yml -------------------------------------------------------------------------------- /Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/Gopkg.lock -------------------------------------------------------------------------------- /Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/Gopkg.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.12.0 2 | -------------------------------------------------------------------------------- /app/build_images.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/app/build_images.go -------------------------------------------------------------------------------- /app/fissile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/app/fissile.go -------------------------------------------------------------------------------- /app/fissile_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/app/fissile_test.go -------------------------------------------------------------------------------- /app/validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/app/validation.go -------------------------------------------------------------------------------- /app/validation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/app/validation_test.go -------------------------------------------------------------------------------- /bin/graph-diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/bin/graph-diff -------------------------------------------------------------------------------- /cmd/build-cleancache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/cmd/build-cleancache.go -------------------------------------------------------------------------------- /cmd/build-helm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/cmd/build-helm.go -------------------------------------------------------------------------------- /cmd/build-images.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/cmd/build-images.go -------------------------------------------------------------------------------- /cmd/build-kube.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/cmd/build-kube.go -------------------------------------------------------------------------------- /cmd/build-packages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/cmd/build-packages.go -------------------------------------------------------------------------------- /cmd/build-release-images.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/cmd/build-release-images.go -------------------------------------------------------------------------------- /cmd/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/cmd/build.go -------------------------------------------------------------------------------- /cmd/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/cmd/diff.go -------------------------------------------------------------------------------- /cmd/docs-autocomplete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/cmd/docs-autocomplete.go -------------------------------------------------------------------------------- /cmd/docs-man.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/cmd/docs-man.go -------------------------------------------------------------------------------- /cmd/docs-markdown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/cmd/docs-markdown.go -------------------------------------------------------------------------------- /cmd/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/cmd/docs.go -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/cmd/root.go -------------------------------------------------------------------------------- /cmd/show-image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/cmd/show-image.go -------------------------------------------------------------------------------- /cmd/show-properties.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/cmd/show-properties.go -------------------------------------------------------------------------------- /cmd/show-release.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/cmd/show-release.go -------------------------------------------------------------------------------- /cmd/show.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/cmd/show.go -------------------------------------------------------------------------------- /cmd/validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/cmd/validation.go -------------------------------------------------------------------------------- /cmd/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/cmd/version.go -------------------------------------------------------------------------------- /compilator/compilator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/compilator/compilator.go -------------------------------------------------------------------------------- /compilator/compilator_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/compilator/compilator_linux.go -------------------------------------------------------------------------------- /compilator/compilator_linux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/compilator/compilator_linux_test.go -------------------------------------------------------------------------------- /compilator/compilator_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/compilator/compilator_other.go -------------------------------------------------------------------------------- /compilator/compilator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/compilator/compilator_test.go -------------------------------------------------------------------------------- /compilator/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/compilator/storage.go -------------------------------------------------------------------------------- /compilator/storage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/compilator/storage_test.go -------------------------------------------------------------------------------- /docker/docker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/docker/docker.go -------------------------------------------------------------------------------- /docker/docker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/docker/docker_test.go -------------------------------------------------------------------------------- /docs/build-docker-imgs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/docs/build-docker-imgs.md -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/fissile-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/docs/fissile-logo.png -------------------------------------------------------------------------------- /docs/generated/fissile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/docs/generated/fissile.md -------------------------------------------------------------------------------- /docs/generated/fissile_build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/docs/generated/fissile_build.md -------------------------------------------------------------------------------- /docs/generated/fissile_build_cleancache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/docs/generated/fissile_build_cleancache.md -------------------------------------------------------------------------------- /docs/generated/fissile_build_helm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/docs/generated/fissile_build_helm.md -------------------------------------------------------------------------------- /docs/generated/fissile_build_images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/docs/generated/fissile_build_images.md -------------------------------------------------------------------------------- /docs/generated/fissile_build_kube.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/docs/generated/fissile_build_kube.md -------------------------------------------------------------------------------- /docs/generated/fissile_build_packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/docs/generated/fissile_build_packages.md -------------------------------------------------------------------------------- /docs/generated/fissile_build_release-images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/docs/generated/fissile_build_release-images.md -------------------------------------------------------------------------------- /docs/generated/fissile_diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/docs/generated/fissile_diff.md -------------------------------------------------------------------------------- /docs/generated/fissile_docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/docs/generated/fissile_docs.md -------------------------------------------------------------------------------- /docs/generated/fissile_docs_autocomplete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/docs/generated/fissile_docs_autocomplete.md -------------------------------------------------------------------------------- /docs/generated/fissile_docs_man.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/docs/generated/fissile_docs_man.md -------------------------------------------------------------------------------- /docs/generated/fissile_docs_markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/docs/generated/fissile_docs_markdown.md -------------------------------------------------------------------------------- /docs/generated/fissile_show.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/docs/generated/fissile_show.md -------------------------------------------------------------------------------- /docs/generated/fissile_show_image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/docs/generated/fissile_show_image.md -------------------------------------------------------------------------------- /docs/generated/fissile_show_properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/docs/generated/fissile_show_properties.md -------------------------------------------------------------------------------- /docs/generated/fissile_show_release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/docs/generated/fissile_show_release.md -------------------------------------------------------------------------------- /docs/generated/fissile_validate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/docs/generated/fissile_validate.md -------------------------------------------------------------------------------- /docs/generated/fissile_version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/docs/generated/fissile_version.md -------------------------------------------------------------------------------- /docs/kubernetes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/docs/kubernetes.md -------------------------------------------------------------------------------- /docs/sizing-hierarchy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/docs/sizing-hierarchy.md -------------------------------------------------------------------------------- /docs/stemcells.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/docs/stemcells.md -------------------------------------------------------------------------------- /docs/validator-description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/docs/validator-description.md -------------------------------------------------------------------------------- /helm/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/helm/config.go -------------------------------------------------------------------------------- /helm/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/helm/config_test.go -------------------------------------------------------------------------------- /kube/bosh_deployment_manifest_secret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/kube/bosh_deployment_manifest_secret.go -------------------------------------------------------------------------------- /kube/bosh_deployment_manifest_secret_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/kube/bosh_deployment_manifest_secret_test.go -------------------------------------------------------------------------------- /kube/deployment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/kube/deployment.go -------------------------------------------------------------------------------- /kube/deployment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/kube/deployment_test.go -------------------------------------------------------------------------------- /kube/export_settings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/kube/export_settings.go -------------------------------------------------------------------------------- /kube/job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/kube/job.go -------------------------------------------------------------------------------- /kube/job_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/kube/job_test.go -------------------------------------------------------------------------------- /kube/kube_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/kube/kube_test.go -------------------------------------------------------------------------------- /kube/pod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/kube/pod.go -------------------------------------------------------------------------------- /kube/pod_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/kube/pod_test.go -------------------------------------------------------------------------------- /kube/rbac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/kube/rbac.go -------------------------------------------------------------------------------- /kube/rbac_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/kube/rbac_test.go -------------------------------------------------------------------------------- /kube/registry_credentials.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/kube/registry_credentials.go -------------------------------------------------------------------------------- /kube/registry_credentials_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/kube/registry_credentials_test.go -------------------------------------------------------------------------------- /kube/secret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/kube/secret.go -------------------------------------------------------------------------------- /kube/secret_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/kube/secret_test.go -------------------------------------------------------------------------------- /kube/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/kube/service.go -------------------------------------------------------------------------------- /kube/service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/kube/service_test.go -------------------------------------------------------------------------------- /kube/stateful_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/kube/stateful_set.go -------------------------------------------------------------------------------- /kube/stateful_set_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/kube/stateful_set_test.go -------------------------------------------------------------------------------- /kube/templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/kube/templates.go -------------------------------------------------------------------------------- /kube/templates_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/kube/templates_test.go -------------------------------------------------------------------------------- /kube/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/kube/utils.go -------------------------------------------------------------------------------- /kube/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/kube/utils_test.go -------------------------------------------------------------------------------- /kube/values.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/kube/values.go -------------------------------------------------------------------------------- /kube/values_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/kube/values_test.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/main.go -------------------------------------------------------------------------------- /make/bindata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/make/bindata -------------------------------------------------------------------------------- /make/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/make/build -------------------------------------------------------------------------------- /make/clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/make/clean -------------------------------------------------------------------------------- /make/docker-deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/make/docker-deps -------------------------------------------------------------------------------- /make/format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/make/format -------------------------------------------------------------------------------- /make/generate-markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/make/generate-markdown -------------------------------------------------------------------------------- /make/include/colors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/make/include/colors.sh -------------------------------------------------------------------------------- /make/include/versioning: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/make/include/versioning -------------------------------------------------------------------------------- /make/lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/make/lint -------------------------------------------------------------------------------- /make/package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/make/package -------------------------------------------------------------------------------- /make/reap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/make/reap -------------------------------------------------------------------------------- /make/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/make/release -------------------------------------------------------------------------------- /make/show-versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/make/show-versions -------------------------------------------------------------------------------- /make/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/make/test -------------------------------------------------------------------------------- /make/tools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/make/tools -------------------------------------------------------------------------------- /make/update-tor-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/make/update-tor-release -------------------------------------------------------------------------------- /make/vet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/make/vet -------------------------------------------------------------------------------- /model/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/model/configuration.go -------------------------------------------------------------------------------- /model/dev_release.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/model/dev_release.go -------------------------------------------------------------------------------- /model/dev_release_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/model/dev_release_test.go -------------------------------------------------------------------------------- /model/final_release.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/model/final_release.go -------------------------------------------------------------------------------- /model/final_release_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/model/final_release_test.go -------------------------------------------------------------------------------- /model/instance_groups.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/model/instance_groups.go -------------------------------------------------------------------------------- /model/instance_groups_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/model/instance_groups_test.go -------------------------------------------------------------------------------- /model/job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/model/job.go -------------------------------------------------------------------------------- /model/job_reference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/model/job_reference.go -------------------------------------------------------------------------------- /model/job_reference_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/model/job_reference_test.go -------------------------------------------------------------------------------- /model/job_template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/model/job_template.go -------------------------------------------------------------------------------- /model/job_template_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/model/job_template_test.go -------------------------------------------------------------------------------- /model/job_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/model/job_test.go -------------------------------------------------------------------------------- /model/job_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/model/job_util.go -------------------------------------------------------------------------------- /model/job_util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/model/job_util_test.go -------------------------------------------------------------------------------- /model/loader/loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/model/loader/loader.go -------------------------------------------------------------------------------- /model/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/model/models.go -------------------------------------------------------------------------------- /model/models_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/model/models_test.go -------------------------------------------------------------------------------- /model/mustache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/model/mustache.go -------------------------------------------------------------------------------- /model/mustache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/model/mustache_test.go -------------------------------------------------------------------------------- /model/opinions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/model/opinions.go -------------------------------------------------------------------------------- /model/opinions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/model/opinions_test.go -------------------------------------------------------------------------------- /model/package.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/model/package.go -------------------------------------------------------------------------------- /model/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/model/package_test.go -------------------------------------------------------------------------------- /model/pod_security_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/model/pod_security_policy.go -------------------------------------------------------------------------------- /model/release.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/model/release.go -------------------------------------------------------------------------------- /model/release_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/model/release_config.go -------------------------------------------------------------------------------- /model/release_resolver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/model/release_resolver.go -------------------------------------------------------------------------------- /model/release_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/model/release_test.go -------------------------------------------------------------------------------- /model/releaseresolver/load_releases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/model/releaseresolver/load_releases.go -------------------------------------------------------------------------------- /model/releaseresolver/release_resolver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/model/releaseresolver/release_resolver.go -------------------------------------------------------------------------------- /model/resolver/resolve_role_manifest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/model/resolver/resolve_role_manifest_test.go -------------------------------------------------------------------------------- /model/resolver/resolver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/model/resolver/resolver.go -------------------------------------------------------------------------------- /model/resolver/resolver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/model/resolver/resolver_test.go -------------------------------------------------------------------------------- /model/resolver/validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/model/resolver/validation.go -------------------------------------------------------------------------------- /model/resolver/validation_role_run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/model/resolver/validation_role_run.go -------------------------------------------------------------------------------- /model/resolver/validation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/model/resolver/validation_test.go -------------------------------------------------------------------------------- /model/resolver/variables_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/model/resolver/variables_test.go -------------------------------------------------------------------------------- /model/role_run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/model/role_run.go -------------------------------------------------------------------------------- /model/roles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/model/roles.go -------------------------------------------------------------------------------- /model/variables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/model/variables.go -------------------------------------------------------------------------------- /mustache/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/mustache/LICENSE -------------------------------------------------------------------------------- /mustache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/mustache/README.md -------------------------------------------------------------------------------- /mustache/mustache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/mustache/mustache.go -------------------------------------------------------------------------------- /mustache/mustache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/mustache/mustache_test.go -------------------------------------------------------------------------------- /scripts/compilation/linux-compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/scripts/compilation/linux-compile.sh -------------------------------------------------------------------------------- /scripts/compilation/scripts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/scripts/compilation/scripts.go -------------------------------------------------------------------------------- /scripts/dockerfiles/Dockerfile-packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/scripts/dockerfiles/Dockerfile-packages -------------------------------------------------------------------------------- /scripts/dockerfiles/Dockerfile-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/scripts/dockerfiles/Dockerfile-release -------------------------------------------------------------------------------- /scripts/dockerfiles/Dockerfile-role: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/scripts/dockerfiles/Dockerfile-role -------------------------------------------------------------------------------- /scripts/dockerfiles/pre-stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/scripts/dockerfiles/pre-stop.sh -------------------------------------------------------------------------------- /scripts/dockerfiles/readiness-probe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/scripts/dockerfiles/readiness-probe.sh -------------------------------------------------------------------------------- /scripts/dockerfiles/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/scripts/dockerfiles/run.sh -------------------------------------------------------------------------------- /test-assets/bad-release/license.tgz: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test-assets/configgin/fake-configgin.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/configgin/fake-configgin.tgz -------------------------------------------------------------------------------- /test-assets/corrupt-releases/corrupt-package/config/blobs.yml: -------------------------------------------------------------------------------- 1 | --- {} 2 | -------------------------------------------------------------------------------- /test-assets/corrupt-releases/corrupt-package/dev_releases/bad-index-wrong-builds-key-type/index.yml: -------------------------------------------------------------------------------- 1 | --- 2 | builds: foo 3 | format-version: '2' 4 | -------------------------------------------------------------------------------- /test-assets/corrupt-releases/corrupt-package/jobs/bar/monit: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/corrupt-releases/corrupt-package/jobs/bar/templates/bar_ctl.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/corrupt-releases/corrupt-package/jobs/foo/monit: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/corrupt-releases/corrupt-package/jobs/foo/templates/foo_ctl.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/corrupt-releases/corrupt-package/jobs/ntpd/templates/ntp.conf.erb: -------------------------------------------------------------------------------- 1 | <%= p('ntp_conf') %> 2 | -------------------------------------------------------------------------------- /test-assets/corrupt-releases/corrupt-package/src/bar/bar.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/corrupt-releases/corrupt-package/src/foo/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/corrupt-releases/corrupt-package/src/ntp-4.2.8p2/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/extra-imports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/extra-imports.go -------------------------------------------------------------------------------- /test-assets/extracted-license/LICENSE: -------------------------------------------------------------------------------- 1 | LICENSE file contents -------------------------------------------------------------------------------- /test-assets/extracted-license/config/blobs.yml: -------------------------------------------------------------------------------- 1 | --- {} 2 | -------------------------------------------------------------------------------- /test-assets/extracted-license/config/final.yml: -------------------------------------------------------------------------------- 1 | --- 2 | final_name: test-dev 3 | -------------------------------------------------------------------------------- /test-assets/extracted-license/dev_releases/bad-index-wrong-builds-key-type/index.yml: -------------------------------------------------------------------------------- 1 | --- 2 | builds: foo 3 | format-version: '2' 4 | -------------------------------------------------------------------------------- /test-assets/extracted-license/jobs/bar/monit: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/extracted-license/jobs/bar/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/extracted-license/jobs/bar/spec -------------------------------------------------------------------------------- /test-assets/extracted-license/jobs/bar/templates/bar_ctl.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/extracted-license/jobs/foo/monit: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/extracted-license/jobs/foo/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/extracted-license/jobs/foo/spec -------------------------------------------------------------------------------- /test-assets/extracted-license/jobs/foo/templates/foo_ctl.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/extracted-license/src/bar/bar.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/extracted-license/src/foo/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/long-dep-chain/jobs/dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/long-dep-chain/license.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/long-dep-chain/license.tgz -------------------------------------------------------------------------------- /test-assets/long-dep-chain/packages/bar.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/long-dep-chain/packages/bar.tgz -------------------------------------------------------------------------------- /test-assets/long-dep-chain/packages/br.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/long-dep-chain/packages/br.tgz -------------------------------------------------------------------------------- /test-assets/long-dep-chain/packages/cf.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/long-dep-chain/packages/cf.tgz -------------------------------------------------------------------------------- /test-assets/long-dep-chain/packages/foo.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/long-dep-chain/packages/foo.tgz -------------------------------------------------------------------------------- /test-assets/long-dep-chain/packages/fubar.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/long-dep-chain/packages/fubar.tgz -------------------------------------------------------------------------------- /test-assets/long-dep-chain/packages/snafu.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/long-dep-chain/packages/snafu.tgz -------------------------------------------------------------------------------- /test-assets/long-dep-chain/release.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/long-dep-chain/release.MF -------------------------------------------------------------------------------- /test-assets/misc/empty.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/misc/empty.yml -------------------------------------------------------------------------------- /test-assets/missing-license/config/blobs.yml: -------------------------------------------------------------------------------- 1 | --- {} 2 | -------------------------------------------------------------------------------- /test-assets/missing-license/config/dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/missing-license/config/dev.yml -------------------------------------------------------------------------------- /test-assets/missing-license/dev_releases/bad-index-wrong-builds-key-type/index.yml: -------------------------------------------------------------------------------- 1 | --- 2 | builds: foo 3 | format-version: '2' 4 | -------------------------------------------------------------------------------- /test-assets/missing-license/jobs/bar/monit: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/missing-license/jobs/bar/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/missing-license/jobs/bar/spec -------------------------------------------------------------------------------- /test-assets/missing-license/jobs/bar/templates/bar_ctl.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/missing-license/jobs/foo/monit: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/missing-license/jobs/foo/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/missing-license/jobs/foo/spec -------------------------------------------------------------------------------- /test-assets/missing-license/jobs/foo/templates/foo_ctl.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/missing-license/packages/bar/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/missing-license/packages/bar/spec -------------------------------------------------------------------------------- /test-assets/missing-license/packages/foo/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/missing-license/packages/foo/spec -------------------------------------------------------------------------------- /test-assets/missing-license/src/bar/bar.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/missing-license/src/foo/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/mustache/partial.mustache: -------------------------------------------------------------------------------- 1 | {{Name}} -------------------------------------------------------------------------------- /test-assets/mustache/test1.mustache: -------------------------------------------------------------------------------- 1 | hello {{name}} -------------------------------------------------------------------------------- /test-assets/mustache/test2.mustache: -------------------------------------------------------------------------------- 1 | hello {{> partial}} -------------------------------------------------------------------------------- /test-assets/mustache/test3.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/mustache/test3.mustache -------------------------------------------------------------------------------- /test-assets/no-license/config/blobs.yml: -------------------------------------------------------------------------------- 1 | --- {} 2 | -------------------------------------------------------------------------------- /test-assets/no-license/config/final.yml: -------------------------------------------------------------------------------- 1 | --- 2 | final_name: test-dev 3 | -------------------------------------------------------------------------------- /test-assets/no-license/dev_releases/bad-index-wrong-builds-key-type/index.yml: -------------------------------------------------------------------------------- 1 | --- 2 | builds: foo 3 | format-version: '2' 4 | -------------------------------------------------------------------------------- /test-assets/no-license/jobs/bar/monit: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/no-license/jobs/bar/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/no-license/jobs/bar/spec -------------------------------------------------------------------------------- /test-assets/no-license/jobs/bar/templates/bar_ctl.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/no-license/jobs/foo/monit: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/no-license/jobs/foo/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/no-license/jobs/foo/spec -------------------------------------------------------------------------------- /test-assets/no-license/jobs/foo/templates/foo_ctl.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/no-license/packages/bar/packaging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/no-license/packages/bar/packaging -------------------------------------------------------------------------------- /test-assets/no-license/packages/bar/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/no-license/packages/bar/spec -------------------------------------------------------------------------------- /test-assets/no-license/packages/foo/packaging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/no-license/packages/foo/packaging -------------------------------------------------------------------------------- /test-assets/no-license/packages/foo/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/no-license/packages/foo/spec -------------------------------------------------------------------------------- /test-assets/no-license/src/bar/bar.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/no-license/src/foo/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/ntp-final-release/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/ntp-final-release/LICENSE -------------------------------------------------------------------------------- /test-assets/ntp-final-release/jobs/ntpd.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/ntp-final-release/jobs/ntpd.tgz -------------------------------------------------------------------------------- /test-assets/ntp-final-release/license.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/ntp-final-release/license.tgz -------------------------------------------------------------------------------- /test-assets/ntp-final-release/packages/ntp.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/ntp-final-release/packages/ntp.tgz -------------------------------------------------------------------------------- /test-assets/ntp-final-release/release.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/ntp-final-release/release.MF -------------------------------------------------------------------------------- /test-assets/ntp-opinions/dark-opinions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/ntp-opinions/dark-opinions.yml -------------------------------------------------------------------------------- /test-assets/ntp-opinions/opinions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/ntp-opinions/opinions.yml -------------------------------------------------------------------------------- /test-assets/ntp-release/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/ntp-release/LICENSE -------------------------------------------------------------------------------- /test-assets/ntp-release/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/ntp-release/README.md -------------------------------------------------------------------------------- /test-assets/ntp-release/config/blobs.yml: -------------------------------------------------------------------------------- 1 | --- {} 2 | -------------------------------------------------------------------------------- /test-assets/ntp-release/config/dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/ntp-release/config/dev.yml -------------------------------------------------------------------------------- /test-assets/ntp-release/config/final.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/ntp-release/config/final.yml -------------------------------------------------------------------------------- /test-assets/ntp-release/jobs/ntpd/monit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/ntp-release/jobs/ntpd/monit -------------------------------------------------------------------------------- /test-assets/ntp-release/jobs/ntpd/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/ntp-release/jobs/ntpd/spec -------------------------------------------------------------------------------- /test-assets/ntp-release/jobs/ntpd/templates/ntp.conf.erb: -------------------------------------------------------------------------------- 1 | <%= p('ntp_conf') %> 2 | -------------------------------------------------------------------------------- /test-assets/ntp-release/releases/ntp/index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/ntp-release/releases/ntp/index.yml -------------------------------------------------------------------------------- /test-assets/ntp-release/releases/ntp/ntp-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/ntp-release/releases/ntp/ntp-1.yml -------------------------------------------------------------------------------- /test-assets/ntp-release/releases/ntp/ntp-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/ntp-release/releases/ntp/ntp-2.yml -------------------------------------------------------------------------------- /test-assets/ntp-release/src/ntp-4.2.8p2/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/role-manifests/app/no-instance-groups/scripts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/role-manifests/app/scripts/myrole.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/role-manifests/app/two-roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/role-manifests/app/two-roles.yml -------------------------------------------------------------------------------- /test-assets/role-manifests/app/validation/scripts/myrole.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/role-manifests/builder/scripts/environ.sh: -------------------------------------------------------------------------------- 1 | exit 0 -------------------------------------------------------------------------------- /test-assets/role-manifests/builder/scripts/myrole.sh: -------------------------------------------------------------------------------- 1 | exit 0 -------------------------------------------------------------------------------- /test-assets/role-manifests/builder/scripts/post_config_script.sh: -------------------------------------------------------------------------------- 1 | exit 0 -------------------------------------------------------------------------------- /test-assets/role-manifests/kube/jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/role-manifests/kube/jobs.yml -------------------------------------------------------------------------------- /test-assets/role-manifests/kube/myrole.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/role-manifests/kube/pods.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/role-manifests/kube/pods.yml -------------------------------------------------------------------------------- /test-assets/role-manifests/kube/volumes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/role-manifests/kube/volumes.yml -------------------------------------------------------------------------------- /test-assets/role-manifests/model/bad-type.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/role-manifests/model/bad-type.yml -------------------------------------------------------------------------------- /test-assets/role-manifests/model/scripts/environ.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/role-manifests/model/scripts/myrole.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/role-manifests/model/scripts/nested/run.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/role-manifests/model/scripts/post_config_script.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/role-manifests/model/tor-bad.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/role-manifests/model/tor-bad.yml -------------------------------------------------------------------------------- /test-assets/role-manifests/model/tor-good.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/role-manifests/model/tor-good.yml -------------------------------------------------------------------------------- /test-assets/scripts/compilation/fail-compile.sh: -------------------------------------------------------------------------------- 1 | exit 1 -------------------------------------------------------------------------------- /test-assets/scripts/compilation/fail-prerequisites.sh: -------------------------------------------------------------------------------- 1 | exit 1 -------------------------------------------------------------------------------- /test-assets/scripts/compilation/fake-compile.sh: -------------------------------------------------------------------------------- 1 | echo "test" > /fissile-out/dummy-artifact 2 | exit 0 -------------------------------------------------------------------------------- /test-assets/scripts/compilation/fake-prerequisites.sh: -------------------------------------------------------------------------------- 1 | exit 0 -------------------------------------------------------------------------------- /test-assets/tarReadTest.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/tarReadTest.tar.gz -------------------------------------------------------------------------------- /test-assets/test-dev-config-diff/cf-release-215/config/blobs.yml: -------------------------------------------------------------------------------- 1 | --- {} 2 | -------------------------------------------------------------------------------- /test-assets/test-dev-release-missing-dev-name/config/blobs.yml: -------------------------------------------------------------------------------- 1 | --- {} 2 | -------------------------------------------------------------------------------- /test-assets/test-dev-release-missing-dev-name/config/final.yml: -------------------------------------------------------------------------------- 1 | final_name: test-final 2 | -------------------------------------------------------------------------------- /test-assets/test-dev-release-missing-final-name/config/blobs.yml: -------------------------------------------------------------------------------- 1 | --- {} 2 | -------------------------------------------------------------------------------- /test-assets/test-dev-release-missing-final-name/config/final.yml: -------------------------------------------------------------------------------- 1 | final_name_foo: test-final 2 | -------------------------------------------------------------------------------- /test-assets/test-dev-release-wrong-final-name-type/config/blobs.yml: -------------------------------------------------------------------------------- 1 | --- {} 2 | -------------------------------------------------------------------------------- /test-assets/test-dev-release-wrong-final-name-type/config/final.yml: -------------------------------------------------------------------------------- 1 | --- 2 | final_name: 0 3 | -------------------------------------------------------------------------------- /test-assets/test-dev-release/config/blobs.yml: -------------------------------------------------------------------------------- 1 | --- {} 2 | -------------------------------------------------------------------------------- /test-assets/test-dev-release/config/final.yml: -------------------------------------------------------------------------------- 1 | --- 2 | final_name: test-dev 3 | -------------------------------------------------------------------------------- /test-assets/test-dev-release/dev_releases/bad-index-wrong-builds-key-type/index.yml: -------------------------------------------------------------------------------- 1 | --- 2 | builds: foo 3 | format-version: '2' 4 | -------------------------------------------------------------------------------- /test-assets/test-dev-release/jobs/bar/monit: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/test-dev-release/jobs/bar/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/test-dev-release/jobs/bar/spec -------------------------------------------------------------------------------- /test-assets/test-dev-release/jobs/bar/templates/bar_ctl.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/test-dev-release/jobs/foo/monit: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/test-dev-release/jobs/foo/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/test-dev-release/jobs/foo/spec -------------------------------------------------------------------------------- /test-assets/test-dev-release/jobs/foo/templates/foo_ctl.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/test-dev-release/packages/bar/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/test-dev-release/packages/bar/spec -------------------------------------------------------------------------------- /test-assets/test-dev-release/packages/foo/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/test-dev-release/packages/foo/spec -------------------------------------------------------------------------------- /test-assets/test-dev-release/src/bar/bar.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/test-dev-release/src/foo/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/test-final-release/LICENSE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/test-final-release/jobs/bar.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/test-final-release/jobs/bar.tgz -------------------------------------------------------------------------------- /test-assets/test-final-release/jobs/foo.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/test-final-release/jobs/foo.tgz -------------------------------------------------------------------------------- /test-assets/test-final-release/release.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/test-final-release/release.MF -------------------------------------------------------------------------------- /test-assets/test-opinions/dark-opinions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/test-opinions/dark-opinions.yml -------------------------------------------------------------------------------- /test-assets/test-opinions/good-opinions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/test-opinions/good-opinions.yml -------------------------------------------------------------------------------- /test-assets/test-opinions/opinions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/test-opinions/opinions.yml -------------------------------------------------------------------------------- /test-assets/tor-boshrelease-fake-compiled/4d51b43d077ed5a7b7ae4fb200aeb216b7736a96/588f9c8e2a0abf31fac8416fbe8560df3173fb5b/compiled/foo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/tor-boshrelease-fake-compiled/4d51b43d077ed5a7b7ae4fb200aeb216b7736a96/59523b1cc4042dff1217ab5b79ff885cdd2de032/compiled/bar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/tor-boshrelease-fake-compiled/4d51b43d077ed5a7b7ae4fb200aeb216b7736a96/b9973278a447dfb5e8e67661deaa5fe7001ad742/compiled/bar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/tor-boshrelease-fake-compiled/4d51b43d077ed5a7b7ae4fb200aeb216b7736a96/e3fb8ab976aca9b9ea2a6b28b76506f0130ba296/compiled/foo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/tor-boshrelease/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/tor-boshrelease/LICENSE -------------------------------------------------------------------------------- /test-assets/tor-boshrelease/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/tor-boshrelease/README.md -------------------------------------------------------------------------------- /test-assets/tor-boshrelease/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/tor-boshrelease/Rakefile -------------------------------------------------------------------------------- /test-assets/tor-boshrelease/ci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/tor-boshrelease/ci/README.md -------------------------------------------------------------------------------- /test-assets/tor-boshrelease/ci/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/tor-boshrelease/ci/pipeline.yml -------------------------------------------------------------------------------- /test-assets/tor-boshrelease/config/blobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/tor-boshrelease/config/blobs.yml -------------------------------------------------------------------------------- /test-assets/tor-boshrelease/config/dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/tor-boshrelease/config/dev.yml -------------------------------------------------------------------------------- /test-assets/tor-boshrelease/config/final.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/tor-boshrelease/config/final.yml -------------------------------------------------------------------------------- /test-assets/tor-boshrelease/jobs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/tor-boshrelease/jobs/hashmat/monit: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/tor-boshrelease/jobs/hashmat/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/tor-boshrelease/jobs/hashmat/spec -------------------------------------------------------------------------------- /test-assets/tor-boshrelease/jobs/new_hostname/monit: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/tor-boshrelease/jobs/new_hostname/templates/config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/tor-boshrelease/jobs/tor/monit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/tor-boshrelease/jobs/tor/monit -------------------------------------------------------------------------------- /test-assets/tor-boshrelease/jobs/tor/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/tor-boshrelease/jobs/tor/spec -------------------------------------------------------------------------------- /test-assets/tor-boshrelease/jobs/tor/templates/config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/tor-boshrelease/jobs/tor/templates/hidden_service/client_keys.erb: -------------------------------------------------------------------------------- 1 | <%= p("tor.client_keys", "") %> 2 | -------------------------------------------------------------------------------- /test-assets/tor-boshrelease/jobs/tor/templates/hidden_service/hostname.erb: -------------------------------------------------------------------------------- 1 | <%= p("tor.hostname") %> 2 | -------------------------------------------------------------------------------- /test-assets/tor-boshrelease/jobs/tor/templates/hidden_service/private_key.erb: -------------------------------------------------------------------------------- 1 | <%= p("tor.private_key") %> 2 | -------------------------------------------------------------------------------- /test-assets/tor-boshrelease/packages/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/tor-boshrelease/packages/tor/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/tor-boshrelease/packages/tor/spec -------------------------------------------------------------------------------- /test-assets/tor-boshrelease/src/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-assets/tor-boshrelease/templates/jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/tor-boshrelease/templates/jobs.yml -------------------------------------------------------------------------------- /test-assets/tor-boshrelease/templates/stub.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/tor-boshrelease/templates/stub.yml -------------------------------------------------------------------------------- /test-assets/tor-opinions/dark-opinions.yml: -------------------------------------------------------------------------------- 1 | --- 2 | properties: 3 | tor.hashed_control_password: mines 4 | -------------------------------------------------------------------------------- /test-assets/tor-opinions/opinions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/test-assets/tor-opinions/opinions.yml -------------------------------------------------------------------------------- /testhelpers/serialization_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/testhelpers/serialization_helper.go -------------------------------------------------------------------------------- /util/download_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/util/download_file.go -------------------------------------------------------------------------------- /util/download_file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/util/download_file_test.go -------------------------------------------------------------------------------- /util/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/util/hash.go -------------------------------------------------------------------------------- /util/hash_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/util/hash_test.go -------------------------------------------------------------------------------- /util/model_grapher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/util/model_grapher.go -------------------------------------------------------------------------------- /util/name_sanitization.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/util/name_sanitization.go -------------------------------------------------------------------------------- /util/name_sanitization_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/util/name_sanitization_test.go -------------------------------------------------------------------------------- /util/name_to_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/util/name_to_key.go -------------------------------------------------------------------------------- /util/name_to_key_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/util/name_to_key_test.go -------------------------------------------------------------------------------- /util/serialization_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/util/serialization_helper.go -------------------------------------------------------------------------------- /util/serialization_helper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/util/serialization_helper_test.go -------------------------------------------------------------------------------- /util/string_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/util/string_utils.go -------------------------------------------------------------------------------- /util/string_utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/util/string_utils_test.go -------------------------------------------------------------------------------- /util/synced_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/util/synced_writer.go -------------------------------------------------------------------------------- /util/tar_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/util/tar_helper.go -------------------------------------------------------------------------------- /util/tar_helper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/util/tar_helper_test.go -------------------------------------------------------------------------------- /util/tempdir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/util/tempdir.go -------------------------------------------------------------------------------- /util/tempdir_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/util/tempdir_darwin.go -------------------------------------------------------------------------------- /util/validate_path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/util/validate_path.go -------------------------------------------------------------------------------- /util/validate_path_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/util/validate_path_test.go -------------------------------------------------------------------------------- /validation/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/validation/errors.go -------------------------------------------------------------------------------- /validation/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/validation/errors_test.go -------------------------------------------------------------------------------- /validation/rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/validation/rules.go -------------------------------------------------------------------------------- /validation/validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/validation/validation.go -------------------------------------------------------------------------------- /validation/validation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/validation/validation_test.go -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/cloud.google.com/go/AUTHORS -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/cloud.google.com/go/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/cloud.google.com/go/LICENSE -------------------------------------------------------------------------------- /vendor/code.cloudfoundry.org/archiver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/code.cloudfoundry.org/archiver/LICENSE -------------------------------------------------------------------------------- /vendor/code.cloudfoundry.org/archiver/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/code.cloudfoundry.org/archiver/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/Azure/azure-sdk-for-go/storage/version.go: -------------------------------------------------------------------------------- 1 | package storage 2 | 3 | var ( 4 | sdkVersion = "10.0.2" 5 | ) 6 | -------------------------------------------------------------------------------- /vendor/github.com/Azure/go-ansiterm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/Azure/go-ansiterm/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/Azure/go-ansiterm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/Azure/go-ansiterm/README.md -------------------------------------------------------------------------------- /vendor/github.com/Azure/go-ansiterm/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/Azure/go-ansiterm/context.go -------------------------------------------------------------------------------- /vendor/github.com/Azure/go-ansiterm/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/Azure/go-ansiterm/parser.go -------------------------------------------------------------------------------- /vendor/github.com/Azure/go-ansiterm/states.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/Azure/go-ansiterm/states.go -------------------------------------------------------------------------------- /vendor/github.com/Azure/go-autorest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/Azure/go-autorest/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/semver/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/Masterminds/semver/doc.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/sprig/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | /.glide 3 | -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/sprig/date.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/Masterminds/sprig/date.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/sprig/dict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/Masterminds/sprig/dict.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/sprig/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/Masterminds/sprig/doc.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/sprig/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/Masterminds/sprig/list.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/ea.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/Microsoft/go-winio/ea.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/sd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/Microsoft/go-winio/sd.go -------------------------------------------------------------------------------- /vendor/github.com/Nvveen/Gotty/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/Nvveen/Gotty/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/Nvveen/Gotty/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/Nvveen/Gotty/README -------------------------------------------------------------------------------- /vendor/github.com/Nvveen/Gotty/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/Nvveen/Gotty/TODO -------------------------------------------------------------------------------- /vendor/github.com/Nvveen/Gotty/gotty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/Nvveen/Gotty/gotty.go -------------------------------------------------------------------------------- /vendor/github.com/Nvveen/Gotty/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/Nvveen/Gotty/parser.go -------------------------------------------------------------------------------- /vendor/github.com/Nvveen/Gotty/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/Nvveen/Gotty/types.go -------------------------------------------------------------------------------- /vendor/github.com/SUSE/stampy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/SUSE/stampy/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/SUSE/stampy/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/SUSE/stampy/LICENSE.md -------------------------------------------------------------------------------- /vendor/github.com/SUSE/stampy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/SUSE/stampy/Makefile -------------------------------------------------------------------------------- /vendor/github.com/SUSE/stampy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/SUSE/stampy/README.md -------------------------------------------------------------------------------- /vendor/github.com/SUSE/stampy/VERSION: -------------------------------------------------------------------------------- 1 | 0.0.0 2 | -------------------------------------------------------------------------------- /vendor/github.com/SUSE/stampy/glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/SUSE/stampy/glide.lock -------------------------------------------------------------------------------- /vendor/github.com/SUSE/stampy/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/SUSE/stampy/glide.yaml -------------------------------------------------------------------------------- /vendor/github.com/SUSE/stampy/stampy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/SUSE/stampy/stampy.go -------------------------------------------------------------------------------- /vendor/github.com/SUSE/termui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/SUSE/termui/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/SUSE/termui/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/SUSE/termui/LICENSE.md -------------------------------------------------------------------------------- /vendor/github.com/SUSE/termui/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/SUSE/termui/Makefile -------------------------------------------------------------------------------- /vendor/github.com/SUSE/termui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/SUSE/termui/README.md -------------------------------------------------------------------------------- /vendor/github.com/SUSE/termui/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/SUSE/termui/table.go -------------------------------------------------------------------------------- /vendor/github.com/SUSE/termui/ui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/SUSE/termui/ui.go -------------------------------------------------------------------------------- /vendor/github.com/VividCortex/ewma/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .*.sw? 3 | -------------------------------------------------------------------------------- /vendor/github.com/VividCortex/ewma/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/VividCortex/ewma/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/VividCortex/ewma/ewma.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/VividCortex/ewma/ewma.go -------------------------------------------------------------------------------- /vendor/github.com/aokoli/goutils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/aokoli/goutils/README.md -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/aws/aws-sdk-go/NOTICE.txt -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go/aws/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/aws/aws-sdk-go/aws/doc.go -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go/aws/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/aws/aws-sdk-go/aws/url.go -------------------------------------------------------------------------------- /vendor/github.com/cyphar/filepath-securejoin/VERSION: -------------------------------------------------------------------------------- 1 | 0.2.2 2 | -------------------------------------------------------------------------------- /vendor/github.com/cyphar/filepath-securejoin/vendor.conf: -------------------------------------------------------------------------------- 1 | github.com/pkg/errors v0.8.0 2 | -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/davecgh/go-spew/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | bin 3 | 4 | 5 | -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/dgrijalva/jwt-go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/dgrijalva/jwt-go/doc.go -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/ecdsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/dgrijalva/jwt-go/ecdsa.go -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/hmac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/dgrijalva/jwt-go/hmac.go -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/none.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/dgrijalva/jwt-go/none.go -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/rsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/dgrijalva/jwt-go/rsa.go -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/dgrijalva/jwt-go/token.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/docker/docker/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/docker/docker/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/docker/docker/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/integration-cli/fixtures/https/ca.pem: -------------------------------------------------------------------------------- 1 | ../../../integration/testdata/https/ca.pem -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/integration-cli/fixtures/https/client-cert.pem: -------------------------------------------------------------------------------- 1 | ../../../integration/testdata/https/client-cert.pem -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/integration-cli/fixtures/https/client-key.pem: -------------------------------------------------------------------------------- 1 | ../../../integration/testdata/https/client-key.pem -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/integration-cli/fixtures/https/server-cert.pem: -------------------------------------------------------------------------------- 1 | ../../../integration/testdata/https/server-cert.pem -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/integration-cli/fixtures/https/server-key.pem: -------------------------------------------------------------------------------- 1 | ../../../integration/testdata/https/server-key.pem -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/opts/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/docker/docker/opts/env.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/opts/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/docker/docker/opts/ip.go -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/docker/go-units/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/docker/go-units/README.md -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/size.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/docker/go-units/size.go -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/ulimit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/docker/go-units/ulimit.go -------------------------------------------------------------------------------- /vendor/github.com/docker/libnetwork/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/docker/libnetwork/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/dsnet/compress/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/dsnet/compress/LICENSE.md -------------------------------------------------------------------------------- /vendor/github.com/dsnet/compress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/dsnet/compress/README.md -------------------------------------------------------------------------------- /vendor/github.com/dsnet/compress/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/dsnet/compress/api.go -------------------------------------------------------------------------------- /vendor/github.com/dsnet/compress/zbench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/dsnet/compress/zbench.sh -------------------------------------------------------------------------------- /vendor/github.com/dsnet/compress/zfuzz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/dsnet/compress/zfuzz.sh -------------------------------------------------------------------------------- /vendor/github.com/dsnet/compress/zprof.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/dsnet/compress/zprof.sh -------------------------------------------------------------------------------- /vendor/github.com/dsnet/compress/ztest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/dsnet/compress/ztest.sh -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 1.3 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/fatih/color/LICENSE.md -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/fatih/color/README.md -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/fatih/color/color.go -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/fatih/color/doc.go -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/fsnotify/fsnotify/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/fsnotify/fsnotify/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/fen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/fsnotify/fsnotify/fen.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/gogo/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/gogo/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/golang/glog/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/golang/glog/README -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/glog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/golang/glog/glog.go -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/glog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/golang/glog/glog_file.go -------------------------------------------------------------------------------- /vendor/github.com/golang/mock/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/golang/mock/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/golang/mock/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/golang/mock/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/golang/mock/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/golang/mock/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/golang/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/snappy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/golang/snappy/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/golang/snappy/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/golang/snappy/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/golang/snappy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/golang/snappy/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/snappy/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/golang/snappy/README -------------------------------------------------------------------------------- /vendor/github.com/golang/snappy/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/golang/snappy/decode.go -------------------------------------------------------------------------------- /vendor/github.com/golang/snappy/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/golang/snappy/encode.go -------------------------------------------------------------------------------- /vendor/github.com/golang/snappy/snappy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/golang/snappy/snappy.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/google/uuid/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/google/uuid/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/google/uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/google/uuid/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/google/uuid/dce.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/google/uuid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/google/uuid/hash.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/google/uuid/marshal.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/google/uuid/node.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node_js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/google/uuid/node_js.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node_net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/google/uuid/node_net.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/google/uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/google/uuid/time.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/google/uuid/util.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/google/uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/google/uuid/version1.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/google/uuid/version4.go -------------------------------------------------------------------------------- /vendor/github.com/gosuri/uilive/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/gosuri/uilive/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/gosuri/uilive/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/gosuri/uilive/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gosuri/uilive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/gosuri/uilive/README.md -------------------------------------------------------------------------------- /vendor/github.com/gosuri/uilive/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/gosuri/uilive/doc.go -------------------------------------------------------------------------------- /vendor/github.com/gosuri/uilive/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/gosuri/uilive/writer.go -------------------------------------------------------------------------------- /vendor/github.com/gosuri/uiprogress/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/gosuri/uiprogress/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gosuri/uiprogress/bar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/gosuri/uiprogress/bar.go -------------------------------------------------------------------------------- /vendor/github.com/gosuri/uiprogress/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/gosuri/uiprogress/doc.go -------------------------------------------------------------------------------- /vendor/github.com/graymeta/stow/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/graymeta/stow/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/graymeta/stow/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/graymeta/stow/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/graymeta/stow/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/graymeta/stow/Gopkg.lock -------------------------------------------------------------------------------- /vendor/github.com/graymeta/stow/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/graymeta/stow/Gopkg.toml -------------------------------------------------------------------------------- /vendor/github.com/graymeta/stow/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/graymeta/stow/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/graymeta/stow/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/graymeta/stow/Makefile -------------------------------------------------------------------------------- /vendor/github.com/graymeta/stow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/graymeta/stow/README.md -------------------------------------------------------------------------------- /vendor/github.com/graymeta/stow/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/graymeta/stow/doc.go -------------------------------------------------------------------------------- /vendor/github.com/graymeta/stow/s3/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/graymeta/stow/s3/doc.go -------------------------------------------------------------------------------- /vendor/github.com/graymeta/stow/s3/item.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/graymeta/stow/s3/item.go -------------------------------------------------------------------------------- /vendor/github.com/graymeta/stow/stow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/graymeta/stow/stow.go -------------------------------------------------------------------------------- /vendor/github.com/graymeta/stow/walk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/graymeta/stow/walk.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/errwrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/hashicorp/errwrap/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/errwrap/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/hashicorp/errwrap 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/hashicorp/hcl/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/hashicorp/hcl/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/hashicorp/hcl/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/hashicorp/hcl/Makefile -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/hashicorp/hcl/README.md -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/decoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/hashicorp/hcl/decoder.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/hashicorp/hcl/go.mod -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/hashicorp/hcl/go.sum -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/hashicorp/hcl/hcl.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/hashicorp/hcl/lex.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/hashicorp/hcl/parse.go -------------------------------------------------------------------------------- /vendor/github.com/huandu/xstrings/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /vendor/github.com/huandu/xstrings/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/huandu/xstrings/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/huandu/xstrings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/huandu/xstrings/README.md -------------------------------------------------------------------------------- /vendor/github.com/huandu/xstrings/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/huandu/xstrings/common.go -------------------------------------------------------------------------------- /vendor/github.com/huandu/xstrings/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/huandu/xstrings/count.go -------------------------------------------------------------------------------- /vendor/github.com/huandu/xstrings/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/huandu/xstrings/doc.go -------------------------------------------------------------------------------- /vendor/github.com/huandu/xstrings/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/huandu/xstrings/format.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/imdario/mergo/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/imdario/mergo/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/imdario/mergo/README.md -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/imdario/mergo/doc.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/imdario/mergo/map.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/imdario/mergo/merge.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/mergo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/imdario/mergo/mergo.go -------------------------------------------------------------------------------- /vendor/github.com/jimmysawczuk/worker/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /vendor/github.com/konsorten/go-windows-terminal-sequences/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/konsorten/go-windows-terminal-sequences 2 | -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/mattn/go-isatty/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/mattn/go-isatty/README.md -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/mattn/go-isatty/doc.go -------------------------------------------------------------------------------- /vendor/github.com/mholt/archiver/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/mholt/archiver/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/mholt/archiver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/mholt/archiver/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mholt/archiver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/mholt/archiver/README.md -------------------------------------------------------------------------------- /vendor/github.com/mholt/archiver/build.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/mholt/archiver/build.bash -------------------------------------------------------------------------------- /vendor/github.com/mholt/archiver/rar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/mholt/archiver/rar.go -------------------------------------------------------------------------------- /vendor/github.com/mholt/archiver/tar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/mholt/archiver/tar.go -------------------------------------------------------------------------------- /vendor/github.com/mholt/archiver/tarbz2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/mholt/archiver/tarbz2.go -------------------------------------------------------------------------------- /vendor/github.com/mholt/archiver/targz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/mholt/archiver/targz.go -------------------------------------------------------------------------------- /vendor/github.com/mholt/archiver/tarlz4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/mholt/archiver/tarlz4.go -------------------------------------------------------------------------------- /vendor/github.com/mholt/archiver/tarsz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/mholt/archiver/tarsz.go -------------------------------------------------------------------------------- /vendor/github.com/mholt/archiver/tarxz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/mholt/archiver/tarxz.go -------------------------------------------------------------------------------- /vendor/github.com/mholt/archiver/zip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/mholt/archiver/zip.go -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/mapstructure/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mitchellh/mapstructure 2 | -------------------------------------------------------------------------------- /vendor/github.com/ncw/swift/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.pyc 3 | test-env* 4 | junk/ -------------------------------------------------------------------------------- /vendor/github.com/ncw/swift/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/ncw/swift/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/ncw/swift/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/ncw/swift/COPYING -------------------------------------------------------------------------------- /vendor/github.com/ncw/swift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/ncw/swift/README.md -------------------------------------------------------------------------------- /vendor/github.com/ncw/swift/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/ncw/swift/auth.go -------------------------------------------------------------------------------- /vendor/github.com/ncw/swift/auth_v3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/ncw/swift/auth_v3.go -------------------------------------------------------------------------------- /vendor/github.com/ncw/swift/dlo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/ncw/swift/dlo.go -------------------------------------------------------------------------------- /vendor/github.com/ncw/swift/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/ncw/swift/doc.go -------------------------------------------------------------------------------- /vendor/github.com/ncw/swift/largeobjects.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/ncw/swift/largeobjects.go -------------------------------------------------------------------------------- /vendor/github.com/ncw/swift/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/ncw/swift/meta.go -------------------------------------------------------------------------------- /vendor/github.com/ncw/swift/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/ncw/swift/notes.txt -------------------------------------------------------------------------------- /vendor/github.com/ncw/swift/slo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/ncw/swift/slo.go -------------------------------------------------------------------------------- /vendor/github.com/ncw/swift/swift.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/ncw/swift/swift.go -------------------------------------------------------------------------------- /vendor/github.com/nwaples/rardecode/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/nwaples/rardecode/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/nwaples/rardecode/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/nwaples/rardecode 2 | -------------------------------------------------------------------------------- /vendor/github.com/nwaples/rardecode/vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/nwaples/rardecode/vm.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/pborman/uuid/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/pborman/uuid/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/pborman/uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/pborman/uuid/README.md -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/pborman/uuid/dce.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/pborman/uuid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/pborman/uuid/hash.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/pborman/uuid/marshal.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/pborman/uuid/node.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/pborman/uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/pborman/uuid/time.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/pborman/uuid/util.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/pborman/uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/version1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/pborman/uuid/version1.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/version4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/pborman/uuid/version4.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/pelletier/go-toml/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/pelletier/go-toml/doc.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/pelletier/go-toml/fuzz.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/fuzz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/pelletier/go-toml/fuzz.sh -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/pelletier/go-toml/test.sh -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/toml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/pelletier/go-toml/toml.go -------------------------------------------------------------------------------- /vendor/github.com/pierrec/lz4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/pierrec/lz4/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/pierrec/lz4/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/pierrec/lz4/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/pierrec/lz4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/pierrec/lz4/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pierrec/lz4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/pierrec/lz4/README.md -------------------------------------------------------------------------------- /vendor/github.com/pierrec/lz4/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/pierrec/lz4/block.go -------------------------------------------------------------------------------- /vendor/github.com/pierrec/lz4/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/pierrec/lz4/debug.go -------------------------------------------------------------------------------- /vendor/github.com/pierrec/lz4/debug_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/pierrec/lz4/debug_stub.go -------------------------------------------------------------------------------- /vendor/github.com/pierrec/lz4/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/pierrec/lz4/go.mod -------------------------------------------------------------------------------- /vendor/github.com/pierrec/lz4/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/pierrec/lz4/go.sum -------------------------------------------------------------------------------- /vendor/github.com/pierrec/lz4/lz4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/pierrec/lz4/lz4.go -------------------------------------------------------------------------------- /vendor/github.com/pierrec/lz4/lz4_go1.10.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/pierrec/lz4/lz4_go1.10.go -------------------------------------------------------------------------------- /vendor/github.com/pierrec/lz4/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/pierrec/lz4/reader.go -------------------------------------------------------------------------------- /vendor/github.com/pierrec/lz4/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/pierrec/lz4/writer.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/pkg/errors/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/pkg/errors/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/pkg/errors/README.md -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/pkg/errors/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/pkg/errors/errors.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/pkg/errors/stack.go -------------------------------------------------------------------------------- /vendor/github.com/russross/blackfriday/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/russross/blackfriday 2 | -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/satori/go.uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/satori/go.uuid/README.md -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/satori/go.uuid/codec.go -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/satori/go.uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/satori/go.uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/satori/uuid/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/satori/uuid/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/satori/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/satori/uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/satori/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/satori/uuid/README.md -------------------------------------------------------------------------------- /vendor/github.com/satori/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/satori/uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/shiena/ansicolor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/shiena/ansicolor/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | vendor 3 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/sirupsen/logrus/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/sirupsen/logrus/README.md -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/sirupsen/logrus/doc.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/sirupsen/logrus/entry.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/sirupsen/logrus/go.mod -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/sirupsen/logrus/go.sum -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/sirupsen/logrus/hooks.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/sirupsen/logrus/logger.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/logrus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/sirupsen/logrus/logrus.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/sirupsen/logrus/writer.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/afero/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/afero/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/afero/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/afero.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/afero/afero.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/afero/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/basepath.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/afero/basepath.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/const_bsds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/afero/const_bsds.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/spf13/afero 2 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/httpFs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/afero/httpFs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/ioutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/afero/ioutil.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/lstater.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/afero/lstater.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/afero/match.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/mem/dir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/afero/mem/dir.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/mem/dirmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/afero/mem/dirmap.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/mem/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/afero/mem/file.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/memmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/afero/memmap.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/os.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/afero/os.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/afero/path.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/readonlyfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/afero/readonlyfs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/regexpfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/afero/regexpfs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/unionFile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/afero/unionFile.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/afero/util.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/cast/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/cast/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/cast/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/cast/Makefile -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/cast/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/cast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/cast/cast.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/caste.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/cast/caste.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/cast/go.mod -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/cast/go.sum -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/cobra/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/cobra/.mailmap -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/cobra/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/cobra/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/cobra/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/cobra/args.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/cobra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/cobra/cobra.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/cobra/command.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/command_notwin.go: -------------------------------------------------------------------------------- 1 | // +build !windows 2 | 3 | package cobra 4 | 5 | var preExecHookFn func(*Command) 6 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/doc/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/cobra/doc/util.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/jwalterweatherman/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/spf13/jwalterweatherman 2 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/pflag/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/pflag/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/pflag/bool_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/pflag/bytes.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/pflag/duration.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/pflag/float32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/pflag/float64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/golangflag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/pflag/golangflag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/pflag/int16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/pflag/int_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/pflag/ip_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipmask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/pflag/ipmask.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/pflag/string.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/pflag/uint16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/pflag/uint32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/pflag/uint64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/pflag/uint_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/viper/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/viper/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/viper/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/viper/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/viper/flags.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/viper/go.mod -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/viper/go.sum -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/viper/util.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/viper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/spf13/viper/viper.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/stretchr/testify/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/termie/go-shutil/.gitignore: -------------------------------------------------------------------------------- 1 | test/testfile3 2 | -------------------------------------------------------------------------------- /vendor/github.com/termie/go-shutil/LICENSE: -------------------------------------------------------------------------------- 1 | I guess Python's? If that doesn't apply then MIT. Have fun. 2 | -------------------------------------------------------------------------------- /vendor/github.com/ulikunitz/xz/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/ulikunitz/xz/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/ulikunitz/xz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/ulikunitz/xz/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/ulikunitz/xz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/ulikunitz/xz/README.md -------------------------------------------------------------------------------- /vendor/github.com/ulikunitz/xz/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/ulikunitz/xz/TODO.md -------------------------------------------------------------------------------- /vendor/github.com/ulikunitz/xz/bits.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/ulikunitz/xz/bits.go -------------------------------------------------------------------------------- /vendor/github.com/ulikunitz/xz/crc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/ulikunitz/xz/crc.go -------------------------------------------------------------------------------- /vendor/github.com/ulikunitz/xz/example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/ulikunitz/xz/example.go -------------------------------------------------------------------------------- /vendor/github.com/ulikunitz/xz/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/ulikunitz/xz/format.go -------------------------------------------------------------------------------- /vendor/github.com/ulikunitz/xz/fox.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/ulikunitz/xz/fox.xz -------------------------------------------------------------------------------- /vendor/github.com/ulikunitz/xz/lzma/prob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/ulikunitz/xz/lzma/prob.go -------------------------------------------------------------------------------- /vendor/github.com/ulikunitz/xz/make-docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/ulikunitz/xz/make-docs -------------------------------------------------------------------------------- /vendor/github.com/ulikunitz/xz/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/ulikunitz/xz/reader.go -------------------------------------------------------------------------------- /vendor/github.com/ulikunitz/xz/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/ulikunitz/xz/writer.go -------------------------------------------------------------------------------- /vendor/github.com/vbauerster/mpb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/vbauerster/mpb/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/vbauerster/mpb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/vbauerster/mpb/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/vbauerster/mpb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/vbauerster/mpb/README.md -------------------------------------------------------------------------------- /vendor/github.com/vbauerster/mpb/bar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/vbauerster/mpb/bar.go -------------------------------------------------------------------------------- /vendor/github.com/vbauerster/mpb/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/vbauerster/mpb/doc.go -------------------------------------------------------------------------------- /vendor/github.com/vbauerster/mpb/go.test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/vbauerster/mpb/go.test.sh -------------------------------------------------------------------------------- /vendor/github.com/vbauerster/mpb/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/github.com/vbauerster/mpb/options.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/crypto/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/crypto/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pbkdf2/pbkdf2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/crypto/pbkdf2/pbkdf2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/scrypt/scrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/crypto/scrypt/scrypt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/net/context/context.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/net/context/go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/pre_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/net/context/pre_go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/oauth2/.travis.yml -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/oauth2/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/oauth2/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/oauth2/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/oauth2/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/oauth2/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/google/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/oauth2/google/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/google/google.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/oauth2/google/google.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/google/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/oauth2/google/jwt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/google/sdk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/oauth2/google/sdk.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/internal/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/oauth2/internal/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/jws/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/oauth2/jws/jws.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/jwt/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/oauth2/jwt/jwt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/oauth2/oauth2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/oauth2/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/oauth2/transport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /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/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/sys/unix/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/cap_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/sys/unix/cap_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/sys/unix/dev_aix_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/sys/unix/dev_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/sys/unix/dev_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/sys/unix/dev_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/sys/unix/dev_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/sys/unix/dev_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/sys/unix/endian_big.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ioctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/sys/unix/ioctl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkpost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/sys/unix/mkpost.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksyscall.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/sys/unix/mksyscall.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/sys/unix/syscall_aix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/sys/unix/syscall_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/timestruct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/sys/unix/timestruct.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/sys/unix/types_aix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/xattr_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/sys/unix/xattr_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/sys/windows/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/eventlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/sys/windows/eventlog.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/sys/windows/service.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/sys/windows/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/text/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/google.golang.org/api/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/google.golang.org/api/AUTHORS -------------------------------------------------------------------------------- /vendor/google.golang.org/api/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/google.golang.org/api/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/google.golang.org/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/google.golang.org/api/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/google.golang.org/appengine/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/google.golang.org/appengine/go.mod -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/google.golang.org/appengine/go.sum -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/gopkg.in/yaml.v2/LICENSE.libyaml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/gopkg.in/yaml.v2/go.mod -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-incubator/fissile/HEAD/vendor/gopkg.in/yaml.v2/yamlprivateh.go --------------------------------------------------------------------------------