Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for 9223372036854775807Ki (0.29 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/main/java/org/codelibs/fess/app/web/admin/fileconfig/CreateForm.java

        public String configParameter;
    
        @Min(value = 0)
        @Max(value = 2147483647)
        @ValidateTypeFailure
        public Integer depth;
    
        @Min(value = 0)
        @Max(value = 9223372036854775807L)
        @ValidateTypeFailure
        public Long maxAccessCount;
    
        @Required
        @Min(value = 1)
        @Max(value = 2147483647)
        @ValidateTypeFailure
        public Integer numOfThread;
    
        @Required
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/webconfig/CreateForm.java

        public String configParameter;
    
        @Min(value = 0)
        @Max(value = 2147483647)
        @ValidateTypeFailure
        public Integer depth;
    
        @Min(value = 0)
        @Max(value = 9223372036854775807L)
        @ValidateTypeFailure
        public Long maxAccessCount;
    
        @Required
        @Size(max = 200)
        public String userAgent;
    
        @Required
        @Min(value = 1)
        @Max(value = 2147483647)
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/json/json_test.go

    			Data: int64(math.MaxInt32),
    			Out:  `2147483647`,
    		},
    		{
    			In:   `-2147483648`,
    			Data: int64(math.MinInt32),
    			Out:  `-2147483648`,
    		},
    		{
    			In:   `9223372036854775807`,
    			Data: int64(math.MaxInt64),
    			Out:  `9223372036854775807`,
    		},
    		{
    			In:   `-9223372036854775808`,
    			Data: int64(math.MinInt64),
    			Out:  `-9223372036854775808`,
    		},
    
    		// Int overflow
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 28 08:02:09 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  10. 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)
Back to top