Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for 0000000000000002 (0.09 sec)

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

    	zero16u1_ssa(&a)
    	want := Z16u1{false, [16]byte{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}}
    	if a != want {
    		t.Errorf("zero16u2 got=%v, want %v\n", a, want)
    	}
    	b := Z16u2{15, [16]byte{255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255}}
    	zero16u2_ssa(&b)
    	wantb := Z16u2{15, [16]byte{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}}
    	if b != wantb {
    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/all_test.go

    	2.161703872847352815363655e+00,
    }
    var logb = []float64{
    	2.0000000000000000e+00,
    	2.0000000000000000e+00,
    	-2.0000000000000000e+00,
    	2.0000000000000000e+00,
    	3.0000000000000000e+00,
    	1.0000000000000000e+00,
    	2.0000000000000000e+00,
    	1.0000000000000000e+00,
    	0.0000000000000000e+00,
    	3.0000000000000000e+00,
    }
    var log10 = []float64{
    	6.9714316642508290997617083e-01,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

      @Test
      fun hostIpv6WithIpv4SuffixWithOctalPrefix() {
        // Chrome interprets a leading '0' as octal; Firefox rejects them. (We reject them.)
        assertInvalid(
          "http://[0:0:0:0:0:1:0.0.0.000000]/",
          "Invalid URL host: \"[0:0:0:0:0:1:0.0.0.000000]\"",
        )
        assertInvalid(
          "http://[0:0:0:0:0:1:0.010.0.010]/",
          "Invalid URL host: \"[0:0:0:0:0:1:0.010.0.010]\"",
        )
        assertInvalid(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
Back to top