Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for 100000000000000000000001 (0.26 sec)

  1. android/guava/src/com/google/common/net/InetAddresses.java

     *   <dt>From the IPv6 reserved documentation prefix ({@code 2001:db8::/32}), {@code "2001:db8::1"}.
     *   <dd>{@code 20 01 0d b8 00 00 00 00 00 00 00 00 00 00 00 01}
     *   <dt>An IPv6 "IPv4 compatible" (or "compat") address, {@code "::192.168.0.1"}.
     *   <dd>{@code 00 00 00 00 00 00 00 00 00 00 00 00 c0 a8 00 01}
     *   <dt>An IPv6 "IPv4 mapped" address, {@code "::ffff:192.168.0.1"}.
     *   <dd>{@code 00 00 00 00 00 00 00 00 00 00 ff ff c0 a8 00 01}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

        )
      }
    
      @Test
      fun hostIpv6AddressTooMuchCompression() {
        assertInvalid(
          "http://[0000::0000:0000:0000:0000::0001]",
          "Invalid URL host: \"[0000::0000:0000:0000:0000::0001]\"",
        )
        assertInvalid(
          "http://[::0000:0000:0000:0000::0001]",
          "Invalid URL host: \"[::0000:0000:0000:0000::0001]\"",
        )
      }
    
      @Test
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  3. src/net/netip/netip_test.go

    			ip: mustIP("::ffff:192.0.2.1"),
    			s:  "0000:0000:0000:0000:0000:ffff:c000:0201",
    		},
    		{
    			ip: mustIP("2001:db8::1"),
    			s:  "2001:0db8:0000:0000:0000:0000:0000:0001",
    		},
    		{
    			ip: mustIP("2001:db8::1%eth0"),
    			s:  "2001:0db8:0000:0000:0000:0000:0000:0001%eth0",
    		},
    	}
    
    	for _, tt := range tests {
    		t.Run(tt.ip.String(), func(t *testing.T) {
    			want := tt.s
    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. src/encoding/json/decode_test.go

    	{CaseName: Name(""), in: `1e-7`, ptr: new(float64), out: 1e-7, golden: true},
    	{CaseName: Name(""), in: `100000000000000000000`, ptr: new(float64), out: 100000000000000000000.0, golden: true},
    	{CaseName: Name(""), in: `1e+21`, ptr: new(float64), out: 1e21, golden: true},
    	{CaseName: Name(""), in: `-0.000001`, ptr: new(float64), out: -0.000001, golden: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  5. src/net/netip/netip.go

    	}
    	return ret
    }
    
    // StringExpanded is like [Addr.String] but IPv6 addresses are expanded with leading
    // zeroes and no "::" compression. For example, "2001:db8::1" becomes
    // "2001:0db8:0000:0000:0000:0000:0000:0001".
    func (ip Addr) StringExpanded() string {
    	switch ip.z {
    	case z0, z4:
    		return ip.String()
    	}
    
    	const size = len("ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff")
    	ret := make([]byte, 0, size)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  6. src/internal/trace/traceviewer/static/trace_viewer_full.html

    function pruneEmptyRuleRows(row){if(row.subRows===undefined||row.subRows.length===0)return;if(row.subRows[0].rule===undefined){return;}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
Back to top