Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for 9223372036854775807 (0.14 sec)

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

    func lt_9223372036854775807_uint64(x uint64) bool  { return x < 9223372036854775807 }
    func le_9223372036854775807_uint64(x uint64) bool  { return x <= 9223372036854775807 }
    func gt_9223372036854775807_uint64(x uint64) bool  { return x > 9223372036854775807 }
    func ge_9223372036854775807_uint64(x uint64) bool  { return x >= 9223372036854775807 }
    func eq_9223372036854775807_uint64(x uint64) bool  { return x == 9223372036854775807 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 103.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

    			ExpectedResult: `{"int64":1000000,"name":"newname"}`,
    		},
    		"int64 max": {
    			Old:            `{"int64":9223372036854775807}`,
    			New:            `{"int64":9223372036854775807,"name":"newname"}`,
    			ExpectedPatch:  `{"name":"newname"}`,
    			ExpectedResult: `{"int64":9223372036854775807,"name":"newname"}`,
    		},
    		"float32 max": {
    			Old:            `{"float32":3.4028234663852886e+38}`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    int16       the set of all signed 16-bit integers (-32768 to 32767)
    int32       the set of all signed 32-bit integers (-2147483648 to 2147483647)
    int64       the set of all signed 64-bit integers (-9223372036854775808 to 9223372036854775807)
    
    float32     the set of all IEEE 754 32-bit floating-point numbers
    float64     the set of all IEEE 754 64-bit floating-point numbers
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top