Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 170 for errorexit (0.17 sec)

  1. hack/verify-import-aliases.sh

    # This script verifies that all the imports have our preferred alias(es). The
    # preferred aliases for imports are listed in `hack/.import-aliases`.
    # Usage: `hack/verify-import-aliases.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::golang::setup_env
    
    cd "${KUBE_ROOT}"
    
    ret=0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:56 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/hack/verify-codegen.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    SCRIPT_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd -P)"
    DIFFROOT="${SCRIPT_ROOT}/pkg"
    TMP_DIFFROOT="$(mktemp -d -t "$(basename "$0").XXXXXX")/pkg"
    
    cleanup() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 05 23:05:26 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. hack/dev-push-conformance.sh

    # Example usage:
    #   $ export REGISTRY=gcr.io/someone
    #   $ export VERSION=v1.4.0-testfix
    #   ./hack/dev-push-conformance.sh
    # That will build and push gcr.io/someone/conformance-amd64:v1.4.0-testfix
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT="$(dirname "${BASH_SOURCE[0]}")/.."
    source "${KUBE_ROOT}/build/common.sh"
    
    if [[ -z "${REGISTRY:-}" ]]; then
    	echo "REGISTRY must be set"
    	exit 1
    fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 08 02:46:11 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  4. hack/verify-testing-import.sh

    # to avoid including test libraries in production binaries as they often lack
    # rigorous review and sufficient testing.
    # Usage: `hack/verify-test-code.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    cd "${KUBE_ROOT}"
    
    RELEASE_BIN_PKGS=(
      "${KUBE_ROOT}/cmd/cloud-controller-manager"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 11:56:42 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. hack/build-go.sh

    #     package, the build will produce executable files under $(OUT_DIR)/go/bin.
    #     If not specified, "everything" will be built.
    # Usage: `hack/build-go.sh`.
    # Example: `hack/build-go.sh WHAT=cmd/kubelet`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    # For help output
    ARGHELP=""
    if [[ "$#" -gt 0 ]]; then
        ARGHELP="WHAT='$*'"
    fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 27 02:13:09 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/hack/update-codegen.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    SCRIPT_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    CODEGEN_PKG=${CODEGEN_PKG:-$(cd "${SCRIPT_ROOT}"; ls -d -1 ./vendor/k8s.io/code-generator 2>/dev/null || echo ../code-generator)}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. hack/verify-test-images.sh

    # limitations under the License.
    
    # This script checks whether the latest or untagged  gcr.io image is in
    # `test/e2e/*.go` files.
    # Usage: `hack/verify-test-images.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    cd "${KUBE_ROOT}"
    result=0
    
    # Find mentions of untagged gcr.io images in test/e2e/*.go
    find_e2e_test_untagged_gcr_images() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 21 10:10:46 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  8. hack/verify-e2e-suites.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script checks that all E2E test suites are sane, i.e. can be
    # started without an error.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    source "${KUBE_ROOT}/hack/lib/util.sh"
    
    kube::golang::setup_env
    
    cd "${KUBE_ROOT}"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 17 17:35:22 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. hack/verify-fieldname-docs.sh

    # This script checks API-related files for mismatch in docs and field names,
    # and outputs a list of fields that their docs and field names are mismatched.
    # Usage: `hack/verify-fieldname-docs.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    source "${KUBE_ROOT}/hack/lib/util.sh"
    
    kube::golang::setup_env
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:32 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. build/release.sh

    # images and other build artifacts.
    #
    # For pushing these artifacts publicly to Google Cloud Storage or to a registry
    # please refer to the kubernetes/release repo at
    # https://github.com/kubernetes/release.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/build/common.sh"
    source "${KUBE_ROOT}/build/lib/release.sh"
    
    KUBE_RELEASE_RUN_TESTS=${KUBE_RELEASE_RUN_TESTS-y}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 16 08:27:43 UTC 2019
    - 1.4K bytes
    - Viewed (0)
Back to top