Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 720 for priorityOk (0.2 sec)

  1. staging/src/k8s.io/api/scheduling/v1/types_swagger_doc_generated.go

    	"":                 "PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer.",
    	"metadata":         "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/scheduling/v1alpha1/generated.proto

      // value represents the integer value of this priority class. This is the actual priority that pods
      // receive when they have the name of this class in their pod spec.
      optional int32 value = 2;
    
      // globalDefault specifies whether this PriorityClass should be considered as
      // the default priority for pods that do not have any priority class.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/scheduling/v1alpha1/types_swagger_doc_generated.go

    	"metadata":         "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. cmd/kubelet/app/init_windows.go

    // (https://docs.microsoft.com/en-us/windows/win32/procthread/job-objects),
    // and specifies the priority class for the job object to the specified value.
    // A job object is used here so that any spawned processes such as powershell or
    // wmic are created at the specified thread priority class.
    // Running kubelet with above normal / high priority  can help improve
    // responsiveness on machines with high CPU utilization.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 01:54:34 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/queuesort/priority_sort_test.go

    		expected bool
    	}{
    		{
    			name: "p1.priority less than p2.priority",
    			p1: &framework.QueuedPodInfo{
    				PodInfo: mustNewPodInfo(t, st.MakePod().Priority(lowPriority).Obj()),
    			},
    			p2: &framework.QueuedPodInfo{
    				PodInfo: mustNewPodInfo(t, st.MakePod().Priority(highPriority).Obj()),
    			},
    			expected: false, // p2 should be ahead of p1 in the queue
    		},
    		{
    			name: "p1.priority greater than p2.priority",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 12 14:11:04 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  6. 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)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonPriorityIntegrationTest.groovy

     * The few extra arguments that the priority change requires seem to push it over the edge.
     * Therefore, we do not run these tests embedded on Windows.
     **/
    @Requires(IntegTestPreconditions.NotEmbeddedExecutorOrNotWindows)
    class DaemonPriorityIntegrationTest extends DaemonIntegrationSpec {
    
        def "forks new daemon when priority is set to a different value via command line"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/context/DefaultDaemonContext.java

                DaemonParameters.Priority priority = decoder.readBoolean() ? DaemonParameters.Priority.values()[decoder.readInt()] : null;
    
                return new DefaultDaemonContext(uid, javaHome, javaVersion, registryDir, pid, idle, daemonOpts, applyInstrumentationAgent, nativeServicesMode, priority);
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/context/DaemonRequestContext.java

        private final DaemonParameters.Priority priority;
    
        public DaemonRequestContext(@Nullable JavaInfo requestedJvm, @Nullable DaemonJvmCriteria jvmCriteria, Collection<String> daemonOpts, boolean applyInstrumentationAgent, NativeServices.NativeServicesMode nativeServicesMode, DaemonParameters.Priority priority) {
            this.requestedJvm = requestedJvm;
            this.jvmCriteria = jvmCriteria;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:49:26 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. 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)
Back to top