Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,071 for nack (0.04 sec)

  1. releasenotes/notes/33293.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: security
    issue:
      - 33293
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 14 15:12:21 UTC 2021
    - 187 bytes
    - Viewed (0)
  2. releasenotes/notes/full-push-regression.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue: [39652]
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 12 12:34:53 UTC 2022
    - 213 bytes
    - Viewed (0)
  3. cluster/kubectl.sh

    # echo "-=-=-=-=-=-=-=-=-=-="
    
    
    KUBE_ROOT=${KUBE_ROOT:-$(dirname "${BASH_SOURCE[0]}")/..}
    source "${KUBE_ROOT}/cluster/kube-util.sh"
    source "${KUBE_ROOT}/hack/lib/util.sh"
    source "${KUBE_ROOT}/hack/lib/logging.sh"
    
    # If KUBECTL_PATH isn't set, gather up the list of likely places and use ls
    # to find the latest one.
    if [[ -z "${KUBECTL_PATH:-}" ]]; then
      kubectl=$( kube::util::find-binary "kubectl" )
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 06 18:03:32 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/utils/string_utils.cc

      if (len > max_length_ || data_.size() >= max_length_ - len)
        return absl::ResourceExhaustedError("Buffer overflow");
      data_.resize(data_.size() + len);
      memcpy(data_.data() + offset_.back(), str, len);
      offset_.push_back(offset_.back() + len);
      return absl::OkStatus();
    }
    
    int MiniDynamicBuffer::WriteToBuffer(char** buffer) {
      // Allocate sufficient memory to tensor buffer.
      int32_t num_strings = offset_.size() - 1;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/time_budget_test.go

    	// we didn't advanced on time yet
    	budget.returnUnused(-time.Duration(50))
    	if res := budget.takeAvailable(); res != time.Duration(0) {
    		t.Errorf("Expected: %v, got: %v", time.Duration(0), res)
    	}
    	// handle back in time problem with an empty budget
    	nextTime = nextTime.Add(-2 * time.Minute)
    	fakeClock.SetTime(nextTime)
    	if res := budget.takeAvailable(); res != time.Duration(0) {
    		t.Errorf("Expected: %v, got: %v", time.Duration(0), res)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 15 09:52:18 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  6. test/fixedbugs/issue15609.go

    // runindir
    
    //go:build !nacl
    
    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 207 bytes
    - Viewed (0)
  7. hack/jenkins/test-dockerized.sh

    # As individual scripts make use of go modules, they can explicitly set GO111MODULE=on
    export GO111MODULE=off
    
    # Install tools we need
    GO111MODULE=on go -C "./hack/tools" install gotest.tools/gotestsum
    
    # Disable coverage report
    export KUBE_COVER="n"
    # Set artifacts directory
    export ARTIFACTS=${ARTIFACTS:-"${WORKSPACE}/artifacts"}
    # Save the verbose stdout as well.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. hack/verify-readonly-packages.sh

    # .readonly file. Being readonly DOES NOT apply recursively to subdirectories.
    # Usage: `hack/verify-readonly-packages.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    readonly branch=${1:-${KUBE_VERIFY_GIT_BRANCH:-master}}
    
    find_files() {
      find . -not \( \
          \( \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:31 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. staging/README.md

       for reference.
    
    7. NOTE: Do not edit go.mod or go.sum in the new repo (staging/src/k8s.io/<newrepo>/) manually. Run the following instead:
    
    ```
      ./hack/update-vendor.sh
    ```
    
    8. Run [`./hack/update-go-workspace.sh`](/hack/update-go-workspace.sh) to add
       the module to the workspace.
    
    ### Creating the published repository
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 11:23:09 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/net/nettest/nettest.go

    		// package net of the standard library.
    		switch runtime.GOOS {
    		case "android", "fuchsia", "hurd", "ios", "js", "nacl", "plan9", "wasip1", "windows":
    			return false
    		}
    	case "ip", "ip4", "ip6":
    		switch runtime.GOOS {
    		case "fuchsia", "hurd", "js", "nacl", "plan9", "wasip1":
    			return false
    		default:
    			if os.Getuid() != 0 {
    				return false
    			}
    		}
    	case "unix", "unixgram":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top