Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for 100000000000 (0.24 sec)

  1. src/go/constant/value_test.go

    	`0 * 0 = 0`,
    	`1 * 0.1 = 0.1`,
    	`1 * 0.1i = 0.1i`,
    	`1i * 1i = -1`,
    	`? * 0 = ?`,
    	`0 * ? = ?`,
    	`0 * 1e+1000000000 = ?`,
    
    	`0 / 0 = "division_by_zero"`,
    	`10 / 2 = 5`,
    	`5 / 3 = 5/3`,
    	`5i / 3i = 5/3`,
    	`? / 0 = ?`,
    	`0 / ? = ?`,
    	`0 * 1e+1000000000i = ?`,
    
    	`0 % 0 = "runtime_error:_integer_divide_by_zero"`, // TODO(gri) should be the same as for /
    	`10 % 3 = 1`,
    	`? % 0 = ?`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 15.6K bytes
    - Viewed (0)
  2. src/runtime/pprof/proto_test.go

    7f7d77f65000-7f7d77f66000 rw-p 00000000 00:00 0
    7ffc342a2000-7ffc342c3000 rw-p 00000000 00:00 0                          [stack]
    7ffc34343000-7ffc34345000 r-xp 00000000 00:00 0                          [vdso]
    ffffffffff600000-ffffffffff601000 r-xp 00000090 00:00 0                  [vsyscall]
    ->
    00400000 0040b000 00000000 /bin/cat
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 23:21:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  3. pkg/kubelet/metrics/collectors/resource_metrics_test.go

    		},
    		{
    			name: "arbitrary node metrics",
    			summary: &statsapi.Summary{
    				Node: statsapi.NodeStats{
    					CPU: &statsapi.CPUStats{
    						Time:                 testTime,
    						UsageCoreNanoSeconds: uint64Ptr(10000000000),
    					},
    					Memory: &statsapi.MemoryStats{
    						Time:            testTime,
    						WorkingSetBytes: uint64Ptr(1000),
    					},
    					Swap: &statsapi.SwapStats{
    						Time:           testTime,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 15.3K bytes
    - Viewed (1)
  4. okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerTest.kt

          .isEqualTo(date("1950-01-01T00:00:00.000+0000").time)
        assertThat(Adapters.parseGeneralizedTime("20500101000000Z"))
          .isEqualTo(date("2050-01-01T00:00:00.000+0000").time)
        assertThat(Adapters.parseGeneralizedTime("20990101000000Z"))
          .isEqualTo(date("2099-01-01T00:00:00.000+0000").time)
        assertThat(Adapters.parseGeneralizedTime("19920521000000Z"))
          .isEqualTo(date("1992-05-21T00:00:00.000+0000").time)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  5. src/net/addrselect_test.go

    		{netip.MustParseAddr("ff0e::"), scopeGlobal},     // IPv6 multicast
    
    		{netip.AddrFrom16([16]byte{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0xe0, 0, 0, 0}), scopeGlobal}, // IPv4 link-local multicast as 16 bytes
    		{netip.AddrFrom16([16]byte{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0xe0, 2, 2, 2}), scopeGlobal}, // IPv4 global multicast as 16 bytes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 05 07:16:00 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  6. src/encoding/ascii85/ascii85_test.go

    }
    
    var pairs = []testpair{
    	// Encode returns 0 when len(src) is 0
    	{
    		"",
    		"",
    	},
    	// Wikipedia example
    	bigtest,
    	// Special case when shortening !!!!! to z.
    	{
    		"\000\000\000\000",
    		"z",
    	},
    }
    
    func testEqual(t *testing.T, msg string, args ...any) bool {
    	t.Helper()
    	if args[len(args)-2] != args[len(args)-1] {
    		t.Errorf(msg, args...)
    		return false
    	}
    	return true
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:46:20 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  7. src/runtime/pprof/proto.go

    	// 7f7d77f65000-7f7d77f66000 rw-p 00000000 00:00 0
    	// 7ffc342a2000-7ffc342c3000 rw-p 00000000 00:00 0                          [stack]
    	// 7ffc34343000-7ffc34345000 r-xp 00000000 00:00 0                          [vdso]
    	// ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0                  [vsyscall]
    
    	var line []byte
    	// next removes and returns the next field in the line.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 13 20:40:52 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_download_svn.txt

    env SVN_SSH="svn_do_not_use_ssh"
    
    env GO111MODULE=on
    env GOPROXY=direct
    env GOSUMDB=off
    
    # Attempting to get a module zip using svn should succeed.
    go mod download vcs-test.golang.org/svn/hello.svn@000000000001
    exists $GOPATH/pkg/mod/cache/download/vcs-test.golang.org/svn/hello.svn/@v/v0.0.0-20170922011245-000000000001.zip
    
    # Attempting to get a nonexistent module using svn should fail with a
    # reasonable message instead of a panic.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. src/net/external_test.go

    		"www.google.com:80",
    		"%d.%d.%d.%d:http",
    		"www.google.com:http",
    		"%03d.%03d.%03d.%03d:0080",
    		"[::ffff:%d.%d.%d.%d]:80",
    		"[::ffff:%02x%02x:%02x%02x]:80",
    		"[0:0:0:0:0000:ffff:%d.%d.%d.%d]:80",
    		"[0:0:0:0:000000:ffff:%d.%d.%d.%d]:80",
    		"[0:0:0:0::ffff:%d.%d.%d.%d]:80",
    	}
    	literalAddrs6 = [...]string{
    		"[%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x]:80",
    		"ipv6.google.com:80",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. src/archive/tar/writer_test.go

    	// that fails and replaced ever char through numbers to anonymize the sample.
    	longName := "/0000_0000000/00000-000000000/0000_0000000/00000-0000000000000/0000_0000000/00000-0000000-00000000/0000_0000000/00000000/0000_0000000/000/0000_0000000/00000000v00/0000_0000000/000000/0000_0000000/0000000/0000_0000000/00000y-00/0000/0000/00000000/0x000000/"
    	hdr.Name = longName
    
    	hdr.Size = 0
    	var buf bytes.Buffer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
Back to top