Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 291 for bursty (0.15 sec)

  1. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/config_flags.go

    	// propagate them to the places that need them, rather than
    	// instantiating them multiple times.
    	usePersistentConfig bool
    	// Allows increasing burst used for discovery, this is useful
    	// in clusters with many registered resources
    	discoveryBurst int
    	// Allows increasing qps used for discovery, this is useful
    	// in clusters with many registered resources
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 11 15:04:11 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  2. 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)
  3. pkg/controller/statefulset/stateful_set_control_test.go

    				testFn(t, set, assertMonotonicInvariants)
    			},
    		)
    		runTestOverPVCRetentionPolicies(
    			t,
    			fmt.Sprintf("%s/Burst", fnName),
    			func(t *testing.T, policy *apps.StatefulSetPersistentVolumeClaimRetentionPolicy) {
    				set := burst(testObj())
    				set.Spec.PersistentVolumeClaimRetentionPolicy = policy
    				testFn(t, set, assertBurstInvariants)
    			},
    		)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  4. 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)
  5. cmd/kube-scheduler/app/options/options_test.go

    					ResourceName:      "kube-scheduler",
    				},
    				ClientConnection: componentbaseconfig.ClientConnectionConfiguration{
    					Kubeconfig:  configKubeconfig,
    					QPS:         50,
    					Burst:       100,
    					ContentType: "application/vnd.kubernetes.protobuf",
    				},
    				PercentageOfNodesToScore: defaultPercentageOfNodesToScore,
    				PodInitialBackoffSeconds: defaultPodInitialBackoffSeconds,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 30.3K bytes
    - Viewed (0)
  6. 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)
  7. pkg/controlplane/apiserver/options/options_test.go

    		"--audit-log-batch-buffer-size=46",
    		"--audit-log-batch-max-size=47",
    		"--audit-log-batch-max-wait=48s",
    		"--audit-log-batch-throttle-enable=true",
    		"--audit-log-batch-throttle-qps=49.5",
    		"--audit-log-batch-throttle-burst=50",
    		"--audit-log-truncate-enabled=true",
    		"--audit-log-truncate-max-batch-size=45",
    		"--audit-log-truncate-max-event-size=44",
    		"--audit-log-version=audit.k8s.io/v1",
    		"--audit-policy-file=/policy",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. 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)
  9. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/testing/DaemonEventSequenceBuilder.groovy

        }
    
        void run(Closure action) {
            actions << action
        }
    
        void busy() {
            busy(numDaemons)
        }
    
        void busy(int busy) {
            state(busy, numDaemons - busy)
        }
    
        void idle() {
            idle(numDaemons)
        }
    
        void idle(int idle) {
            state(numDaemons - idle, idle)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/client/DaemonStartupMessageTest.groovy

     */
    
    package org.gradle.launcher.daemon.client
    
    import spock.lang.Specification
    
    class DaemonStartupMessageTest extends Specification {
        def "starting message contains number of busy and incompatible daemons (#numBusy busy, #numIncompatible incompatible, #numStopped stopped)"() {
            given:
            def message = DaemonStartupMessage.generate(numBusy, numIncompatible, numStopped)
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top