Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 51 for 2147483647 (0.11 sec)

  1. src/cmd/asm/internal/asm/testdata/amd64error.s

    	// Non-X0 for Yxr0 should produce an error
    	BLENDVPD X1, (BX), X2           // ERROR "invalid instruction"
    	// Check offset overflow. Must fit in int32.
    	MOVQ 2147483647+1(AX), AX       // ERROR "offset too large"
    	MOVQ 3395469782(R10), R8        // ERROR "offset too large"
    	LEAQ 3395469782(AX), AX         // ERROR "offset too large"
    	ADDQ 3395469782(AX), AX         // ERROR "offset too large"
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. api/go1.16.txt

    pkg debug/elf, const DT_DEPAUDIT DynTag
    pkg debug/elf, const DT_FEATURE = 1879047676
    pkg debug/elf, const DT_FEATURE DynTag
    pkg debug/elf, const DT_FILTER = 2147483647
    pkg debug/elf, const DT_FILTER DynTag
    pkg debug/elf, const DT_FLAGS_1 = 1879048187
    pkg debug/elf, const DT_FLAGS_1 DynTag
    pkg debug/elf, const DT_GNU_CONFLICT = 1879047928
    pkg debug/elf, const DT_GNU_CONFLICT DynTag
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  3. doc/go_spec.html

    int8        the set of all signed  8-bit integers (-128 to 127)
    int16       the set of all signed 16-bit integers (-32768 to 32767)
    int32       the set of all signed 32-bit integers (-2147483648 to 2147483647)
    int64       the set of all signed 64-bit integers (-9223372036854775808 to 9223372036854775807)
    
    float32     the set of all IEEE 754 32-bit floating-point numbers
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Oct 02 00:58:01 UTC 2024
    - 282.5K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/internal/http2/HpackTest.kt

        bytesIn.writeByte(0x3f)
        bytesIn.write("e1ffffff07".decodeHex()) // count = -2147483648
        assertFailsWith<IOException> {
          hpackReader!!.readHeaders()
        }.also { expected ->
          assertThat(expected.message)
            .isEqualTo("Invalid dynamic table size update -2147483648")
        }
      }
    
      /**
       * http://tools.ietf.org/html/draft-ietf-httpbis-header-compression-12#appendix-C.2.4
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  5. api/go1.4.txt

    pkg syscall (windows-amd64), const SIO_UDP_CONNRESET ideal-int
    
    # CL 102320044 syscall: implement syscall.Getppid() on Windows, Alan Shreve <******@****.***>
    pkg syscall (windows-386), const TH32CS_INHERIT = 2147483648
    pkg syscall (windows-386), const TH32CS_INHERIT ideal-int
    pkg syscall (windows-386), const TH32CS_SNAPALL = 15
    pkg syscall (windows-386), const TH32CS_SNAPALL ideal-int
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Dec 12 03:01:01 UTC 2014
    - 34K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/math/LongMathTest.java

      public void testCheckedMultiply() {
        boolean isAndroid = TestPlatform.isAndroid();
        for (long a : ALL_LONG_CANDIDATES) {
          for (long b : ALL_LONG_CANDIDATES) {
            if (isAndroid && a == -4294967296L && b == 2147483648L) {
              /*
               * Bug in older versions of Android we test against, since fixed: -9223372036854775808L /
               * -4294967296L = -9223372036854775808L!
               *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 15:00:32 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  7. api/go1.10.txt

    pkg debug/macho, const GENERIC_RELOC_TLV RelocTypeGeneric
    pkg debug/macho, const GENERIC_RELOC_VANILLA = 0
    pkg debug/macho, const GENERIC_RELOC_VANILLA RelocTypeGeneric
    pkg debug/macho, const LoadCmdRpath = 2147483676
    pkg debug/macho, const LoadCmdRpath LoadCmd
    pkg debug/macho, const X86_64_RELOC_BRANCH = 2
    pkg debug/macho, const X86_64_RELOC_BRANCH RelocTypeX86_64
    pkg debug/macho, const X86_64_RELOC_GOT = 4
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue Feb 06 05:00:01 UTC 2018
    - 30.1K bytes
    - Viewed (0)
  8. api/go1.14.txt

    pkg syscall (freebsd-arm64), const NET_RT_IFMALIST ideal-int
    pkg syscall (freebsd-arm64), const NET_RT_MAXID = 6
    pkg syscall (freebsd-arm64), const NET_RT_MAXID ideal-int
    pkg syscall (freebsd-arm64), const NOFLSH = 2147483648
    pkg syscall (freebsd-arm64), const NOFLSH ideal-int
    pkg syscall (freebsd-arm64), const NOTE_ATTRIB = 8
    pkg syscall (freebsd-arm64), const NOTE_ATTRIB ideal-int
    pkg syscall (freebsd-arm64), const NOTE_CHILD = 4
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 508.9K bytes
    - Viewed (0)
  9. src/bytes/bytes_test.go

    				t.Errorf("%s#%d got %q want %q", prefix, i, err, tt.errStr)
    			}
    		}
    	}
    
    	const maxInt = int(^uint(0) >> 1)
    
    	runTestCases("", []testCase{
    		0: {"--", -2147483647, "negative"},
    		1: {"", maxInt, ""},
    		2: {"-", 10, ""},
    		3: {"gopher", 0, ""},
    		4: {"-", -1, "negative"},
    		5: {"--", -102, "negative"},
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Mon Aug 19 19:09:04 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  10. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const F_DUPFD_CLOEXEC = 12
    pkg syscall (netbsd-arm64-cgo), const F_DUPFD_CLOEXEC ideal-int
    pkg syscall (netbsd-arm64-cgo), const F_DUPFD ideal-int
    pkg syscall (netbsd-arm64-cgo), const F_FSCTL = -2147483648
    pkg syscall (netbsd-arm64-cgo), const F_FSCTL ideal-int
    pkg syscall (netbsd-arm64-cgo), const F_FSDIRMASK = 1879048192
    pkg syscall (netbsd-arm64-cgo), const F_FSDIRMASK ideal-int
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Aug 08 18:44:16 UTC 2019
    - 452.6K bytes
    - Viewed (0)
Back to top