Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 99 for 1918 (0.06 sec)

  1. src/net/ip.go

    		return ip4[0] == 127
    	}
    	return ip.Equal(IPv6loopback)
    }
    
    // IsPrivate reports whether ip is a private address, according to
    // RFC 1918 (IPv4 addresses) and RFC 4193 (IPv6 addresses).
    func (ip IP) IsPrivate() bool {
    	if ip4 := ip.To4(); ip4 != nil {
    		// Following RFC 1918, Section 3. Private Address Space which says:
    		//   The Internet Assigned Numbers Authority (IANA) has reserved the
    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/crypto/tls/testdata/Server-TLSv13-P256

    000001a0  1e fc 2e b2 7a 3a 07 22  72 25 dc d3 d1 8f 38 07  |....z:."r%....8.|
    000001b0  63 2f 18 f5 da b0 91 66  a1 47 16 ad 76 82 98 07  |c/.....f.G..v...|
    000001c0  6f a7 c8 79 43 73 4c 8c  2b 5d af 5a 7c c2 19 18  |o..yCsL.+].Z|...|
    000001d0  8d ee e2 ba fc 07 9b df  7e 17 af 54 c4 1f d8 a1  |........~..T....|
    000001e0  bd 66 93 e3 80 7e 9d a3  43 46 34 eb f9 9e 0b 77  |.f...~..CF4....w|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  3. src/net/netip/netip.go

    // (IPv4 addresses) and RFC 4193 (IPv6 addresses). That is, it reports whether
    // ip is in 10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16, or fc00::/7. This is the
    // same as [net.IP.IsPrivate].
    func (ip Addr) IsPrivate() bool {
    	if ip.Is4In6() {
    		ip = ip.Unmap()
    	}
    
    	// Match the stdlib's IsPrivate logic.
    	if ip.Is4() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-helper.sh

        iptables -w -t nat -A IP-MASQ -d 10.0.0.0/8 -m comment --comment "ip-masq: RFC 1918 reserved range is not subject to MASQUERADE" -j RETURN
        iptables -w -t nat -A IP-MASQ -d 172.16.0.0/12 -m comment --comment "ip-masq: RFC 1918 reserved range is not subject to MASQUERADE" -j RETURN
        iptables -w -t nat -A IP-MASQ -d 192.168.0.0/16 -m comment --comment "ip-masq: RFC 1918 reserved range is not subject to MASQUERADE" -j RETURN
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go

    	SYS___PTHREAD_SECURITY_NP_A         = 0x774 // 1908
    	SYS___QUERYMETRICS_A                = 0x775 // 1909
    	SYS___QUERYSCHENV                   = 0x776 // 1910
    	SYS___READV_A                       = 0x777 // 1911
    	SYS_____SERVER_CLASSIFY_A           = 0x778 // 1912
    	SYS_____SERVER_INIT_A               = 0x779 // 1913
    	SYS_____SERVER_PWU_A                = 0x77A // 1914
    	SYS___STRCASECMP_A                  = 0x77B // 1915
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  6. src/runtime/zcallback_windows_arm.s

    	MOVW	$1907, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1908, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1909, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1910, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1911, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1912, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1913, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1914, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1915, R12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 21:52:38 UTC 2021
    - 89.3K bytes
    - Viewed (0)
  7. src/runtime/zcallback_windows_arm64.s

    	MOVD	$1907, R12
    	B	runtime·callbackasm1(SB)
    	MOVD	$1908, R12
    	B	runtime·callbackasm1(SB)
    	MOVD	$1909, R12
    	B	runtime·callbackasm1(SB)
    	MOVD	$1910, R12
    	B	runtime·callbackasm1(SB)
    	MOVD	$1911, R12
    	B	runtime·callbackasm1(SB)
    	MOVD	$1912, R12
    	B	runtime·callbackasm1(SB)
    	MOVD	$1913, R12
    	B	runtime·callbackasm1(SB)
    	MOVD	$1914, R12
    	B	runtime·callbackasm1(SB)
    	MOVD	$1915, R12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 21:52:38 UTC 2021
    - 89.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/poset_test.go

    		{Equal, 15, 17},
    		{Equal, 15, 18},
    		{Equal, 15, 19},
    		{Equal, 15, vconst(20)},
    		{Equal, 15, vconst2(20)},
    		{Equal, 15, 25},
    
    		{Equal, 16, 17},
    		{Equal, 16, 18},
    		{Equal, 16, 19},
    		{Equal, 16, vconst(20)},
    		{Equal, 16, vconst2(20)},
    		{Equal, 16, 25},
    
    		{Equal, 17, 18},
    		{Equal, 17, 19},
    		{Equal, 17, vconst(20)},
    		{Equal, 17, vconst2(20)},
    		{Equal, 17, 25},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 26 07:52:35 UTC 2019
    - 18.1K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.18.md

    _Nothing has changed._
    
    
    
    # v1.18.18
    
    
    ## Downloads for v1.18.18
    
    ### Source Code
    
    filename | sha512 hash
    -------- | -----------
    [kubernetes.tar.gz](https://dl.k8s.io/v1.18.18/kubernetes.tar.gz) | 36e254401fae0ddcf05aa57a76a8ea9772f6a61492a898af48c3689132edf77bd2f551b7c93043ff78f48d5c5543b0957c8768db2422347fea1d4033f3337b7d
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 16 17:18:28 UTC 2021
    - 373.2K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.7.md

    Support creation of GCP Internal Load Balancers from Service objects ([#46663](https://github.com/kubernetes/kubernetes/pull/46663), [@nicksardo](https://github.com/nicksardo))
    
      * GCE installs will now avoid IP masquerade for all RFC-1918 IP blocks, rather than just 10.0.0.0/8. This means that clusters can be created in 192.168.0.0./16 and 172.16.0.0/12 while preserving the container IPs (which would be lost before). ([#46473](https://github.com/kubernetes/kubernetes/pull/46473), [...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
Back to top