Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for 9223372036854775807Ki (0.35 sec)

  1. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    		{"0.9n", decQuantity(1, -9, DecimalSI)},
    		{"0.00000012345", decQuantity(124, -9, DecimalSI)},
    		{"0.00000012354", decQuantity(124, -9, DecimalSI)},
    		{"9Ei", Quantity{d: maxAllowed, Format: BinarySI}},
    		{"9223372036854775807Ki", Quantity{d: maxAllowed, Format: BinarySI}},
    		{"12E", decQuantity(12, 18, DecimalSI)},
    
    		// We'll accept fractional binary stuff, too.
    		{"100.035Ki", decQuantity(10243584, -2, BinarySI)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/testdata/arithBoundary_test.go

    	itd64{a: -9223372036854775807, b: -1, add: -9223372036854775808, sub: -9223372036854775806, mul: 9223372036854775807, div: 9223372036854775807, mod: 0},
    	itd64{a: -9223372036854775807, b: 0, add: -9223372036854775807, sub: -9223372036854775807, mul: 0},
    	itd64{a: -9223372036854775807, b: 1, add: -9223372036854775806, sub: -9223372036854775808, mul: -9223372036854775807, div: -9223372036854775807, mod: 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 31.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/test/testdata/arithConst_test.go

    	test_int64{fn: add_0_int64, fnname: "add_0_int64", in: 9223372036854775807, want: 9223372036854775807},
    	test_int64{fn: add_int64_0, fnname: "add_int64_0", in: 9223372036854775807, want: 9223372036854775807},
    	test_int64{fn: add_1_int64, fnname: "add_1_int64", in: -9223372036854775808, want: -9223372036854775807},
    	test_int64{fn: add_int64_1, fnname: "add_int64_1", in: -9223372036854775808, want: -9223372036854775807},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 633.8K bytes
    - Viewed (0)
  4. test/fixedbugs/issue53600.out

    9223372036854775807 false
    done
    9223372036854775806 false
    9223372036854775807 false
    done
    9223372036854775805 false
    9223372036854775807 false
    done
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 06 17:00:37 UTC 2022
    - 165 bytes
    - Viewed (0)
  5. api/go1.17.txt

    pkg io/fs, func FileInfoToDirEntry(FileInfo) DirEntry
    pkg math (darwin-amd64), const MaxInt = 9223372036854775807
    pkg math (darwin-amd64), const MaxUint = 18446744073709551615
    pkg math (darwin-amd64), const MinInt = -9223372036854775808
    pkg math (darwin-amd64-cgo), const MaxInt = 9223372036854775807
    pkg math (darwin-amd64-cgo), const MaxUint = 18446744073709551615
    pkg math (darwin-amd64-cgo), const MinInt = -9223372036854775808
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 18K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/test/constFold_test.go

    	}
    	y = 9223372036854775807
    	r = x + y
    	if r != 9223372036854775807 {
    		t.Errorf("0 %s 9223372036854775807 = %d, want 9223372036854775807", "+", r)
    	}
    	x = 1
    	y = -9223372036854775808
    	r = x + y
    	if r != -9223372036854775807 {
    		t.Errorf("1 %s -9223372036854775808 = %d, want -9223372036854775807", "+", r)
    	}
    	y = -9223372036854775807
    	r = x + y
    	if r != -9223372036854775806 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 323K bytes
    - Viewed (0)
  7. test/fixedbugs/issue53653.out

    -9223372036854775808 false
    done
    -9223372036854775807 false
    -9223372036854775808 false
    done
    -9223372036854775806 false
    -9223372036854775808 false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 06 17:00:37 UTC 2022
    - 150 bytes
    - Viewed (0)
  8. utils/utils_test.go

    	tests := []struct {
    		name string
    		in   interface{}
    		out  string
    	}{
    		{"int", math.MaxInt64, "9223372036854775807"},
    		{"int8", int8(math.MaxInt8), "127"},
    		{"int16", int16(math.MaxInt16), "32767"},
    		{"int32", int32(math.MaxInt32), "2147483647"},
    		{"int64", int64(math.MaxInt64), "9223372036854775807"},
    		{"uint", uint(math.MaxUint64), "18446744073709551615"},
    		{"uint8", uint8(math.MaxUint8), "255"},
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Feb 19 03:42:25 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. test/literal.go

    	assert(i23 == (1<<31)-1, "i23 size")
    
    	// int64
    	var i30 int64 = 0
    	var i31 int64 = 1
    	var i32 int64 = -1
    	var i33 int64 = 9223372036854775807
    	var i34 int64 = -9223372036854775807
    	var i35 int64 = -9223372036854775808
    	var i36 int64 = +9223372036854775807
    	assert(i31 == i30+1, "i31")
    	assert(i32 == -i31, "i32")
    	assert(i33 == -i34, "i33")
    	assert(-(i35+1) == i36, "i35")
    	assert(i33 == (1<<63)-1, "i33 size")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 12 18:17:49 UTC 2013
    - 5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/wizard/CrawlingConfigForm.java

        @Size(max = 1000)
        public String crawlingConfigPath;
    
        @Min(value = 0)
        @Max(value = 2147483647)
        @ValidateTypeFailure
        public Integer depth;
    
        @Min(value = 0)
        @Max(value = 9223372036854775807L)
        @ValidateTypeFailure
        public Long maxAccessCount;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top