Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for 9223372036854775807 (0.19 sec)

  1. src/cmd/compile/internal/test/constFold_test.go

    	}
    	y = 9223372036854775806
    	r = x + y
    	if r != 9223372036854775806 {
    		t.Errorf("0 %s 9223372036854775806 = %d, want 9223372036854775806", "+", r)
    	}
    	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 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 323K bytes
    - Viewed (0)
  2. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const PTRACE_TRACEME = 0
    pkg syscall (netbsd-arm64-cgo), const PTRACE_TRACEME ideal-int
    pkg syscall (netbsd-arm64-cgo), const RLIM_INFINITY = 9223372036854775807
    pkg syscall (netbsd-arm64-cgo), const RLIM_INFINITY ideal-int
    pkg syscall (netbsd-arm64-cgo), const RLIMIT_AS = 10
    pkg syscall (netbsd-arm64-cgo), const RLIMIT_AS ideal-int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 08 18:44:16 UTC 2019
    - 452.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

    // -----
    
    // CHECK-LABEL: func @argmin_i64_input_i32_output_axis_0
    func.func @argmin_i64_input_i32_output_axis_0(%arg0: tensor<3x7xi64>) -> tensor<7xi32> {
      // CHECK: %[[INIT:.*]] = mhlo.constant dense<9223372036854775807> : tensor<i64>
      // CHECK-NEXT: %[[INDEX_INIT:.*]] = mhlo.constant dense<0> : tensor<i32>
      // CHECK: %[[SHAPE:.*]] = shape.shape_of %arg0 : tensor<3x7xi64> -> tensor<2xindex>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
Back to top