Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 98 for 1000Mi (0.27 sec)

  1. cmd/kube-apiserver/app/options/validation_test.go

    		},
    		{
    			name:         "service cidr is too big",
    			expectErrors: true,
    			options:      makeOptionsWithCIDRs("10.0.0.0/8", ""),
    		},
    		{
    			name:         "service cidr IPv4 is too big but gate enbled",
    			expectErrors: false,
    			options:      makeOptionsWithCIDRs("10.0.0.0/8", ""),
    			gate:         true,
    		},
    		{
    			name:         "service cidr IPv6 is too big but gate enbled",
    			expectErrors: false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. cmd/data-usage_test.go

    func TestDataUsageUpdate(t *testing.T) {
    	base := t.TempDir()
    	const bucket = "bucket"
    	files := []usageTestFile{
    		{name: "rootfile", size: 10000},
    		{name: "rootfile2", size: 10000},
    		{name: "dir1/d1file", size: 2000},
    		{name: "dir2/d2file", size: 300},
    		{name: "dir1/dira/dafile", size: 100000},
    		{name: "dir1/dira/dbfile", size: 200000},
    		{name: "dir1/dira/dirasub/dcfile", size: 1000000},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Mar 27 15:10:40 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/writers_test.go

    	benchmarkSerializeObject(b, toProtoBuf(b, benchmarkItems(b, "testdata/pod.json", 1000)))
    }
    func BenchmarkSerializeObject10000PodsPB(b *testing.B) {
    	benchmarkSerializeObject(b, toProtoBuf(b, benchmarkItems(b, "testdata/pod.json", 10000)))
    }
    func BenchmarkSerializeObject100000PodsPB(b *testing.B) {
    	benchmarkSerializeObject(b, toProtoBuf(b, benchmarkItems(b, "testdata/pod.json", 100000)))
    }
    
    func BenchmarkSerializeObject1000PodsJSON(b *testing.B) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  4. src/hash/maphash/smhasher_test.go

    	avalancheTest1(t, &bytesKey{make([]byte, 16)})
    	avalancheTest1(t, &bytesKey{make([]byte, 32)})
    	avalancheTest1(t, &bytesKey{make([]byte, 200)})
    }
    func avalancheTest1(t *testing.T, k key) {
    	const REP = 100000
    	r := rand.New(rand.NewSource(1234))
    	n := k.bits()
    
    	// grid[i][j] is a count of whether flipping
    	// input bit i affects output bit j.
    	grid := make([][hashSize]int, n)
    
    	for z := 0; z < REP; z++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. cluster/gce/config-test.sh

    # Optional: Don't require https for registries in our local RFC1918 network
    if [[ ${KUBE_ENABLE_INSECURE_REGISTRY:-false} = 'true' ]]; then
      EXTRA_DOCKER_OPTS="${EXTRA_DOCKER_OPTS} --insecure-registry 10.0.0.0/8"
    fi
    
    if [[ -n "${NODE_ACCELERATORS}" ]]; then
        if [[ "${NODE_ACCELERATORS}" =~ .*type=([a-zA-Z0-9-]+).* ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/caching/ComponentMetadataSupplierRuleExecutorTest.groovy

            if (expired) {
                // should check that the recorded service call returns the same value
                1 * record.getInput() >> '124'
                1 * record.getOutput() >> HashCode.fromInt(10000)
                1 * cachedResult.isChanging() >> changing
                1 * cachedResult.getId() >> id
                1 * cachePolicy.moduleExpiry({ it.id == id }, Duration.ZERO, changing) >> Stub(Expiry) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. pkg/util/iptables/testing/parse_test.go

    			rule: `-A KUBE-SVC-XPGD46QRK7WJZT7O -m comment --comment "ns1/svc1:p80 cluster IP" -m tcp -p tcp -d 172.30.0.41 --dport 80 ! -s 10.0.0.0/8 -j KUBE-MARK-MASQ`,
    			parsed: &Rule{
    				Raw:                `-A KUBE-SVC-XPGD46QRK7WJZT7O -m comment --comment "ns1/svc1:p80 cluster IP" -m tcp -p tcp -d 172.30.0.41 --dport 80 ! -s 10.0.0.0/8 -j KUBE-MARK-MASQ`,
    				Chain:              iptables.Chain("KUBE-SVC-XPGD46QRK7WJZT7O"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 26K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/caching/ComponentMetadataRuleExecutorTest.groovy

            if (expired) {
                // should check that the recorded service call returns the same value
                1 * record.getInput() >> '124'
                1 * record.getOutput() >> TestHashCodes.hashCodeFrom(10000)
                1 * cachedResult.isChanging() >> changing
                1 * cachedResult.getModuleVersionId() >> id
                1 * cachePolicy.moduleExpiry({ it.id == id }, Duration.ZERO, changing) >> Stub(Expiry) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. src/regexp/syntax/parse_test.go

    	`(?<x y>a)`,
    	`(?<>a)`,
    	`[a-Z]`,
    	`(?i)[a-Z]`,
    	`\Q\E*`,
    	`a{100000}`,  // too much repetition
    	`a{100000,}`, // too much repetition
    	"((((((((((x{2}){2}){2}){2}){2}){2}){2}){2}){2}){2})",    // too much repetition
    	strings.Repeat("(", 1000) + strings.Repeat(")", 1000),    // too deep
    	strings.Repeat("(?:", 1000) + strings.Repeat(")*", 1000), // too deep
    	"(" + strings.Repeat("(xx?)", 1000) + "){1000}",          // too long
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:02:30 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  10. src/crypto/x509/name_constraints_test.go

    			{
    				{},
    			},
    		},
    		leaf: leafSpec{
    			sans: []string{"ip:10.0.0.1"},
    		},
    		expectedError: "\"10.0.0.1\" is not permitted",
    	},
    
    	// #37: IPv4 constraints do not permit IPv6 addresses.
    	{
    		roots: []constraintsSpec{
    			{
    				ok: []string{"ip:10.0.0.0/8"},
    			},
    		},
    		intermediates: [][]constraintsSpec{
    			{
    				{},
    			},
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top