Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,408 for nack (0.07 sec)

  1. hack/verify-gofmt.sh

    # This script checks whether the source code needs to be formatted or not by
    # `gofmt`. Run `hack/update-gofmt.sh` to actually format sources.
    #
    # Note: gofmt output can change between go versions.
    #
    # Usage: `hack/verify-gofmt.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}"
    
    kube::golang::setup_env
    
    find_files() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:31 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. hack/verify-e2e-suites.sh

    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}"
    
    kube::util::ensure-temp-dir
    
    res=0
    for suite in $(git grep -l framework.AfterReadingAllFlags | grep -v -e ^test/e2e/framework -e ^hack | xargs -n 1 dirname | sort -u); do
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 17 17:35:22 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. hack/verify-fieldname-docs.sh

    # 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
    
    GOPROXY=off go install ./cmd/fieldnamedocscheck
    
    find_files() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:32 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/layout_optimization.cc

          MoveTransposeDirection::kEnd, !options.skip_fold_transpose_in_ops));
    }
    
    std::unique_ptr<OperationPass<func::FuncOp>> CreateLayoutAssignmentPass() {
      // This static is kind of hack, it hooks the pipeline registration for the
      // command line and piggy-back to the TableGen generated registration code.
      static mlir::PassPipelineRegistration<LayoutOptimizationPipelineOptions>
          pipeline("tf-layout-optimization",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  5. build/root/Makefile

    endef
    .PHONY: all
    ifeq ($(PRINT_HELP),y)
    all:
    	echo "$$ALL_HELP_INFO"
    else
    all:
    	hack/make-rules/build.sh $(WHAT)
    endif
    
    define GINKGO_HELP_INFO
    # Build ginkgo
    #
    # Example:
    # make ginkgo
    endef
    .PHONY: ginkgo
    ifeq ($(PRINT_HELP),y)
    ginkgo:
    	echo "$$GINKGO_HELP_INFO"
    else
    ginkgo:
    	hack/make-rules/build.sh github.com/onsi/ginkgo/v2/ginkgo
    endif
    
    define VERIFY_HELP_INFO
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/upgrade/staticpods.go

    			}
    
    			// We've recovered to the previous etcd from this case
    		}
    		fmt.Println("[upgrade/etcd] Etcd was rolled back and is now available")
    
    		// Since etcd cluster came back up with the old manifest
    		return true, errors.Wrap(err, "fatal error when trying to upgrade the etcd cluster, rolled the state back to pre-upgrade state")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  7. hack/verify-netparse-cve.sh

    # because of the compatibility break introduced in golang 1.17
    # Reference: #100895
    # Usage: `hack/verify-netparse-cve.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}"
    
    rc=0
    
    find_files() {
      find . -not \( \
          \( \
            -wholename './.git' \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:31 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. hack/_update-generated-proto-bindings-dockerized.sh

    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/../" && pwd -P)"
    
    source "${KUBE_ROOT}/hack/lib/init.sh"
    source "${KUBE_ROOT}/hack/lib/protoc.sh"
    source "${KUBE_ROOT}/hack/lib/util.sh"
    
    if [ "$#" == 0 ]; then
        echo "usage: $0 <api_dir>..."
        exit 1
    fi
    
    kube::protoc::check_protoc
    
    for api; do
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:04 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. hack/make-rules/test-cmd.sh

    KUBE_PANIC_WATCH_DECODE_ERROR="${KUBE_PANIC_WATCH_DECODE_ERROR:-true}"
    export KUBE_PANIC_WATCH_DECODE_ERROR
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    source "${KUBE_ROOT}/hack/lib/test.sh"
    source "${KUBE_ROOT}/test/cmd/legacy-script.sh"
    
    # setup envs for TokenRequest required flags
    SERVICE_ACCOUNT_LOOKUP=${SERVICE_ACCOUNT_LOOKUP:-true}
    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. staging/src/k8s.io/apiextensions-apiserver/hack/update-codegen.sh

        ${update_report:+"${update_report}"} \
        --boilerplate "${SCRIPT_ROOT}/hack/boilerplate.go.txt" \
        "${SCRIPT_ROOT}/pkg"
    
    kube::codegen::gen_client \
        --with-watch \
        --with-applyconfig \
        --output-dir "${SCRIPT_ROOT}/pkg/client" \
        --output-pkg "${THIS_PKG}/pkg/client" \
        --versioned-name "clientset" \
        --boilerplate "${SCRIPT_ROOT}/hack/boilerplate.go.txt" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top