Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for 100000000000000000000001 (0.36 sec)

  1. src/cmd/compile/internal/test/testdata/zero_test.go

    	zero23_ssa(&a.mid)
    	want := Z23{[8]byte{255, 255, 255, 255, 255, 255, 255, 255}, [23]byte{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, [8]byte{255, 255, 255, 255, 255, 255, 255, 255}}
    	if a != want {
    		t.Errorf("zero23 got=%v, want %v\n", a, want)
    	}
    }
    
    type Z24 struct {
    	pre  [8]byte
    	mid  [24]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 49.6K bytes
    - Viewed (0)
  2. src/math/big/float_test.go

    		{"-12345.000000000000000000001", -12345, Above},
    		{"-12345.0", -12345, Exact},
    		{"-1.000000000000000000001", -1, Above},
    		{"-1.5", -1, Above},
    		{"-1", -1, Exact},
    		{"-1e-1000", 0, Above},
    		{"0", 0, Exact},
    		{"1e-1000", 0, Below},
    		{"1", 1, Exact},
    		{"1.000000000000000000001", 1, Below},
    		{"1.5", 1, Below},
    		{"12345.0", 12345, Exact},
    		{"12345.000000000000000000001", 12345, Below},
    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. 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)
  4. 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)
  5. 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)
Back to top