Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 401 for priority1 (0.15 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/flowcontrol/bootstrap/default.go

    		SuggestedFlowSchemaSystemNodeHigh,            // references "node-high" priority-level
    		SuggestedFlowSchemaProbes,                    // references "exempt" priority-level
    		SuggestedFlowSchemaSystemLeaderElection,      // references "leader-election" priority-level
    		SuggestedFlowSchemaWorkloadLeaderElection,    // references "leader-election" priority-level
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/flowcontrol/v1beta1/types.go

    	// `"Limited"` means that (a) requests of this priority level
    	// _are_ subject to limits and (b) some of the server's limited
    	// capacity is made available exclusively to this priority level.
    	// Required.
    	// +unionDiscriminator
    	Type PriorityLevelEnablement `json:"type" protobuf:"bytes,1,opt,name=type"`
    
    	// `limited` specifies how requests are handled for a Limited priority level.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/flowcontrol/v1beta1/types_swagger_doc_generated.go

    this level. This is the number of execution seats nominally reserved for this priority level. This DOES NOT limit the dispatching from this priority level but affects the other priority levels through the borrowing mechanism. The server's concurrency limit (ServerCL) is divided among all the priority levels in proportion to their NCS values:\n\nNominalCL(i)  = ceil( ServerCL * NCS(i) / sum_ncs ) sum_ncs = sum[priority level k] NCS(k)\n\nBigger numbers mean a larger nominal concurrency limit, at the...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  4. pkg/kubelet/types/pod_update_test.go

    		},
    		{
    			name:      "a critical pod with less priority do not preempts a critical pod",
    			preemptor: getTestPod(configSourceAnnotation(FileSource), &systemPriority, ""),
    			preemptee: getTestPod(configSourceAnnotation(FileSource), &systemPriorityUpper, ""),
    			expected:  false,
    		},
    		{
    			name:      "a critical pod without priority do not preempts a critical pod without priority",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 21 08:20:50 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/configuration/DaemonParameters.java

        public ToolchainConfiguration getToolchainConfiguration() {
            return toolchainConfiguration;
        }
    
        public Priority getPriority() {
            return priority;
        }
    
        public void setPriority(Priority priority) {
            this.priority = priority;
        }
    
        public enum Priority {
            LOW,
            NORMAL,
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/loadbalancer/loadbalancer_test.go

    					}
    					if cluster.LoadAssignment.Endpoints[i].Priority != tt.expected[i].Priority {
    						t.Errorf("Got unexpected priority %v expected %v", cluster.LoadAssignment.Endpoints[i].Priority, tt.expected[i].Priority)
    					}
    				}
    			})
    		}
    	})
    
    	t.Run("FailoverPriority with Failover", func(t *testing.T) {
    		tests := []struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/flowcontrol/v1beta2/types.go

    	// `"Limited"` means that (a) requests of this priority level
    	// _are_ subject to limits and (b) some of the server's limited
    	// capacity is made available exclusively to this priority level.
    	// Required.
    	// +unionDiscriminator
    	Type PriorityLevelEnablement `json:"type" protobuf:"bytes,1,opt,name=type"`
    
    	// `limited` specifies how requests are handled for a Limited priority level.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/flowcontrol/v1beta3/types.go

    	// `"Limited"` means that (a) requests of this priority level
    	// _are_ subject to limits and (b) some of the server's limited
    	// capacity is made available exclusively to this priority level.
    	// Required.
    	// +unionDiscriminator
    	Type PriorityLevelEnablement `json:"type" protobuf:"bytes,1,opt,name=type"`
    
    	// `limited` specifies how requests are handled for a Limited priority level.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/flowcontrol/v1beta1/generated.proto

      // limitation on request execution.  A value of `"Exempt"` means
      // that requests of this priority level are not subject to a limit
      // (and thus are never queued) and do not detract from the
      // capacity made available to other priority levels.  A value of
      // `"Limited"` means that (a) requests of this priority level
      // _are_ subject to limits and (b) some of the server's limited
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  10. 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)
Back to top