Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 57 for 100000000000 (0.15 sec)

  1. src/math/big/gcd_test.go

    func BenchmarkGCD10000x10000(b *testing.B)   { runGCD(b, 10000, 10000) }
    func BenchmarkGCD10000x100000(b *testing.B)  { runGCD(b, 10000, 100000) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 19:11:43 UTC 2016
    - 2.2K bytes
    - Viewed (0)
  2. 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)
  3. src/archive/tar/strconv_test.go

    		{07777777, "7777777\x00", true},
    		{010000000, "\x80\x00\x00\x00\x00\x20\x00\x00", true},
    		{0, "00000000000\x00", true},
    		{000001234567, "00001234567\x00", true},
    		{076543210321, "76543210321\x00", true},
    		{012345670123, "12345670123\x00", true},
    		{077777777777, "77777777777\x00", true},
    		{0100000000000, "\x80\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00", true},
    		{math.MaxInt64, "777777777777777777777\x00", true},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 09 05:28:50 UTC 2021
    - 14K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/kubelet/stats/cri_stats_provider_test.go

    					Timestamp: 1,
    					UsageCoreNanoSeconds: &runtimeapi.UInt64Value{
    						Value: 10000000000,
    					},
    				},
    			},
    			cpuUsageCache: map[string]*cpuUsageRecord{
    				"1": {
    					stats: &runtimeapi.CpuUsage{
    						Timestamp: 0,
    						UsageCoreNanoSeconds: &runtimeapi.UInt64Value{
    							Value: 10000000000,
    						},
    					},
    				},
    			},
    			expected: &value0,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiDistributionResolver.groovy

                }
            }
            distributions[toolingApiVersion]
        }
    
        private Collection<File> resolveDependency(String dependency) {
            LinkedList<Integer> retryMillis = [1000, 2000, 4000] as LinkedList
            List<Throwable> exceptions = []
            do {
                try {
                    Dependency dep = resolutionServices.dependencyHandler.create(dependency)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DirectoryWalkerTest.groovy

            given:
            def rootDir = tmpDir.createDir("root")
            long minimumTimestamp = (System.currentTimeMillis() / 1000 * 1000) - 2000
            def file1 = rootDir.createFile("a/b/1.txt")
            file1 << '12345'
            def file2 = rootDir.createFile("a/b/2.txt")
            file2 << '12345'
            def file3 = rootDir.createFile("a/b/3.txt")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  10. src/net/ip.go

    	IPv6loopback               = IP{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1}
    	IPv6interfacelocalallnodes = IP{0xff, 0x01, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x01}
    	IPv6linklocalallnodes      = IP{0xff, 0x02, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x01}
    	IPv6linklocalallrouters    = IP{0xff, 0x02, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x02}
    )
    
    // IsUnspecified reports whether ip is an unspecified address, either
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top