Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,071 for nack (0.04 sec)

  1. hack/update-netparse-cve.sh

    # because of the compatibility break introduced in golang 1.17
    # Reference: #100895
    # Usage: `hack/update-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"
    source "${KUBE_ROOT}/hack/lib/util.sh"
    
    kube::golang::setup_env
    
    # Ensure that we find the binaries we build before anything else.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. hack/verify-api-groups.sh

    # better than nothing
    for external_group_version in "${external_group_versions[@]}"; do
    	if ! grep -q "${external_group_version}" "${KUBE_ROOT}/hack/lib/init.sh" ; then
    		echo "missing ${external_group_version} from hack/lib/init.sh:/KUBE_AVAILABLE_GROUP_VERSIONS or hack/init.sh:/KUBE_NONSERVER_GROUP_VERSIONS"
    		exit 1
    	fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 13 09:26:16 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. hack/verify-description.sh

    # list of structs and fields that are missing descriptions.
    # Usage: `hack/verify-description.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/genswaggertypedocs
    
    find_files() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:32 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. README.md

    first connect fails. This is necessary for IPv4+IPv6 and services hosted in redundant data
    centers. OkHttp supports modern TLS features (TLS 1.3, ALPN, certificate pinning). It can be
    configured to fall back for broad connectivity.
    
    Using OkHttp is easy. Its request/response API is designed with fluent builders and immutability. It
    supports both synchronous blocking calls and async calls with callbacks.
    
    
    Get a URL
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  5. hack/verify-golangci-lint-config.sh

    # are up-to-date.
    
    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
    - 954 bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/shape_inference_helpers.h

      BackEdgeHelper& operator=(const BackEdgeHelper& other) = delete;
    
      // Temporarily removes all the back edges in graph.
      Status Remove(Graph* graph);
    
      // Gets the list of removed edges.
      const std::vector<BackEdge>& RemovedEdges() const;
    
      // Replaces the back edges removed by a prior call to Remove.
      Status Replace();
    
     private:
      Graph* graph_ = nullptr;  // not owned
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 12 18:06:51 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. hack/benchmark-go.sh

    # This script runs `make test` command with some args for benchmark test.
    # The "true" target of this makerule is `hack/make-rules/test.sh`.
    # Args:
    #   WHAT: Directory names to test.  All *_test.go files under these
    #     directories will be run.  If not specified, "everything" will be tested.
    # Usage: `hack/benchmark-go.sh`.
    # Example: `hack/benchmark-go.sh WHAT=./pkg/kubelet`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    make test \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 27 02:13:09 UTC 2020
    - 1.2K bytes
    - Viewed (0)
Back to top