Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 78 for 1000000000000000 (0.09 sec)

  1. src/debug/dwarf/type_test.go

    	"t_my_union":                            "union my_union {vi volatile int@0; x char@0 : 1@7; y int@0 : 4@28; array [40]long long int@0}",
    	"t_my_enum":                             "enum my_enum {e1=1; e2=2; e3=-5; e4=1000000000000000}",
    	"t_my_list":                             "struct list {val short int@0; next *t_my_list@8}",
    	"t_my_tree":                             "struct tree {left *struct tree@0; right *struct tree@8; val long long unsigned int@16}",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 15:49:05 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/net/mac.go

    //
    //	00:00:5e:00:53:01
    //	02:00:5e:10:00:00:00:01
    //	00:00:00:00:fe:80:00:00:00:00:00:00:02:00:5e:10:00:00:00:01
    //	00-00-5e-00-53-01
    //	02-00-5e-10-00-00-00-01
    //	00-00-00-00-fe-80-00-00-00-00-00-00-02-00-5e-10-00-00-00-01
    //	0000.5e00.5301
    //	0200.5e10.0000.0001
    //	0000.0000.fe80.0000.0000.0000.0200.5e10.0000.0001
    func ParseMAC(s string) (hw HardwareAddr, err error) {
    	if len(s) < 14 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/net/example_test.go

    	// 2001:db8::
    }
    
    func ExampleIP_String() {
    	ipv6 := net.IP{0xfc, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}
    	ipv4 := net.IPv4(10, 255, 0, 0)
    
    	fmt.Println(ipv6.String())
    	fmt.Println(ipv4.String())
    
    	// Output:
    	// fc00::
    	// 10.255.0.0
    }
    
    func ExampleIP_To16() {
    	ipv6 := net.IP{0xfc, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}
    	ipv4 := net.IPv4(10, 255, 0, 0)
    
    	fmt.Println(ipv6.To16())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 13 16:36:59 UTC 2021
    - 8.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/variant_type_on_op.mlir

    // CHECK-NEXT:   buffers: [ {
    // CHECK-EMPTY:
    // CHECK-NEXT:   }, {
    // CHECK-NEXT:     data: [ 128, 0, 0, 0, 128, 0, 0, 0 ]
    // 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: 2
    // CHECK-NEXT:   } ],
    // CHECK-NEXT:   signature_defs: [  ]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 16 20:36:14 UTC 2022
    - 1.8K bytes
    - Viewed (0)
Back to top