Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 291 for bursty (0.09 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/authorization.go

    			return nil, nil
    		}
    	}
    	if err != nil {
    		return nil, fmt.Errorf("failed to get delegated authorization kubeconfig: %v", err)
    	}
    
    	// set high qps/burst limits since this will effectively limit API server responsiveness
    	clientConfig.QPS = 200
    	clientConfig.Burst = 400
    	clientConfig.Timeout = s.ClientTimeout
    	if s.CustomRoundTripperFn != nil {
    		clientConfig.Wrap(s.CustomRoundTripperFn)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/cache/Striped64.java

      transient volatile int busy;
    
      /** Package-private default constructor */
      Striped64() {}
    
      /** CASes the base field. */
      final boolean casBase(long cmp, long val) {
        return UNSAFE.compareAndSwapLong(this, baseOffset, cmp, val);
      }
    
      /** CASes the busy field from 0 to 1 to acquire lock. */
      final boolean casBusy() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/cache/Striped64.java

      transient volatile int busy;
    
      /** Package-private default constructor */
      Striped64() {}
    
      /** CASes the base field. */
      final boolean casBase(long cmp, long val) {
        return UNSAFE.compareAndSwapLong(this, baseOffset, cmp, val);
      }
    
      /** CASes the busy field from 0 to 1 to acquire lock. */
      final boolean casBusy() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. pkg/test/framework/components/istio/installer.go

    	}
    
    	rc, err := kube.DefaultRestConfig(kubeConfigFile, "", func(config *rest.Config) {
    		config.QPS = 50
    		config.Burst = 100
    	})
    	if err != nil {
    		return err
    	}
    	kubeClient, err := kube.NewCLIClient(kube.NewClientConfigForRestConfig(rc))
    	if err != nil {
    		return fmt.Errorf("create Kubernetes client: %v", err)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/build-profile/src/test/groovy/org/gradle/profile/TaskExecutionTest.groovy

        def "knows task status"() {
            def skipped = Stub(TaskState) {
                getSkipped() >> true
                getSkipMessage() >> "Skipped for a good reason."
            }
            def busy = Stub(TaskState) {
                getSkipped() >> false
                getDidWork() >> true
            }
            def noWork = Stub(TaskState) {
                getSkipped() >> false
                getDidWork() >> false
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 12:58:53 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. plugin/pkg/admission/eventratelimit/limitenforcer.go

    	rateLimiterFactory := func() flowcontrol.RateLimiter {
    		return flowcontrol.NewTokenBucketRateLimiterWithClock(float32(config.QPS), int(config.Burst), clock)
    	}
    
    	if config.Type == eventratelimitapi.ServerLimitType {
    		return &limitEnforcer{
    			limitType: config.Type,
    			cache: &singleCache{
    				rateLimiter: rateLimiterFactory(),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 08 02:31:37 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/registry/EmbeddedDaemonRegistrySpec.groovy

            expect:
            all.size() == 2
            idle.size() == 2
            notIdle.empty
    
            when:
            markState(address(10), Busy)
    
            then:
            all.size() == 2
            idle.size() == 1
            notIdle.size() == 1
    
            when:
            markState(address(20), Busy)
    
            then:
            all.size() == 2
            idle.empty
            notIdle.size() == 2
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. pkg/kubelet/apis/config/validation/validation.go

    	}
    	if kc.EventBurst < 0 {
    		allErrors = append(allErrors, fmt.Errorf("invalid configuration: eventBurst (--event-burst) %v must not be a negative number", kc.EventBurst))
    	}
    	if kc.EventRecordQPS < 0 {
    		allErrors = append(allErrors, fmt.Errorf("invalid configuration: eventRecordQPS (--event-qps) %v must not be a negative number", kc.EventRecordQPS))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/change_test.go

    	"k8s.io/client-go/dynamic"
    )
    
    func TestChangeCRD(t *testing.T) {
    	tearDown, config, _, err := fixtures.StartDefaultServer(t)
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer tearDown()
    	config.QPS = 1000
    	config.Burst = 1000
    	apiExtensionsClient, err := clientset.NewForConfig(config)
    	if err != nil {
    		t.Fatal(err)
    	}
    	dynamicClient, err := dynamic.NewForConfig(config)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:59:03 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/audit.go

    	defaultBatchMaxWait       = 30 * time.Second // Send events at least twice a minute.
    	defaultBatchThrottleQPS   = 10               // Limit the send rate by 10 QPS.
    	defaultBatchThrottleBurst = 15               // Allow up to 15 QPS burst.
    )
    
    func appendBackend(existing, newBackend audit.Backend) audit.Backend {
    	if existing == nil {
    		return newBackend
    	}
    	if newBackend == nil {
    		return existing
    	}
    	return audit.Union(existing, newBackend)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 24 06:30:04 UTC 2022
    - 20.3K bytes
    - Viewed (0)
Back to top