Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 55 for 18446744073709551615B (0.17 sec)

  1. analysis/analysis-api/testData/annotations/annotationsOnDeclaration/direct/unsignedParameter.txt

    KtDeclaration: KtNamedFunction foo
    annotations: [
      A(xs = [1234uL, 18446744073709551615uL])
        psi: KtAnnotationEntry
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Feb 22 13:55:50 UTC 2023
    - 122 bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/primitives/UnsignedLongsTest.java

                          + UnsignedLongs.remainder(dividend, divisor)))
              .isEqualTo(0);
        }
      }
    
      public void testParseLong() {
        assertThat(UnsignedLongs.parseUnsignedLong("18446744073709551615"))
            .isEqualTo(0xffffffffffffffffL);
        assertThat(UnsignedLongs.parseUnsignedLong("9223372036854775807"))
            .isEqualTo(0x7fffffffffffffffL);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:36:17 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  3. utils/utils_test.go

    		{"int64", int64(math.MaxInt64), "9223372036854775807"},
    		{"uint", uint(math.MaxUint64), "18446744073709551615"},
    		{"uint8", uint8(math.MaxUint8), "255"},
    		{"uint16", uint16(math.MaxUint16), "65535"},
    		{"uint32", uint32(math.MaxUint32), "4294967295"},
    		{"uint64", uint64(math.MaxUint64), "18446744073709551615"},
    		{"string", "abc", "abc"},
    		{"other", true, ""},
    	}
    	for _, test := range tests {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Feb 19 03:42:25 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. src/strconv/atof_test.go

    	// try to overflow exponent
    	{"1e-4294967296", "0", nil},
    	{"1e+4294967296", "+Inf", ErrRange},
    	{"1e-18446744073709551616", "0", nil},
    	{"1e+18446744073709551616", "+Inf", ErrRange},
    	{"0x1p-4294967296", "0", nil},
    	{"0x1p+4294967296", "+Inf", ErrRange},
    	{"0x1p-18446744073709551616", "0", nil},
    	{"0x1p+18446744073709551616", "+Inf", ErrRange},
    
    	// Parse errors
    	{"1e", "0", ErrSyntax},
    	{"1e-", "0", ErrSyntax},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 16:24:57 UTC 2022
    - 23.6K bytes
    - Viewed (0)
  5. src/internal/trace/testdata/tests/go122-gc-stress.test

    GoStatus dt=3 g=33 m=18446744073709551615 gstatus=4
    GoStatus dt=3 g=8 m=18446744073709551615 gstatus=4
    GoStatus dt=3 g=9 m=18446744073709551615 gstatus=4
    GoStatus dt=3 g=10 m=18446744073709551615 gstatus=4
    GoStatus dt=3 g=18 m=18446744073709551615 gstatus=4
    GoStatus dt=3 g=11 m=18446744073709551615 gstatus=4
    GoStatus dt=4 g=34 m=18446744073709551615 gstatus=4
    GoStatus dt=3 g=19 m=18446744073709551615 gstatus=4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 139.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode_test.go

    			in:   hex("1bffffffffffffffff"), // 18446744073709551615
    			assertOnError: assertOnConcreteError(func(t *testing.T, e *cbor.UnmarshalTypeError) {
    				if e == nil {
    					t.Error("expected non-nil error")
    				} else if want := "cbor: cannot unmarshal positive integer into Go value of type int64 (18446744073709551615 overflows Go's int64)"; want != e.Error() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 18:43:10 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  7. src/math/big/example_test.go

    	// the fmt package recognizes it as an implementation of fmt.Scanner.
    	i := new(big.Int)
    	_, err := fmt.Sscan("18446744073709551617", i)
    	if err != nil {
    		log.Println("error scanning value:", err)
    	} else {
    		fmt.Println(i)
    	}
    	// Output: 18446744073709551617
    }
    
    func ExampleFloat_Scan() {
    	// The Scan function is rarely used directly;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 16:15:32 UTC 2020
    - 4K bytes
    - Viewed (0)
  8. test/literal.go

    	var u23 uint32 = +4294967295
    	assert(u21 == u20+1, "u21")
    	assert(u22 == u23, "u22")
    
    	// uint64
    	var u30 uint64 = 0
    	var u31 uint64 = 1
    	var u32 uint64 = 18446744073709551615
    	var u33 uint64 = +18446744073709551615
    	_, _, _, _ = u30, u31, u32, u33
    
    	// float
    	var f00 float32 = 3.14159
    	var f01 float32 = -3.14159
    	var f02 float32 = +3.14159
    	var f03 float32 = 0.0
    	var f04 float32 = .0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 12 18:17:49 UTC 2013
    - 5K bytes
    - Viewed (0)
  9. src/internal/fuzz/encoding_test.go

    byte('\u0000')
    byte('\'')
    math.Float64frombits(9221120237041090562)
    math.Float32frombits(2143289345)`,
    			want: `go test fuzz v1
    int(0)
    rune('A')
    int64(68719476735)
    uint32(3405705229)
    uint64(18446744073709551615)
    byte('\x00')
    byte('\x00')
    byte('\x00')
    byte('\x00')
    byte('\'')
    math.Float64frombits(0x7ff8000000000002)
    math.Float32frombits(0x7fc00001)`,
    		},
    		{
    			desc: "rune validation",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 00:20:34 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/testdata/cmpConst_test.go

    func lt_18446744073709551615_uint64(x uint64) bool { return x < 18446744073709551615 }
    func le_18446744073709551615_uint64(x uint64) bool { return x <= 18446744073709551615 }
    func gt_18446744073709551615_uint64(x uint64) bool { return x > 18446744073709551615 }
    func ge_18446744073709551615_uint64(x uint64) bool { return x >= 18446744073709551615 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 103.1K bytes
    - Viewed (0)
Back to top