Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 448 for IPV4 (0.03 sec)

  1. src/net/ip.go

    			n -= 8
    			continue
    		}
    		m[i] = ^byte(0xff >> n)
    		n = 0
    	}
    	return m
    }
    
    // Well-known IPv4 addresses
    var (
    	IPv4bcast     = IPv4(255, 255, 255, 255) // limited broadcast
    	IPv4allsys    = IPv4(224, 0, 0, 1)       // all systems
    	IPv4allrouter = IPv4(224, 0, 0, 2)       // all routers
    	IPv4zero      = IPv4(0, 0, 0, 0)         // all zeros
    )
    
    // Well-known IPv6 addresses
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. src/net/interface_test.go

    }
    
    func checkUnicastStats(ifStats *ifStats, uniStats *routeStats) error {
    	// Test the existence of connected unicast routes for IPv4.
    	if supportsIPv4() && ifStats.loop+ifStats.other > 0 && uniStats.ipv4 == 0 {
    		return fmt.Errorf("num IPv4 unicast routes = 0; want >0; summary: %+v, %+v", ifStats, uniStats)
    	}
    	// Test the existence of connected unicast routes for IPv6.
    	// We can assume the existence of ::1/128 when at least one
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  3. cmd/kube-apiserver/app/options/completion_test.go

    		// Dual stack IPv4/IPv6
    		{"192.0.2.1/24,2001:db2:1:3:4::1/112", "192.0.2.1", "192.0.2.0/24", "2001:db2:1:3:4::/112", false},
    		// Dual stack IPv6/IPv4
    		{"2001:db2:1:3:4::1/112,192.0.2.1/24", "2001:db2:1:3:4::1", "2001:db2:1:3:4::/112", "192.0.2.0/24", false},
    
    		{"192.0.2.1/30,192.168.128.0/17", "<nil>", "<nil>", "<nil>", true},
    		// Invalid ip range[0] IPv4 mask
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 26 13:20:40 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/FastFallbackTest.kt

    import org.junitpioneer.jupiter.RetryingTest
    import org.opentest4j.TestAbortedException
    
    /**
     * This test binds two different web servers (IPv4 and IPv6) to the same port, but on different
     * local IP addresses. Requests made to `127.0.0.1` will reach the IPv4 server, and requests made to
     * `::1` will reach the IPv6 server.
     *
     * By orchestrating two different servers with the same port but different IP addresses, we can
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/library/ip.go

    // The IP address must be an IPv4 or IPv6 address.
    // IPv4-mapped IPv6 addresses (e.g. ::ffff:1.2.3.4) are not allowed.
    // IP addresses with zones (e.g. fe80::1%eth0) are not allowed.
    // Leading zeros in IPv4 address octets are not allowed.
    //
    //	ip(<string>) <IPAddr>
    //
    // Examples:
    //
    //	ip('127.0.0.1') // returns an IPv4 address
    //	ip('::1') // returns an IPv6 address
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 11:02:34 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  6. src/net/netip/slow_test.go

    // varyingly accepted by some programs due to an under-specification
    // of the shapes of IPv4 addresses:
    //
    //   - IPv4 as a single 32-bit uint: 4660 (same as "1.2.3.4")
    //   - IPv4 with octal numbers: 0300.0250.0.01 (same as "192.168.0.1")
    //   - IPv4 with hex numbers: 0xc0.0xa8.0x0.0x1 (same as "192.168.0.1")
    //   - IPv4 in "class-B style": 1.2.52 (same as "1.2.3.4")
    //   - IPv4 in "class-A style": 1.564 (same as "1.2.3.4")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. pkg/test/framework/label/labels.go

    	CustomSetup Instance = "customsetup"
    
    	// IPv4 indicates a test is only compatible with IPv4 clusters.
    	// Any usage of this should have an associated GitHub issue to make it compatible with IPv6
    	IPv4 Instance = "ipv4"
    )
    
    var all = NewSet(
    	Postsubmit,
    	CustomSetup,
    	IPv4)
    
    // Find the label with the given name
    func Find(name string) (Instance, bool) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 18 17:08:05 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  8. src/net/main_test.go

    	// If external IPv4 connectivity exists, we can try dialing
    	// non-node/interface local scope IPv4 addresses.
    	// On Windows, Lookup APIs may not return IPv4-related
    	// resource records when a node has no external IPv4
    	// connectivity.
    	testIPv4 = flag.Bool("ipv4", true, "assume external IPv4 connectivity exists")
    
    	// If external IPv6 connectivity exists, we can try dialing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/internal/test2json/testdata/framefuzz.test

    === NAME  TestAddrStringAllocs
    === RUN   TestAddrStringAllocs/ipv4
    === NAME  TestAddrStringAllocs
    === RUN   TestAddrStringAllocs/ipv6
    === NAME  TestAddrStringAllocs
    === RUN   TestAddrStringAllocs/ipv6+zone
    === NAME  TestAddrStringAllocs
    === RUN   TestAddrStringAllocs/ipv4-in-ipv6
    === NAME  TestAddrStringAllocs
    === RUN   TestAddrStringAllocs/ipv4-in-ipv6+zone
    === NAME  TestAddrStringAllocs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 19:50:36 UTC 2022
    - 2.8K bytes
    - Viewed (0)
Back to top