Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,379 for nack (0.05 sec)

  1. hack/verify-licenses.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # Usage: `hack/verify-licenses.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"
    
    # This sets up the environment, like GOCACHE, which keeps the worktree cleaner.
    kube::golang::setup_env
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. src/runtime/netpoll_kqueue_pipe.go

    // Therefore we use the pipe to wake up the kevent on NetBSD at this point. Get back here
    // and switch to EVFILT_USER when we bump up the minimal requirement of NetBSD to 10.0.
    // Alternatively, maybe we can use EVFILT_USER on the NetBSD by checking the kernel version
    // via uname(3) and fall back to the pipe if the kernel version is older than 10.0.
    
    var netpollBreakRd, netpollBreakWr uintptr // for netpollBreak
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. hack/tools/go.work

    // This is a hack, but it prevents go from climbing further and trying to
    // reconcile the various deps across the "real" modules and this one.
    
    go 1.22.0
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:06 UTC 2024
    - 162 bytes
    - Viewed (0)
  4. common/config/.hadolint.yml

    # If you're looking at this file in a different repo and want to make a change, please go to the
    # common-files repo, make the change there and check it in. Then come back to this repo and run
    # "make update-common".
    
    ignored:
      - DL3008
      - DL3059
    
    trustedRegistries:
      - gcr.io
      - docker.io
      - quay.io
      - "*.pkg.dev"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 22:55:57 UTC 2024
    - 489 bytes
    - Viewed (0)
  5. src/go/types/context_test.go

    func TestContextHashCollisions(t *testing.T) {
    	if debug {
    		t.Skip("hash collisions are expected, and would fail debug assertions")
    	}
    	// Unit test the de-duplication fall-back logic in Context.
    	//
    	// We can't test this via Instantiate because this is only a fall-back in
    	// case our hash is imperfect.
    	//
    	// These lookups and updates use reasonable looking types in an attempt to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. pkg/test/framework/components/istio/configmap.go

    			// Apply the change.
    			if err := update(mc); err != nil {
    				return err
    			}
    
    			// Store the updated MeshConfig back into the config map.
    			newYAML, err := injectConfigToYaml(mc)
    			if err != nil {
    				return err
    			}
    			cfgMap.Data["config"] = newYAML
    
    			// Write the config map back to the cluster.
    			if err := ic.updateConfigMap(c, cfgMap); err != nil {
    				return err
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. cluster/images/etcd/migrate/options.go

    		return etcdName, nil
    	}
    	klog.Warningf("%s variable unset - falling back to etcd-%s variable", etcdNameEnv, etcdHostnameEnv)
    	if etcdHostname, err := lookupEnv(etcdHostnameEnv); err == nil {
    		return fmt.Sprintf("etcd-%s", etcdHostname), nil
    	}
    	klog.Warningf("%s variable unset - falling back to etcd-%s variable", etcdHostnameEnv, hostnameEnv)
    	if hostname, err := lookupEnv(hostnameEnv); err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 09:59:52 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  8. releasenotes/notes/50060.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
      - 50060
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 22:19:44 UTC 2024
    - 225 bytes
    - Viewed (0)
  9. internal/bpool/bpool.go

    	}
    	return
    }
    
    // Put returns the given Buffer to the BytePool.
    func (bp *BytePoolCap) Put(b []byte) {
    	if bp == nil {
    		return
    	}
    	select {
    	case bp.c <- b:
    		// buffer went back into pool
    	default:
    		// buffer didn't go back into pool, just discard
    	}
    }
    
    // Width returns the width of the byte arrays in this pool.
    func (bp *BytePoolCap) Width() (n int) {
    	if bp == nil {
    		return 0
    	}
    	return bp.w
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 19 16:44:59 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/resources/ResourceLockCoordinationService.java

         *
         * FINISHED - All locks were acquired, release the state lock
         * FAILED - One or more locks were not acquired, roll back any locks that were acquired and release the state lock
         * RETRY - One or more locks were not acquired, roll back any locks that were acquired and block waiting for the
         * state to change, then run the transform again
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top