Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 154 for fairness (0.43 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    	klog.Info("Starting API Priority and Fairness config controller")
    	if ok := cache.WaitForCacheSync(stopCh, cfgCtlr.plInformerSynced, cfgCtlr.fsInformerSynced); !ok {
    		return fmt.Errorf("Never achieved initial sync")
    	}
    
    	klog.Info("Running API Priority and Fairness config worker")
    	go wait.Until(cfgCtlr.runWorker, time.Second, stopCh)
    
    	klog.Info("Running API Priority and Fairness periodic rebalancing process")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/features/kube_features.go

    	APIListChunking featuregate.Feature = "APIListChunking"
    
    	// owner: @MikeSpreitzer @yue9944882
    	// alpha: v1.18
    	// beta: v1.20
    	// stable: 1.29
    	//
    	// Enables managing request concurrency with prioritization and fairness at each server.
    	// The FeatureGate was introduced in release 1.15 but the feature
    	// was not really implemented before 1.18.
    	APIPriorityAndFairness featuregate.Feature = "APIPriorityAndFairness"
    
    	// owner: @ilackams
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:36:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. pkg/controlplane/apiserver/options/options_test.go

    		"--contention-profiling=true",
    		"--egress-selector-config-file=/var/run/kubernetes/egress-selector/connectivity.yaml",
    		"--enable-aggregator-routing=true",
    		"--enable-priority-and-fairness=false",
    		"--enable-logs-handler=false",
    		"--etcd-keyfile=/var/run/kubernetes/etcd.key",
    		"--etcd-certfile=/var/run/kubernetes/etcdce.crt",
    		"--etcd-cafile=/var/run/kubernetes/etcdca.crt",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/config.go

    	}
    
    	// Add PostStartHooks for maintaining the watermarks for the Priority-and-Fairness and the Max-in-Flight filters.
    	if c.FlowControl != nil {
    		const priorityAndFairnessFilterHookName = "priority-and-fairness-filter"
    		if !s.isPostStartHookRegistered(priorityAndFairnessFilterHookName) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  5. cmd/kube-apiserver/app/options/options_test.go

    		"--contention-profiling=true",
    		"--egress-selector-config-file=/var/run/kubernetes/egress-selector/connectivity.yaml",
    		"--enable-aggregator-routing=true",
    		"--enable-priority-and-fairness=false",
    		"--enable-logs-handler=false",
    		"--endpoint-reconciler-type=" + string(reconcilers.LeaseEndpointReconcilerType),
    		"--etcd-keyfile=/var/run/kubernetes/etcd.key",
    		"--etcd-certfile=/var/run/kubernetes/etcdce.crt",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener_waypoint.go

    	}}
    	h.Http2ProtocolOptions = &core.Http2ProtocolOptions{
    		AllowConnect: true,
    		// TODO(https://github.com/istio/istio/issues/43443)
    		// All streams are bound to the same worker. Therefore, we need to limit for better fairness.
    		MaxConcurrentStreams: &wrappers.UInt32Value{Value: 100},
    		// well behaved clients should close connections.
    		// not all clients are well-behaved. This will prune
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  7. src/internal/coverage/cfile/emitdata_test.go

    	}
    }
    
    // buildHarness builds the helper program "harness.exe".
    func buildHarness(t *testing.T, dir string, opts []string) string {
    	harnessPath := filepath.Join(dir, "harness.exe")
    	harnessSrc := filepath.Join("testdata", "harness.go")
    	args := []string{"build", "-o", harnessPath}
    	args = append(args, opts...)
    	args = append(args, harnessSrc)
    	//t.Logf("harness build: go %+v\n", args)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  8. LICENSES/vendor/sigs.k8s.io/yaml/LICENSE

    copies or substantial portions of the Software.
    
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:42:44 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/check_test.go

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file implements a typechecker test harness. The packages specified
    // in tests are typechecked. Error messages reported by the typechecker are
    // compared against the errors expected in the test files.
    //
    // Expected errors are indicated in the test files by putting comments
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  10. src/go/types/check_test.go

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file implements a typechecker test harness. The packages specified
    // in tests are typechecked. Error messages reported by the typechecker are
    // compared against the errors expected in the test files.
    //
    // Expected errors are indicated in the test files by putting comments
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top