Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 448 for IPV4 (0.46 sec)

  1. pkg/api/service/warnings_test.go

    			},
    		},
    		{
    			name:    "Dual Stack IPv4-IPv6 and IPv4 with leading zeros",
    			service: service([]string{"192.012.2.2", "2001:db8::2"}),
    			want: []string{
    				`spec.clusterIPs[0]: IP address was accepted, but will be invalid in a future Kubernetes release: ParseAddr("192.012.2.2"): IPv4 field has octet with leading zero`,
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 26 22:57:57 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  2. pkg/proxy/util/utils_test.go

    		},
    		{
    			desc:            "want IPv4 and receive IPv4 and IPv6",
    			ipString:        []string{"192.168.200.2", "192.1.34.23", "fd00:20::1", "2001:db9::3"},
    			wantIPv6:        false,
    			expectCorrect:   []string{"192.168.200.2", "192.1.34.23"},
    			expectIncorrect: []string{"fd00:20::1", "2001:db9::3"},
    		},
    		{
    			desc:            "want IPv4 and receive IPv4 only",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. src/net/example_test.go

    	ipv4 := net.IPv4(10, 255, 0, 0)
    
    	fmt.Println(ipv6.String())
    	fmt.Println(ipv4.String())
    
    	// Output:
    	// fc00::
    	// 10.255.0.0
    }
    
    func ExampleIP_To16() {
    	ipv6 := net.IP{0xfc, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}
    	ipv4 := net.IPv4(10, 255, 0, 0)
    
    	fmt.Println(ipv6.To16())
    	fmt.Println(ipv4.To16())
    
    	// Output:
    	// fc00::
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 13 16:36:59 UTC 2021
    - 8.5K bytes
    - Viewed (0)
  4. src/net/ipsock_posix.go

    	"syscall"
    	_ "unsafe" // for linkname
    )
    
    // probe probes IPv4, IPv6 and IPv4-mapped IPv6 communication
    // capabilities which are controlled by the IPV6_V6ONLY socket option
    // and kernel configuration.
    //
    // Should we try to use the IPv4 socket interface if we're only
    // dealing with IPv4 sockets? As long as the host system understands
    // IPv4-mapped IPv6, it's okay to pass IPv4-mapped IPv6 addresses to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/net/InetAddresses.java

        }
    
        return true;
      }
    
      /**
       * Returns the IPv4 address embedded in an IPv4 compatible address.
       *
       * @param ip {@link Inet6Address} to be examined for an embedded IPv4 address
       * @return {@link Inet4Address} of the embedded IPv4 address
       * @throws IllegalArgumentException if the argument is not a valid IPv4 compatible address
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  6. pkg/kubelet/sysctl/safe_sysctls.go

    	{
    		name: "kernel.shm_rmid_forced",
    	}, {
    		name: "net.ipv4.ip_local_port_range",
    	}, {
    		name: "net.ipv4.tcp_syncookies",
    	}, {
    		name: "net.ipv4.ping_group_range",
    	}, {
    		name: "net.ipv4.ip_unprivileged_port_start",
    	}, {
    		name:   "net.ipv4.ip_local_reserved_ports",
    		kernel: utilkernel.IPLocalReservedPortsNamespacedKernelVersion,
    	}, {
    		name:   "net.ipv4.tcp_keepalive_time",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 19:24:34 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. guava/src/com/google/common/net/InetAddresses.java

        }
    
        return true;
      }
    
      /**
       * Returns the IPv4 address embedded in an IPv4 compatible address.
       *
       * @param ip {@link Inet6Address} to be examined for an embedded IPv4 address
       * @return {@link Inet4Address} of the embedded IPv4 address
       * @throws IllegalArgumentException if the argument is not a valid IPv4 compatible address
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/cel/library/cidr_test.go

    		},
    		{
    			name:         "contains IP ipv4 (IP)",
    			expr:         `cidr("192.168.0.0/24").containsIP(ip("192.168.0.1"))`,
    			expectResult: trueVal,
    		},
    		{
    			name:         "does not contain IP ipv4 (IP)",
    			expr:         `cidr("192.168.0.0/24").containsIP(ip("192.168.1.1"))`,
    			expectResult: falseVal,
    		},
    		{
    			name:         "contains IP ipv4 (string)",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 12:03:09 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  9. src/net/netip/fuzz_test.go

    	"bad",
    	// 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: Mon Dec 20 23:46:23 UTC 2021
    - 10.5K bytes
    - Viewed (0)
  10. pkg/util/kernel/constants.go

    // IPLocalReservedPortsNamespacedKernelVersion is the kernel version in which net.ipv4.ip_local_reserved_ports was namespaced(netns).
    // (ref: https://github.com/torvalds/linux/commit/122ff243f5f104194750ecbc76d5946dd1eec934)
    const IPLocalReservedPortsNamespacedKernelVersion = "3.16"
    
    // IPVSConnReuseModeMinSupportedKernelVersion is the minium kernel version supporting net.ipv4.vs.conn_reuse_mode.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top