Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 88 for bursty (0.17 sec)

  1. pkg/proxy/apis/config/v1alpha1/defaults_test.go

    				MetricsBindAddress: "127.0.0.1:10249",
    				ClientConnection: componentbaseconfig.ClientConnectionConfiguration{
    					ContentType: "application/vnd.kubernetes.protobuf",
    					QPS:         5,
    					Burst:       10,
    				},
    				IPTables: kubeproxyconfigv1alpha1.KubeProxyIPTablesConfiguration{
    					MasqueradeBit:      ptr.To[int32](14),
    					MasqueradeAll:      false,
    					LocalhostNodePorts: ptr.To(true),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:33:53 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. samples/httpbin/README.md

    image from Docker hub:
    
    ```bash
    kubectl run -i --rm --restart=Never dummy --image=dockerqa/curl:ubuntu-trusty --command -- curl --silent httpbin:8000/html
    kubectl run -i --rm --restart=Never dummy --image=dockerqa/curl:ubuntu-trusty --command -- curl --silent --head httpbin:8000/status/500
    time kubectl run -i --rm --restart=Never dummy --image=dockerqa/curl:ubuntu-trusty --command -- curl --silent httpbin:8000/delay/5
    ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. pkg/controller/apis/config/v1alpha1/defaults.go

    	// These client-connection defaults are specific to the kube-controller-manager
    	if obj.Generic.ClientConnection.QPS == 0.0 {
    		obj.Generic.ClientConnection.QPS = 20.0
    	}
    	if obj.Generic.ClientConnection.Burst == 0 {
    		obj.Generic.ClientConnection.Burst = 30
    	}
    
    	// Use the default RecommendedDefaultGenericControllerManagerConfiguration options
    	cmconfigv1alpha1.RecommendedDefaultGenericControllerManagerConfiguration(&obj.Generic)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 04 07:55:11 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  4. pkg/proxy/apis/config/scheme/testdata/KubeProxyConfiguration/after/v1alpha1.yaml

    apiVersion: kubeproxy.config.k8s.io/v1alpha1
    bindAddress: 0.0.0.0
    bindAddressHardFail: false
    clientConnection:
      acceptContentTypes: ""
      burst: 10
      contentType: application/vnd.kubernetes.protobuf
      kubeconfig: ""
      qps: 5
    clusterCIDR: ""
    configSyncPeriod: 15m0s
    conntrack:
      maxPerCore: 32768
      min: 131072
      tcpBeLiberal: false
      tcpCloseWaitTimeout: 1h0m0s
      tcpEstablishedTimeout: 24h0m0s
      udpStreamTimeout: 0s
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 12:50:03 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. pkg/controller/nodelifecycle/scheduler/rate_limited_queue.go

    	} else {
    		newLimiter = flowcontrol.NewTokenBucketRateLimiter(newQPS, EvictionRateLimiterBurst)
    
    		// If we're currently waiting on limiter, we drain the new one - this is a good approach when Burst value is 1
    		// TODO: figure out if we need to support higher Burst values and decide on the drain logic, should we keep:
    		// - saturation (percentage of used tokens)
    		// - number of used tokens
    		// - number of available tokens
    		// - something else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 07:50:01 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  6. pkg/proxy/apis/config/scheme/testdata/KubeProxyConfiguration/roundtrip/default/v1alpha1.yaml

    apiVersion: kubeproxy.config.k8s.io/v1alpha1
    bindAddress: 0.0.0.0
    bindAddressHardFail: false
    clientConnection:
      acceptContentTypes: ""
      burst: 10
      contentType: application/vnd.kubernetes.protobuf
      kubeconfig: ""
      qps: 5
    clusterCIDR: ""
    configSyncPeriod: 15m0s
    conntrack:
      maxPerCore: 32768
      min: 131072
      tcpBeLiberal: false
      tcpCloseWaitTimeout: 1h0m0s
      tcpEstablishedTimeout: 24h0m0s
      udpStreamTimeout: 0s
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 12:50:03 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. pkg/proxy/apis/config/v1alpha1/defaults.go

    		obj.ClientConnection.ContentType = "application/vnd.kubernetes.protobuf"
    	}
    	if obj.ClientConnection.QPS == 0.0 {
    		obj.ClientConnection.QPS = 5.0
    	}
    	if obj.ClientConnection.Burst == 0 {
    		obj.ClientConnection.Burst = 10
    	}
    	if obj.FeatureGates == nil {
    		obj.FeatureGates = make(map[string]bool)
    	}
    	// Use the Default LoggingConfiguration option
    	logsapi.SetRecommendedLoggingConfiguration(&obj.Logging)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:33:53 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  8. pilot/pkg/features/tuning.go

    	).Get()
    
    	StatusBurst = env.Register(
    		"PILOT_STATUS_BURST",
    		500,
    		"If status is enabled, controls the Burst rate with which status will be updated.  "+
    			"See https://godoc.org/k8s.io/client-go/rest#Config Burst",
    	).Get()
    
    	StatusMaxWorkers = env.Register("PILOT_STATUS_MAX_WORKERS", 100, "The maximum number of workers"+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 04:22:19 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonLifecycleSpec.groovy

            when:
            startBuild()
            waitForBuildToWait()
    
            then:
            busy()
        }
    
        def "a new daemon is started if all existing are busy"() {
            when:
            startBuild()
    
            then:
            busy()
    
            when:
            startBuild()
    
            then:
            busy 2
        }
    
        def "sending stop to idle daemons causes them to terminate immediately"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/testing/DaemonsState.groovy

        private DaemonsState() {
            this.busy = -1
            this.idle = -1
        }
    
        String toString() {
            wildcard ? "DaemonsState{*}" : "DaemonsState{busy=$busy,idle=$idle}"
        }
    
        boolean matches(DaemonsState rhs) {
            wildcard || (this.busy == rhs.busy && this.idle == rhs.idle)
        }
    
        boolean isWildcard() {
            busy < 0
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top