Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for 300T (2.1 sec)

  1. cluster/gce/gci/configure-kubeapiserver.sh

      fi
      if [[ -n "${NUM_NODES:-}" ]]; then
        # If the cluster is large, increase max-requests-inflight limit in apiserver.
        if [[ "${NUM_NODES}" -gt 3000 ]]; then
          params=$(append-param-if-not-present "${params}" "max-requests-inflight" 3000)
          params=$(append-param-if-not-present "${params}" "max-mutating-requests-inflight" 1000)
        elif [[ "${NUM_NODES}" -gt 500 ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/integTest/groovy/org/gradle/cache/internal/DefaultFileLockManagerContentionIntegrationTest.groovy

            }
            receivingLock.close()
            then:
            build.waitForFinish()
            pingRequestCount == 3 || pingRequestCount == 4
            timer.elapsedMillis > 3000 // See: DefaultFileLockContentionHandler.PING_DELAY
        }
    
        def "the lock holder starts the release request only once and discards additional requests in the meantime"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. pkg/kubelet/util/manager/watch_based_manager.go

    	// item, instead of using a generic store implementation for this purpose.
    	// However, simple benchmarks show that memory overhead in that case is
    	// decrease from ~600B to ~300B per object. So we are not optimizing it
    	// until we will see a good reason for that.
    	store := cache.NewStore(cache.MetaNamespaceKeyFunc)
    	return &cacheStore{store, sync.Mutex{}, false}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/util/util_test.go

    			}
    		})
    	}
    }
    
    func TestDomainName(t *testing.T) {
    	tests := []struct {
    		host  string
    		port  int
    		match string
    	}{
    		{"localhost", 3000, "localhost:3000"},
    		{"127.0.0.1", 3000, "127.0.0.1:3000"},
    		{"::1", 3000, "[::1]:3000"},
    		{"2001:4860:0:2001::68", 3000, "[2001:4860:0:2001::68]:3000"},
    	}
    	for _, tt := range tests {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 40K bytes
    - Viewed (0)
  5. src/net/http/cookiejar/jar_test.go

    		},
    		"a=1 b=2 c=3 d=4 e=5 f=6", // executed at t0 + 1001 ms
    		[]query{
    			{"http://www.host.test", "a=1 b=2 c=3 d=4 e=5 f=6"}, // t0 + 2002 ms
    			{"http://www.host.test", "a=1 d=4 e=5 f=6"},         // t0 + 3003 ms
    			{"http://www.host.test", "a=1 d=4 e=5 f=6"},         // t0 + 4004 ms
    			{"http://www.host.test", "a=1 f=6"},                 // t0 + 5005 ms
    			{"http://www.host.test", "a=1 f=6"},                 // t0 + 6006 ms
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
Back to top