Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 108 for bursty (0.39 sec)

  1. cmd/kube-controller-manager/app/core.go

    	// including events), takes ~10 seconds by default.
    	nsKubeconfig := controllerContext.ClientBuilder.ConfigOrDie("namespace-controller")
    	nsKubeconfig.QPS *= 20
    	nsKubeconfig.Burst *= 100
    	namespaceKubeClient := clientset.NewForConfigOrDie(nsKubeconfig)
    	return startModifiedNamespaceController(ctx, controllerContext, namespaceKubeClient, nsKubeconfig)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 39K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultExclusiveCacheAccessCoordinatorTest.groovy

            then:
            cache instanceof MultiProcessSafeIndexedCache
            0 * _._
        }
    
        def "contended action safely closes the lock when cache is not busy"() {
            Supplier<String> action = Mock()
            def access = newAccess(OnDemand)
            Consumer contendedAction
    
            when:
            access.open()
            access.useCache(action)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/controller.go

    	// MeshWatcher observes changes to the mesh config
    	MeshWatcher mesh.Watcher
    
    	// Maximum QPS when communicating with kubernetes API
    	KubernetesAPIQPS float32
    
    	// Maximum burst for throttle when communicating with the kubernetes API
    	KubernetesAPIBurst int
    
    	// SyncTimeout, if set, causes HasSynced to be returned when timeout.
    	SyncTimeout time.Duration
    
    	// Revision of this Istiod instance
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  4. src/runtime/gc_test.go

    	buildTree = func(depth int) *node {
    		tree := new(node)
    		if depth != 0 {
    			for i := range tree.children {
    				tree.children[i] = buildTree(depth - 1)
    			}
    		}
    		return tree
    	}
    
    	// Keep the GC busy by continuously generating large trees.
    	done := make(chan struct{})
    	var wg sync.WaitGroup
    	for i := 0; i < maxProcs-1; i++ {
    		wg.Add(1)
    		go func() {
    			defer wg.Done()
    			var hold *node
    		loop:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. cmd/object-api-errors.go

    type StorageFull struct{}
    
    func (e StorageFull) Error() string {
    	return "Storage reached its minimum free drive threshold."
    }
    
    // SlowDown  too many file descriptors open or backend busy .
    type SlowDown struct{}
    
    func (e SlowDown) Error() string {
    	return "Please reduce your request rate"
    }
    
    // RQErrType reason for read quorum error.
    type RQErrType int
    
    const (
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 22:19:00 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  6. cmd/generic-handlers.go

    // Check if the incoming path has bad path components,
    // such as ".." and "."
    func hasBadPathComponent(path string) bool {
    	if len(path) > 4096 {
    		// path cannot be greater than Linux PATH_MAX
    		// this is to avoid a busy loop, that can happen
    		// if the caller sends path of following style
    		// a/a/a/a/a/a/a/a...
    		return true
    	}
    	path = filepath.ToSlash(strings.TrimSpace(path)) // For windows '\' must be converted to '/'
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 01:01:15 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    			if qps < 200 {
    				qps = 200
    			}
    
    			ctx, cancel := context.WithTimeout(context.Background(), grace)
    			// We don't expect more than one token to be consumed
    			// in a single Wait call, so setting burst to 1.
    			return rate.NewLimiter(rate.Limit(qps), 1), ctx, cancel
    		})
    		klog.V(1).InfoS("[graceful-termination] active watch request(s) have drained",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

            .build(),
        )
        server.enqueue(
          MockResponse(body = "abc"),
        )
        // Enqueue an additional response that show if we burnt a good prior response.
        server.enqueue(
          MockResponse(body = "XXX"),
        )
        val call1 = client.newCall(Request(server.url("/")))
        val response1 = call1.execute()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/worker_api.adoc

    ====
    
    When a unit of work for a worker daemon is submitted, Gradle will first look to see if a compatible, idle daemon already exists.
    If so, it will send the unit of work to the idle daemon, marking it as busy.
    If not, it will start a new daemon.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 13:41:08 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  10. src/runtime/metrics_test.go

    // See issue #60276.
    func TestCPUMetricsSleep(t *testing.T) {
    	if runtime.GOOS == "wasip1" {
    		// Since wasip1 busy-waits in the scheduler, there's no meaningful idle
    		// time. This is accurately reflected in the metrics, but it means this
    		// test is basically meaningless on this platform.
    		t.Skip("wasip1 currently busy-waits in idle time; test not applicable")
    	}
    
    	names := []string{
    		"/cpu/classes/idle:cpu-seconds",
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
Back to top