Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 448 for IPV4 (0.17 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/library/cidr.go

    // The CIDR must be an IPv4 or IPv6 subnet address with a mask.
    // Leading zeros in IPv4 address octets are not allowed.
    // IPv4-mapped IPv6 addresses (e.g. ::ffff:1.2.3.4/24) are not allowed.
    //
    //	cidr(<string>) <CIDR>
    //
    // Examples:
    //
    //	cidr('192.168.0.0/16') // returns an IPv4 address with a CIDR mask
    //	cidr('::1/128') // returns an IPv6 address with a CIDR mask
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 12:03:04 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. pkg/controller/nodeipam/ipam/cidrset/cidr_set_test.go

    			index:          0,
    			CIDRBlock:      "127.123.0.0/24",
    			description:    "1st IP address indexed with IPv4",
    		},
    		{
    			clusterCIDRStr: "127.123.0.0/16",
    			subnetMaskSize: 24,
    			index:          15,
    			CIDRBlock:      "127.123.15.0/24",
    			description:    "16th IP address indexed with IPv4",
    		},
    		{
    			clusterCIDRStr: "192.168.5.219/28",
    			subnetMaskSize: 32,
    			index:          5,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 11 08:53:03 UTC 2023
    - 29.5K bytes
    - Viewed (0)
  3. src/net/netip/netip_test.go

    		// Single number. Some parsers accept this as an IPv4 address in
    		// big-endian uint32 form, but we don't.
    		"1234",
    		// IPv4 with a zone specifier
    		"1.2.3.4%eth0",
    		// IPv4 field must have at least one digit
    		".1.2.3",
    		"1.2.3.",
    		"1..2.3",
    		// IPv4 address too long
    		"1.2.3.4.5",
    		// IPv4 in dotted octal form
    		"0300.0250.0214.0377",
    		// IPv4 in dotted hex form
    		"0xc0.0xa8.0x8c.0xff",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  4. pkg/util/iptree/iptree_test.go

    	}{
    		// 192.168.0.0
    		// 11000000.10101000.00000000.00000001
    		{
    			name: "ipv4 first is a one",
    			ip:   netip.MustParseAddr("192.168.0.0"),
    			pos:  1,
    			want: 1,
    		},
    		{
    			name: "ipv4 middle is a zero",
    			ip:   netip.MustParseAddr("192.168.0.0"),
    			pos:  16,
    			want: 0,
    		},
    		{
    			name: "ipv4 middle is a one",
    			ip:   netip.MustParseAddr("192.168.0.0"),
    			pos:  13,
    			want: 1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/net/interface_test.go

    		{"gatewaymiddle", gatewaymiddle, 1, &ipv4Route, ""},
    		{"gatewaylast", gatewaylast, 1, &ipv4Route, ""},
    		{"no routes", nothing, 0, nil, ""},
    		{"badDestination", badDestination, 0, nil, "invalid IPv4"},
    		{"badGateway", badGateway, 0, nil, "invalid IPv4"},
    		{"route_Invalidhex", route_Invalidhex, 0, nil, "odd length hex string"},
    		{"no default routes", noInternetConnection, 0, nil, ""},
    	}
    	for _, tc := range testCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 33.2K bytes
    - Viewed (0)
  6. releasenotes/notes/46719.yaml

    releaseNotes:
      - |
        **Added** gated flag `ISTIO_ENABLE_IPV4_OUTBOUND_LISTENER_FOR_IPV6_CLUSTERS` to manage an additional outbound listener for IPv6-only clusters to deal with IPv4 NAT outbound traffic.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 03 15:28:21 UTC 2023
    - 414 bytes
    - Viewed (0)
  7. pilot/pkg/util/network/ip_test.go

    			errStr:   "",
    			lookup:   nil,
    		},
    		{
    			name:     "Host by IPv4",
    			input:    "127.0.0.1:9080",
    			expected: "127.0.0.1:9080",
    			errStr:   "",
    			lookup:   nil,
    		},
    		{
    			name:     "Host by IPv6",
    			input:    "[::1]:9080",
    			expected: "[::1]:9080",
    			errStr:   "",
    			lookup:   nil,
    		},
    		{
    			name:     "Bad IPv4",
    			input:    "127.0.0.1.1:9080",
    			expected: "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 08 16:24:15 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/connection/InetAddressOrder.kt

    fun reorderForHappyEyeballs(addresses: List<InetAddress>): List<InetAddress> {
      if (addresses.size < 2) {
        return addresses
      }
    
      val (ipv6, ipv4) = addresses.partition { it is Inet6Address }
    
      return if (ipv6.isEmpty() || ipv4.isEmpty()) {
        addresses
      } else {
        interleave(ipv6, ipv4)
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/constants/constants_test.go

    			expected:      "192.168.10.0/24",
    			expectedError: false,
    			name:          "valid: valid <IPv4,IPv6> ranges from dual-stack",
    		},
    		{
    			svcSubnetList: "fd03::/112,192.168.10.0/24",
    			expected:      "fd03::/112",
    			expectedError: false,
    			name:          "valid: valid <IPv6,IPv4> ranges from dual-stack",
    		},
    		{
    			svcSubnetList: "192.168.10.0/24,fd03:x::/112",
    			expected:      "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 03:26:36 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. src/net/rawconn_unix_test.go

    			//   IPv6 addresses.
    			//
    			// - When IP.To16() == nil and IP.To4() != nil,
    			//   the raw connection consists of an IPv4
    			//   socket using only IPv4 addresses.
    			//
    			// - Otherwise, the raw connection is a dual
    			//   stack socket, an IPv6 socket using IPv6
    			//   addresses including IPv4-mapped or
    			//   IPv4-embedded IPv6 addresses.
    			if addr.IP.To16() != nil && addr.IP.To4() == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 29 16:24:51 UTC 2022
    - 3K bytes
    - Viewed (0)
Back to top