Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 149 for errorexit (0.12 sec)

  1. hack/make-rules/make-help.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
    
    red=$(tput setaf 1)
    reset=$(tput sgr0)
    readonly red reset
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 06:46:18 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  2. hack/verify-all.sh

    # `hack/verify-all.sh` before submit a PR. It is equivalent to `make verify`.
    # Usage: `hack/verify-all.sh` or `make verify`.
    # Note: This script is a vestigial redirection. Please do not add "real" logic.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    # For help output
    ARGHELP=""
    if [[ -n "${KUBE_VERIFY_GIT_BRANCH:-}" ]]; then
        ARGHELP="BRANCH=${KUBE_VERIFY_GIT_BRANCH}"
    fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 16 15:58:13 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  3. hack/jenkins/verify-dockerized.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
    set -o xtrace
    
    retry() {
      for i in {1..5}; do
        if "$@"; then
          return 0
        else
          sleep "${i}"
        fi
      done
      "$@"
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 19:07:26 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  4. hack/update-golangci-lint-config.sh

    # This script checks that golangci-strict.yaml and golangci.yaml remain in
    # sync. Lines that are intentionally different must have a comment which
    # mentions golangci.yaml or golangci-lint.yaml.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    # This sets up the environment, like GOCACHE, which keeps the worktree cleaner.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 22 18:39:23 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. hack/generate-docs.sh

    # limitations under the License.
    
    # This file is not intended to be run automatically. It is meant to be run
    # immediately before exporting docs. We do not want to check these documents in
    # by default.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_HACK_ROOT=$(dirname "${BASH_SOURCE[0]}")
    
    echo "WARNING: hack/generate-docs.sh is an alias for hack/update-generated-docs.sh"
    echo "and will be removed in a future version."
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 25 03:38:56 UTC 2019
    - 1K bytes
    - Viewed (0)
  6. hack/verify-boilerplate.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script checks boilerplate header for all files.
    # Usage: `hack/verify-boilerplate.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    boilerDir="${KUBE_ROOT}/hack/boilerplate"
    boiler="${boilerDir}/boilerplate.py"
    
    files_need_boilerplate=()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 16 04:54:58 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  7. hack/verify-openapi-spec.sh

    # This script checks whether updating of OpenAPI specification is needed or not.
    # We should run `hack/update-openapi-spec.sh` if OpenAPI specification is out of
    # date.
    # Usage: `hack/verify-openapi-spec.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    source "${KUBE_ROOT}/hack/lib/verify-generated.sh"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:41 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. hack/verify-yamlfmt.sh

    # This script checks whether the OWNERS files need to be formatted or not by
    # `yamlfmt`. Run `hack/update-yamlfmt.sh` to actually format sources.
    #
    # Usage: `hack/verify-yamlfmt.sh`.
    
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/verify-generated.sh"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 22 18:39:23 UTC 2023
    - 1K bytes
    - Viewed (0)
  9. hack/make-rules/test-cmd.sh

    # limitations under the License.
    
    # This command checks that the built commands can function together for
    # simple scenarios.  It does not require Docker.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    # start the cache mutation detector by default so that cache mutators will be found
    KUBE_CACHE_MUTATION_DETECTOR="${KUBE_CACHE_MUTATION_DETECTOR:-true}"
    export KUBE_CACHE_MUTATION_DETECTOR
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 09:10:14 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. hack/verify-import-boss.sh

    # `.import-restrictions` in each directory, then all imports of the package are
    # checked against each "rule" in the file.
    # Usage: `hack/verify-import-boss.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
    kube::util::require-jq
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top