Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for 100000000000 (0.09 sec)

  1. staging/src/k8s.io/apimachinery/pkg/api/resource/math.go

    		return 100000
    	case 6:
    		return 1000000
    	case 7:
    		return 10000000
    	case 8:
    		return 100000000
    	case 9:
    		return 1000000000
    	case 10:
    		return 10000000000
    	case 11:
    		return 100000000000
    	case 12:
    		return 1000000000000
    	case 13:
    		return 10000000000000
    	case 14:
    		return 100000000000000
    	case 15:
    		return 1000000000000000
    	case 16:
    		return 10000000000000000
    	case 17:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 23 13:07:14 UTC 2020
    - 7.3K bytes
    - Viewed (0)
  2. src/net/testdata/igmp

    1	lo        :     1      V3
    				010000E0     1 0:00000000		0
    2	eth0      :     2      V2
    				FB0000E0     1 0:00000000		1
    				010000E0     1 0:00000000		0
    3	eth1      :     1      V3
    				010000E0     1 0:00000000		0
    4	eth2      :     1      V3
    				010000E0     1 0:00000000		0
    5	eth0.100  :     2      V3
    				FB0000E0     1 0:00000000		0
    				010000E0     1 0:00000000		0
    6	eth0.101  :     2      V3
    				FB0000E0     1 0:00000000		0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 775 bytes
    - Viewed (0)
  3. 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)
  4. src/net/testdata/igmp6

    9    eth0.103        ff0200000000000000000001ffac891e     1 00000004 0
    9    eth0.103        ff020000000000000000000000000001     1 0000000C 0
    10   device1tap2     ff0200000000000000000001ff4cc3a3     1 00000004 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.2K bytes
    - Viewed (0)
  5. 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)
  6. src/main/webapp/js/admin/plugins/form-validator/brazil.js

    .exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.formUtils.registerLoadedModule("brazil"),a.formUtils.addValidator({name:"cpf",validatorFunction:function(a){var b=a.replace(/\D/g,""),c=0,d=0,e=0,f=0;if(11!==b.length||"00000000000"===b)return!1;for(i=1;i<=9;i++)c+=parseInt(b.substring(i-1,i))*(11-i);if(e=10*c%11,e>=10&&(e=0),e!==parseInt(b.substring(9,10)))return!1;for(i=1;i<=10;i++)d+=parseInt(b.substring(i-1,i))*(12-i);return f=10*d%11,f>=10&&(f=0),f===parseInt(b.subst...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  7. 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)
  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. 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)