Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 66 for 9223372036854775807 (0.25 sec)

  1. api/go1.14.txt

    pkg syscall (freebsd-arm64), const PTRACE_KILL ideal-int
    pkg syscall (freebsd-arm64), const PTRACE_TRACEME = 0
    pkg syscall (freebsd-arm64), const PTRACE_TRACEME ideal-int
    pkg syscall (freebsd-arm64), const RLIM_INFINITY = 9223372036854775807
    pkg syscall (freebsd-arm64), const RLIM_INFINITY ideal-int
    pkg syscall (freebsd-arm64), const RLIMIT_AS = 10
    pkg syscall (freebsd-arm64), const RLIMIT_AS ideal-int
    pkg syscall (freebsd-arm64), const RLIMIT_CORE = 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 508.9K bytes
    - Viewed (0)
  2. api/go1.16.txt

    pkg syscall (darwin-arm64), const RLIMIT_NOFILE ideal-int
    pkg syscall (darwin-arm64), const RLIMIT_STACK = 3
    pkg syscall (darwin-arm64), const RLIMIT_STACK ideal-int
    pkg syscall (darwin-arm64), const RLIM_INFINITY = 9223372036854775807
    pkg syscall (darwin-arm64), const RLIM_INFINITY ideal-int
    pkg syscall (darwin-arm64), const RTAX_AUTHOR = 6
    pkg syscall (darwin-arm64), const RTAX_AUTHOR ideal-int
    pkg syscall (darwin-arm64), const RTAX_BRD = 7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  3. doc/go_spec.html

    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
    float64     the set of all IEEE 754 64-bit floating-point numbers
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  4. src/math/big/ratconv_test.go

    	{in: "1e+14e-5"},
    	{in: "1e4.5"},
    	{in: "r"},
    	{in: "a/b"},
    	{in: "a.b"},
    	{in: "1/0"},
    	{in: "4/3/2"}, // issue 17001
    	{in: "4/3/"},
    	{in: "4/3."},
    	{in: "4/"},
    	{in: "13e-9223372036854775808"}, // CVE-2022-23772
    
    	// valid
    	{"0", "0", true},
    	{"-0", "0", true},
    	{"1", "1", true},
    	{"-1", "-1", true},
    	{"1.", "1", true},
    	{"1e0", "1", true},
    	{"1.e1", "10", true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/arm64enc.s

    // TODO means they cannot be handled by current assembler.
    
    #include "../../../../../runtime/textflag.h"
    
    TEXT asmtest(SB),DUPOK|NOSPLIT,$-8
    
    	AND $(1<<63), R1                           // AND $-9223372036854775808, R1     // 21004192
    	ADCW ZR, R8, R10                           // 0a011f1a
    	ADC R0, R2, R12                            // 4c00009a
    	ADCSW R9, R21, R6                          // a602093a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 01:11:41 UTC 2023
    - 43.9K bytes
    - Viewed (0)
  6. okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerTest.kt

        assertThat(Adapters.INTEGER_AS_LONG.toDer(Long.MIN_VALUE)).isEqualTo(bytes)
      }
    
      @Test fun `bigger than max long`() {
        val bytes = "0209008000000000000001".decodeHex()
        val bigInteger = BigInteger("9223372036854775809")
        assertThat(Adapters.INTEGER_AS_BIG_INTEGER.fromDer(bytes)).isEqualTo(bigInteger)
        assertThat(Adapters.INTEGER_AS_BIG_INTEGER.toDer(bigInteger)).isEqualTo(bytes)
      }
    
      @Test fun `utf8 string`() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  7. test/codegen/arithmetic.go

    		// and the normal JMP generated at the end of the block.
    		d += e
    	}
    	return d, e
    }
    
    func NoFix64B(divd int64) (int64, int64) {
    	var d int64
    	var e int64
    	var divr int64 = -1
    	if divd > -9223372036854775808 {
    		d = divd / divr // amd64:-"JMP"
    		e = divd % divr // amd64:-"JMP"
    		d += e
    	}
    	return d, e
    }
    
    func NoFix32A(divr int32) (int32, int32) {
    	var d int32 = 42
    	var e int32 = 84
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:28:00 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_container_test.go

    		},
    		// too big of the integer
    		{
    			filenames:    []string{"92233720368547758089223372036854775808.log.rotated"},
    			restartCount: 0,
    		},
    		// mix of log files
    		{
    			filenames:    []string{"9223372036854775808.log.rotated", "23.log", "23a.log", "1aaa.log.rotated", "2.log", "3.log.rotated"},
    			restartCount: 24,
    		},
    		// prefixed
    		{
    			filenames:    []string{"rotated.23.log"},
    			restartCount: 0,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 28K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/math/BigIntegerMathTest.java

              assertEquals(expected, BigIntegerMath.divide(p, q, mode));
            }
          }
        }
      }
    
      private static final BigInteger BAD_FOR_ANDROID_P = new BigInteger("-9223372036854775808");
      private static final BigInteger BAD_FOR_ANDROID_Q = new BigInteger("-1");
    
      @GwtIncompatible // TODO
      @AndroidIncompatible // slow
      public void testDivNonZeroExact() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 17:58:33 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  10. src/math/big/float_test.go

    func TestFloatInt64(t *testing.T) {
    	for _, test := range []struct {
    		x   string
    		out int64
    		acc Accuracy
    	}{
    		{"-Inf", math.MinInt64, Above},
    		{"-1e10000", math.MinInt64, Above},
    		{"-9223372036854775809", math.MinInt64, Above},
    		{"-9223372036854775808.000000000000000000001", math.MinInt64, Above},
    		{"-9223372036854775808", -9223372036854775808, Exact},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
Back to top