Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 368 for IPV4 (0.04 sec)

  1. cmd/kube-proxy/app/server_linux_test.go

    			config: &proxyconfigapi.KubeProxyConfiguration{
    				DetectLocalMode: proxyconfigapi.LocalModeClusterCIDR,
    				ClusterCIDR:     "10.0.0.0/14",
    			},
    			primaryIPFamily: v1.IPv6Protocol,
    			// This will output a warning that there is no IPv6 CIDR but it
    			// will still use the provided IPv4 CIDR for IPv4.
    			expected: map[v1.IPFamily]proxyutil.LocalTrafficDetector{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  2. samples/kind-lb/setupkind.sh

      echo "    --pod-subnet       - the pod subnet to specify. Default is 10.244.0.0/16 for IPv4 and fd00:10:244::/56 for IPv6"
      echo "    --service-subnet   - the service subnet to specify. Default is 10.96.0.0/16 for IPv4 and fd00:10:96::/112 for IPv6"
      echo "    -i|--ip-family     - ip family to be supported, default is ipv4 only. Value should be ipv4, ipv6, or dual"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 02 19:08:19 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/RouteFailureTest.kt

        val request = Request(server1.url("/"))
    
        server1.enqueue(refusedStream)
        server2.enqueue(bodyResponse)
    
        dns[server1.hostName] = listOf(ipv6, ipv4)
        socketFactory[ipv6] = server1.inetSocketAddress
        socketFactory[ipv4] = server2.inetSocketAddress
    
        client =
          client.newBuilder()
            .fastFallback(false)
            .apply {
              retryOnConnectionFailure = false
            }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue May 14 17:48:07 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. pkg/proxy/util/nodeport_addresses_test.go

    			want: true,
    		},
    		{
    			name:        "all zeros ipv4",
    			cidrStrings: []string{"224.0.0.0/24", "192.168.0.0/16", "fd00:1:d::/64", "0.0.0.0/0"},
    			want:        true,
    		},
    		{
    			name:        "all zeros ipv6",
    			cidrStrings: []string{"224.0.0.0/24", "192.168.0.0/16", "fd00:1:d::/64", "::/0"},
    			want:        false,
    		},
    		{
    			name:        "ipv4 loopback",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/kubeadm/validation/validation_test.go

    		ip       string
    		expected bool
    	}{
    		{"invalid missing address", "", false},
    		{"invalid missing decimal points in IPv4 address", "1234", false},
    		{"invalid incomplete IPv4 address", "1.2", false},
    		{"invalid IPv4 CIDR provided instead of IPv4 address", "1.2.3.4/16", false},
    		{"valid IPv4 address", "1.2.3.4", true},
    		{"valid IPv6 address", "2001:db8::1", true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  6. src/net/iprawsock_test.go

    // following:
    //	golang.org/x/net/ipv4
    //	golang.org/x/net/ipv6
    //	golang.org/x/net/icmp
    
    type resolveIPAddrTest struct {
    	network       string
    	litAddrOrName string
    	addr          *IPAddr
    	err           error
    }
    
    var resolveIPAddrTests = []resolveIPAddrTest{
    	{"ip", "127.0.0.1", &IPAddr{IP: IPv4(127, 0, 0, 1)}, nil},
    	{"ip4", "127.0.0.1", &IPAddr{IP: IPv4(127, 0, 0, 1)}, nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 6K bytes
    - Viewed (0)
  7. src/net/netip/netip.go

    // Is6 reports whether ip is an IPv6 address, including IPv4-mapped
    // IPv6 addresses.
    func (ip Addr) Is6() bool {
    	return ip.z != z0 && ip.z != z4
    }
    
    // Unmap returns ip with any IPv4-mapped IPv6 address prefix removed.
    //
    // That is, if ip is an IPv6 address wrapping an IPv4 address, it
    // returns the wrapped IPv4 address. Otherwise it returns ip unmodified.
    func (ip Addr) Unmap() Addr {
    	if ip.Is4In6() {
    		ip.z = z4
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  8. test/escape_slice.go

    	litAddrOrName string
    	addr          *IPAddr
    	err           error
    }
    
    var resolveIPAddrTests = []resolveIPAddrTest{
    	{"ip", "127.0.0.1", &IPAddr{IP: IPv4(127, 0, 0, 1)}, nil},
    	{"ip4", "127.0.0.1", &IPAddr{IP: IPv4(127, 0, 0, 1)}, nil},
    	{"ip4:icmp", "127.0.0.1", &IPAddr{IP: IPv4(127, 0, 0, 1)}, nil},
    }
    
    func setupTestData() {
    	resolveIPAddrTests = append(resolveIPAddrTests,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:50:24 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. pkg/kubelet/sysctl/util_test.go

    			Value: "1",
    		},
    		{
    			Name:  "net.ipv4.conf.eno2/100.rp_filter",
    			Value: "1",
    		},
    		{
    			Name:  "net/ipv4/ip_local_port_range",
    			Value: "1024 65535",
    		},
    	}
    	exceptSysctls := []v1.Sysctl{
    		{
    			Name:  "kernel.msgmax",
    			Value: "8192",
    		},
    		{
    			Name:  "kernel.shm_rmid_forced",
    			Value: "1",
    		},
    		{
    			Name:  "net.ipv4.conf.eno2/100.rp_filter",
    			Value: "1",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 22:58:28 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/networking/v1alpha1/generated.proto

      // and host bits. For example an IPv4 address of 192.168.0.0/24, splits the
      // address into 24 bits for the network portion and 8 bits for the host portion.
      // To allocate 256 IPs, set this field to 8 (a /24 mask for IPv4 or a /120 for IPv6).
      // Minimum value is 4 (16 IPs).
      // This field is immutable.
      // +required
      optional int32 perNodeHostBits = 2;
    
      // ipv4 defines an IPv4 IP block in CIDR notation(e.g. "10.0.0.0/8").
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top