Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 66 for 9223372036854775807 (0.19 sec)

  1. src/testing/match_test.go

    	{"a#02", "x/a#02#01"}, // We already used a#02 once, so add a suffix.
    
    	{"b#00", "x/b#00"},
    	{"b", "x/b"}, // Implicit 0 doesn't conflict with explicit "#00".
    	{"b", "x/b#01"},
    	{"b#9223372036854775807", "x/b#9223372036854775807"}, // MaxInt64
    	{"b", "x/b#02"},
    	{"b", "x/b#03"},
    
    	// Sanitizing
    	{"A:1 B:2", "x/A:1_B:2"},
    	{"s\t\r\u00a0", "x/s___"},
    	{"\x01", `x/\x01`},
    	{"\U0010ffff", `x/\U0010ffff`},
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 14:48:54 UTC 2022
    - 8K bytes
    - Viewed (0)
  2. 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)
  3. src/internal/types/testdata/check/decls1.go

    	v2 = c + 255
    	v3 = c + 256 /* ERROR "overflows" */
    	v4 = r + 2147483647
    	v5 = r + 2147483648 /* ERROR "overflows" */
    	v6 = 42
    	v7 = v6 + 9223372036854775807
    	v8 = v6 + 9223372036854775808 /* ERROR "overflows" */
    	v9 = i + 1 << 10
    	v10 byte = 1024 /* ERROR "overflows" */
    	v11 = xx/yy*yy - xx
    	v12 = true && false
    	v13 = nil /* ERROR "use of untyped nil" */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/swift/SwiftDepsHandlerTest.groovy

            moduleSwiftDeps << """
    version: "Swift version 4.0.3 (swift-4.0.3-RELEASE)"
    options: "7890c730e32273cd2686f36d1bd976c0"
    build_time: [1517422583, 339630833]
    inputs:
      "${barSource.absolutePath}": [9223372036, 854775807]
      "${mainSource.absolutePath}": [1517422583, 0]
      "${fooSource.absolutePath}": [1517422583, 0]
    """
            original = swiftDepsHandler.parse(moduleSwiftDeps)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. src/net/http/httptest/recorder_test.go

    		{
    			cl:   "+3",
    			want: -1,
    		},
    		{
    			cl:   "-3",
    			want: -1,
    		},
    		{
    			// max int64, for safe conversion before returning
    			cl:   "9223372036854775807",
    			want: 9223372036854775807,
    		},
    		{
    			cl:   "9223372036854775808",
    			want: -1,
    		},
    	}
    
    	for _, tt := range tests {
    		if got := parseContentLength(tt.cl); got != tt.want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 23:17:38 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  6. src/math/rand/regress_test.go

    	int64(543572285742637646),           // Int63n(1000000000000000000)
    	int64(355889821886249464),           // Int63n(1152921504606846976)
    	int64(8325060299420976708),          // Int63n(9223372036854775806)
    	int64(7837839688282259259),          // Int63n(9223372036854775807)
    	int64(0),                            // Int63n(1)
    	int64(0),                            // Int63n(10)
    	int64(25),                           // Int63n(32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 17.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/intstr/intstr_test.go

    		},
    		{
    			input:  "9223372036854775807", // math.MaxInt64
    			output: IntOrString{Type: String, StrVal: "9223372036854775807"},
    		},
    		{
    			input:  "-9223372036854775808", // math.MinInt64
    			output: IntOrString{Type: String, StrVal: "-9223372036854775808"},
    		},
    		{
    			input:  "9223372036854775808", // math.MaxInt64+1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  8. src/net/http/transfer_test.go

    			wantErr: badStringError("bad Content-Length", "-3"),
    		},
    		{
    			// max int64, for safe conversion before returning
    			cl:      "9223372036854775807",
    			wantErr: nil,
    		},
    		{
    			cl:      "9223372036854775808",
    			wantErr: badStringError("bad Content-Length", "9223372036854775808"),
    		},
    	}
    
    	for _, tt := range tests {
    		if _, gotErr := parseContentLength([]string{tt.cl}); !reflect.DeepEqual(gotErr, tt.wantErr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:16:28 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  9. internal/config/api/api.go

    			Key:   apiRootAccess,
    			Value: config.EnableOn,
    		},
    		config.KV{
    			Key:   apiSyncEvents,
    			Value: config.EnableOff,
    		},
    		config.KV{
    			Key:   apiObjectMaxVersions,
    			Value: "9223372036854775807",
    		},
    	}
    )
    
    // Config storage class configuration
    type Config struct {
    	RequestsMax                 int           `json:"requests_max"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode_test.go

    			want:          int64(0),
    			assertOnError: assertNilError,
    		},
    		{
    			name:          "int64 max positive value",
    			in:            hex("1b7fffffffffffffff"), // 9223372036854775807
    			want:          int64(9223372036854775807),
    			assertOnError: assertNilError,
    		},
    		{
    			name: "max positive integer value supported by cbor: 2^64 - 1",
    			in:   hex("1bffffffffffffffff"), // 18446744073709551615
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 18:43:10 UTC 2024
    - 25.6K bytes
    - Viewed (0)
Back to top