Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 835 for ip64 (0.15 sec)

  1. src/crypto/internal/edwards25519/field/_asm/fe_amd64_asm.go

    	// r0 = l0×l0 + 19×2×(l1×l4 + l2×l3)
    	r0 := uint128{"r0", GP64(), GP64()}
    	mul64(r0, 1, l0, l0)
    	addMul64(r0, 38, l1, l4)
    	addMul64(r0, 38, l2, l3)
    
    	// r1 = 2×l0×l1 + 19×2×l2×l4 + 19×l3×l3
    	r1 := uint128{"r1", GP64(), GP64()}
    	mul64(r1, 2, l0, l1)
    	addMul64(r1, 38, l2, l4)
    	addMul64(r1, 19, l3, l3)
    
    	// r2 = = 2×l0×l2 + l1×l1 + 19×2×l3×l4
    	r2 := uint128{"r2", GP64(), GP64()}
    	mul64(r2, 2, l0, l2)
    	addMul64(r2, 1, l1, l1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/compile/internal/ssa/_gen/WasmOps.go

    		fp32_21gp = regInfo{inputs: []regMask{fp32, fp32}, outputs: []regMask{gp}}
    		fp64_01   = regInfo{inputs: nil, outputs: []regMask{fp64}}
    		fp64_11   = regInfo{inputs: []regMask{fp64}, outputs: []regMask{fp64}}
    		fp64_21   = regInfo{inputs: []regMask{fp64, fp64}, outputs: []regMask{fp64}}
    		fp64_21gp = regInfo{inputs: []regMask{fp64, fp64}, outputs: []regMask{gp}}
    		gpload    = regInfo{inputs: []regMask{gpspsb, 0}, outputs: []regMask{gp}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top