Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 58 for 9223372036854775809B (0.35 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  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. test/fixedbugs/bug155.go

    	return a << big
    }
    
    func main() {
    	f(1)
    }
    
    /*
    main·f: doasm: notfound from=75 to=13 (82)    SHLQ    $-9223372036854775808,BX
    main·f: doasm: notfound from=75 to=13 (82)    SHLQ    $-9223372036854775808,BX
    main·f: doasm: notfound from=75 to=13 (82)    SHLQ    $-9223372036854775808,BX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 21 23:19:59 UTC 2012
    - 525 bytes
    - Viewed (0)
  7. 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)
  8. guava-tests/test/com/google/common/cache/LongAdderTest.java

        assertThat(longAdder.sum()).isEqualTo(Long.MAX_VALUE);
        longAdder.add(1);
        // silently overflows; is this a bug?
        // See https://github.com/google/guava/issues/3503
        assertThat(longAdder.sum()).isEqualTo(-9223372036854775808L);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jul 09 04:11:29 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top