Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for 9223372036854775807 (0.29 sec)

  1. src/math/rand/v2/regress_test.go

    	int64(183731176326946086),  // Int64N(1000000000000000000)
    	int64(680987186633600239),  // Int64N(1152921504606846976)
    	int64(4102454148908803108), // Int64N(9223372036854775806)
    	int64(8679174511200971228), // Int64N(9223372036854775807)
    	int64(0),                   // Int64N(1)
    	int64(3),                   // Int64N(10)
    	int64(27),                  // Int64N(32)
    	int64(665831),              // Int64N(1048576)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:03:11 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/basic_test.go

    	unstructuredObj := gottenNoxuInstance.(*unstructured.Unstructured).Object
    	num := unstructuredObj["num"].(map[string]interface{})
    	num1 := num["num1"].(int64)
    	num2 := num["num2"].(int64)
    	if num1 != 9223372036854775807 || num2 != 1000000 {
    		t.Errorf("Expected %v, got %v, %v", `9223372036854775807, 1000000`, num1, num2)
    	}
    }
    
    func TestPatch(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 11:35:33 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  6. src/math/big/int_test.go

    			"638952175999932299156089414639761565182862536979208272237582" +
    			"511852109168640000000000000000000000", // -99!
    	},
    
    	// overflow situations
    	{math.MaxInt64 - 0, math.MaxInt64, "9223372036854775807"},
    	{math.MaxInt64 - 1, math.MaxInt64, "85070591730234615838173535747377725442"},
    	{math.MaxInt64 - 2, math.MaxInt64, "784637716923335094969050127519550606919189611815754530810"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  7. src/encoding/json/decode_test.go

    		in:       `{"0":"a","10":"c","9":"b"}`,
    		ptr:      new(map[u8]string),
    		out:      map[u8]string{0: "a", 9: "b", 10: "c"},
    	},
    	{
    		CaseName: Name(""),
    		in:       `{"-9223372036854775808":"min","9223372036854775807":"max"}`,
    		ptr:      new(map[int64]string),
    		out:      map[int64]string{math.MinInt64: "min", math.MaxInt64: "max"},
    	},
    	{
    		CaseName: Name(""),
    		in:       `{"18446744073709551615":"max"}`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  8. src/internal/types/testdata/spec/range_int.go

    	}
    	for range maxUint /* ERROR "cannot use maxUint (untyped int constant 18446744073709551615) as int value in range clause (overflows)" */ {
    	}
    
    	for i := range maxInt {
    		_ = i
    	}
    	for i := range maxInt /* ERROR "cannot use maxInt + 1 (untyped int constant 9223372036854775808) as int value in range clause (overflows)" */ + 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:56:00 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. src/internal/types/testdata/check/stmt0.go

    	}
    }
    
    func issue11667() {
    	switch 9223372036854775808 /* ERRORx `cannot use .* as int value.*\(overflows\)` */ {
    	}
    	switch 9223372036854775808 /* ERRORx `cannot use .* as int value.*\(overflows\)` */ {
    	case 9223372036854775808:
    	}
    	var x int
    	switch x {
    	case 9223372036854775808 /* ERROR "overflows int" */ :
    	}
    	var y float64
    	switch y {
    	case 9223372036854775808:
    	}
    }
    
    func issue11687() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. cmd/testdata/undeleteable-object.tgz

    p_interval","value":"5m"},{"key":"disable_odirect","value":""},{"key":"odirect","value":"on"},{"key":"gzip_objects","value":"off"},{"key":"root_access","value":"on"},{"key":"sync_events","value":"off"},{"key":"object_max_versions","value":"9223372036854775807"}]},"audit_kafka":{"_":[{"key":"enable","value":"off"},{"key":"topic","value":""},{"key":"brokers","value":""},{"key":"sasl_username","value":""},{"key":"sasl_password","value":""},{"key":"sasl_mechanism","value":"plain"},{"key":"client_tls...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 26 00:31:12 UTC 2024
    - 8.7M bytes
    - Viewed (0)
Back to top