Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for 00000000000000000001 (0.24 sec)

  1. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

        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
      fun hostIpv6ScopedAddress() {
        // java.net.InetAddress parses scoped addresses. These aren't valid in URLs.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  2. src/math/big/float_test.go

    		{"0x0.8p-1074", math.Float64frombits(0x00000000000000000), Below}, // rounded down to even
    		{"0x0.9p-1074", math.Float64frombits(0x00000000000000001), Above}, // rounded up to smallest denormal
    		{"0x0.ap-1074", math.Float64frombits(0x00000000000000001), Above}, // rounded up to smallest denormal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  3. src/encoding/json/decode_test.go

    	},
    
    	{CaseName: Name(""), in: `0.000001`, ptr: new(float64), out: 0.000001, golden: true},
    	{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},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  4. src/net/netip/netip_test.go

    		s  string
    	}{
    		{
    			ip: Addr{},
    			s:  "invalid IP",
    		},
    		{
    			ip: mustIP("192.0.2.1"),
    			s:  "192.0.2.1",
    		},
    		{
    			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"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
Back to top