Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 61 for 1000000000000000 (0.27 sec)

  1. src/time/time.go

    // The [Time.Sub] method subtracts two instants, producing a [Duration].
    // The [Time.Add] method adds a Time and a Duration, producing a Time.
    //
    // The zero value of type Time is January 1, year 1, 00:00:00.000000000 UTC.
    // As this time is unlikely to come up in practice, the [Time.IsZero] method gives
    // a simple way of detecting a time that has not been initialized explicitly.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  2. test/fixedbugs/issue66066b.go

    	return int64(int8(x))
    }
    
    func main() {
    	if got := f32(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1); got != 0xffffffff {
    		println("bad f32", got)
    	}
    	if got := f16(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1); got != 0xffff {
    		println("bad f16", got)
    	}
    	if got := f8(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1); got != 0xff {
    		println("bad f8", got)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 17:35:29 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/validation/validator.go

    	serverIP, _ := netip.AddrFromSlice([]byte{127, 0, 0, 6})
    	if isIPv6 {
    		listenIP, _ = netip.AddrFromSlice([]byte{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1})
    		serverIP, _ = netip.AddrFromSlice([]byte{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6})
    	}
    	return &Validator{
    		Config: &Config{
    			ServerListenAddress: genListenerAddress(listenIP, []string{config.ProxyPort, config.InboundCapturePort}),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 01 04:37:36 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  4. src/crypto/tls/testdata/Client-TLSv12-ECDHE-ECDSA-AES-GCM

    00000030  8b 1d c4                                          |...|
    >>> Flow 5 (client to server)
    00000000  17 03 03 00 1e 00 00 00  00 00 00 00 01 c7 7d a7  |..............}.|
    00000010  c4 a5 a1 21 94 7a 23 bc  05 44 7d 4a 2f 16 dc 95  |...!.z#..D}J/...|
    00000020  25 6e 17 15 03 03 00 1a  00 00 00 00 00 00 00 02  |%n..............|
    00000030  77 fa b6 34 7e 60 77 f9  a5 09 d1 39 b0 1e 66 86  |w..4~`w....9..f.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. mockwebserver/src/test/java/mockwebserver3/RecordedRequestTest.kt

      }
    
      @Test fun testIpv6() {
        val socket =
          FakeSocket(
            localAddress =
              InetAddress.getByAddress(
                "::1",
                byteArrayOf(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1),
              ),
            localPort = 80,
          )
        val request = RecordedRequest("GET / HTTP/1.1", headers, emptyList(), 0, Buffer(), 0, socket)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. src/math/all_test.go

    	2.161703872847352815363655e+00,
    }
    var logb = []float64{
    	2.0000000000000000e+00,
    	2.0000000000000000e+00,
    	-2.0000000000000000e+00,
    	2.0000000000000000e+00,
    	3.0000000000000000e+00,
    	1.0000000000000000e+00,
    	2.0000000000000000e+00,
    	1.0000000000000000e+00,
    	0.0000000000000000e+00,
    	3.0000000000000000e+00,
    }
    var log10 = []float64{
    	6.9714316642508290997617083e-01,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
  7. src/crypto/internal/edwards25519/scalar_fiat.go

    	x19 := (uint64(fiatScalarUint1(x18)) + x6)
    	var x20 uint64
    	_, x20 = bits.Mul64(x11, 0xd2b51da312547e1b)
    	var x22 uint64
    	var x23 uint64
    	x23, x22 = bits.Mul64(x20, 0x1000000000000000)
    	var x24 uint64
    	var x25 uint64
    	x25, x24 = bits.Mul64(x20, 0x14def9dea2f79cd6)
    	var x26 uint64
    	var x27 uint64
    	x27, x26 = bits.Mul64(x20, 0x5812631a5cf5d3ed)
    	var x28 uint64
    	var x29 uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 18:45:00 UTC 2022
    - 35.6K bytes
    - Viewed (0)
  8. src/strconv/atof_test.go

    	{"0x1.000000000000081p0", "1.0000000000000002", nil},
    	{"0x1.00000000000009p0", "1.0000000000000002", nil},
    	// Slightly higher, but you have to read all the way to the end.
    	{"1.00000000000000011102230246251565404236316680908203125" + strings.Repeat("0", 10000) + "1", "1.0000000000000002", nil},
    	{"0x1.00000000000008" + strings.Repeat("0", 10000) + "1p0", "1.0000000000000002", nil},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 16:24:57 UTC 2022
    - 23.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/low_bit_packing.mlir

      // CHECK:   description: "MLIR Converted.",
      // CHECK:   buffers: [ {
      // CHECK-EMPTY
      // CHECK:   }, {
      // CHECK:     data: [ 56, 190 ]
      // CHECK:   }, {
      // CHECK:     data: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
      // CHECK:   } ],
      // CHECK:   metadata: [ {
      // CHECK:     name: "min_runtime_version",
      // CHECK:     buffer: 2
      // CHECK:   } ],
      // CHECK:   signature_defs: [  ]
      // CHECK: }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 12 20:13:51 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/cast_bf16.mlir

    // CHECK-EMPTY:
    // CHECK-NEXT:      }, {
    // CHECK-EMPTY:
    // CHECK-NEXT:      }, {
    // CHECK-EMPTY:
    // CHECK-NEXT:      }, {
    // CHECK-EMPTY:
    // CHECK-NEXT:      }, {
    // CHECK-NEXT:        data: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
    // CHECK-NEXT:      } ],
    // CHECK-NEXT:      metadata: [ {
    // CHECK-NEXT:        name: "min_runtime_version",
    // CHECK-NEXT:        buffer: 4
    // CHECK-NEXT:      } ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 18 21:28:19 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top