Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for unresponsive (0.46 sec)

  1. pkg/controller/podautoscaler/config/types.go

    type HPAControllerConfiguration struct {
    	// ConcurrentHorizontalPodAutoscalerSyncs is the number of HPA objects that are allowed to sync concurrently.
    	// Larger number = more responsive HPA processing, but more CPU (and network) load.
    	ConcurrentHorizontalPodAutoscalerSyncs int32
    	// horizontalPodAutoscalerSyncPeriod is the period for syncing the number of
    	// pods in horizontal pod autoscaler.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 19 09:49:23 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/options/replicationcontroller.go

    	if o == nil {
    		return
    	}
    
    	fs.Int32Var(&o.ConcurrentRCSyncs, "concurrent_rc_syncs", o.ConcurrentRCSyncs, "The number of replication controllers that are allowed to sync concurrently. Larger number = more responsive replica management, but more CPU (and network) load")
    }
    
    // ApplyTo fills up ReplicationController config with options.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/options/serviceaccountcontroller.go

    	fs.Int32Var(&o.ConcurrentSATokenSyncs, "concurrent-serviceaccount-token-syncs", o.ConcurrentSATokenSyncs, "The number of service account token objects that are allowed to sync concurrently. Larger number = more responsive token generation, but more CPU (and network) load")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  4. docs/throttle/README.md

    Example: Limit a MinIO cluster to accept at max 1600 simultaneous S3 API requests across all nodes of the cluster.
    
    ```sh
    export MINIO_API_REQUESTS_MAX=1600
    export MINIO_ROOT_USER=your-access-key
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/options/hpacontroller.go

    	fs.DurationVar(&o.HorizontalPodAutoscalerSyncPeriod.Duration, "horizontal-pod-autoscaler-sync-period", o.HorizontalPodAutoscalerSyncPeriod.Duration, "The period...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 19 09:49:23 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/waitgroup/ratelimited_waitgroup.go

    		defer wg.mu.Unlock()
    
    		wg.limiter, wg.stopCtx, cancel = limiterFactory(wg.count)
    		countNow = wg.count
    		wg.wait = true
    	}()
    
    	defer cancel()
    	// there should be a hard stop, in case request(s) are not responsive
    	// enough to invoke Done before the grace period is over.
    	waitDoneCh := make(chan struct{})
    	go func() {
    		defer close(waitDoneCh)
    		wg.wg.Wait()
    	}()
    
    	var err error
    	select {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 21 14:08:00 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. docs/contribute/code_of_conduct.md

     * **Be pragmatic**: Questions are encouraged and should be asked early in the process to avoid
       problems later. Be thoughtful and considerate when seeking out the appropriate forum for your
       questions. Those who are asked should be responsive and helpful.
    
     * **Step down considerately**: Members of every project come and go. When somebody leaves or
       disengages from the project, they should make it known and take the proper steps to ensure that
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/authorization.go

    	AllowCacheTTL time.Duration
    
    	// DenyCacheTTL is the length of time that an unsuccessful authorization response will be cached.
    	// You generally want more responsive, "deny, try again" flows.
    	DenyCacheTTL time.Duration
    
    	// AlwaysAllowPaths are HTTP paths which are excluded from authorization. They can be plain
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  9. pkg/controller/nodelifecycle/scheduler/rate_limited_queue.go

    const (
    	// NodeHealthUpdateRetry controls the number of retries of writing
    	// node health update.
    	NodeHealthUpdateRetry = 5
    	// NodeEvictionPeriod controls how often NodeController will try to
    	// evict Pods from non-responsive Nodes.
    	NodeEvictionPeriod = 100 * time.Millisecond
    	// EvictionRateLimiterBurst is the burst value for all eviction rate
    	// limiters
    	EvictionRateLimiterBurst = 1
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 07:50:01 UTC 2023
    - 8.2K bytes
    - Viewed (0)
Back to top