Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for 4291 (0.06 sec)

  1. src/net/netip/netip.go

    // link-local address space. It also returns true even if ip is in the IPv4
    // private address space or IPv6 unique local address space.
    // It returns false for the zero [Addr].
    //
    // For reference, see RFC 1122, RFC 4291, and RFC 4632.
    func (ip Addr) IsGlobalUnicast() bool {
    	if ip.z == z0 {
    		// Invalid or zero-value.
    		return false
    	}
    
    	if ip.Is4In6() {
    		ip = ip.Unmap()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractSmokeTest.groovy

            static protobufPlugin = "0.9.4"
    
            // https://central.sonatype.com/artifact/com.google.protobuf/protobuf-java/versions
            static protobufTools = "4.26.1"
    
            // https://plugins.gradle.org/plugin/org.gradle.test-retry
            static testRetryPlugin = "1.5.8"
    
            // https://plugins.gradle.org/plugin/io.freefair.aspectj
            static aspectj = "8.6"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 08:14:32 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. pkg/features/kube_features.go

    	KubeletPodResourcesGet featuregate.Feature = "KubeletPodResourcesGet"
    
    	// KubeletSeparateDiskGC enables Kubelet to garbage collection images/containers on different filesystems
    	// owner: @kannon92
    	// kep: https://kep.k8s.io/4191
    	// alpha: v1.29
    	KubeletSeparateDiskGC featuregate.Feature = "KubeletSeparateDiskGC"
    
    	// owner: @sallyom
    	// kep: https://kep.k8s.io/2832
    	// alpha: v1.25
    	// beta: v1.27
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top