Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 400 for priorityOk (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/ant.adoc

    This is done by setting the priority that should map to the default Gradle `LIFECYCLE` log level using the link:{javadocPath}/org/gradle/api/AntBuilder.html#setLifecycleLogLevel-java.lang.String-[AntBuilder.setLifecycleLogLevel(java.lang.String)] method.
    When this value is set, any Ant message logged at the configured priority or above will be logged at least at `LIFECYCLE`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 15:23:52 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/daemon-server/src/main/java/org/gradle/launcher/daemon/bootstrap/DaemonMain.java

            File daemonBaseDir;
            int idleTimeoutMs;
            int periodicCheckIntervalMs;
            boolean singleUse;
            NativeServicesMode nativeServicesMode;
            String daemonUid;
            DaemonParameters.Priority priority;
            List<File> additionalClassPath;
    
            KryoBackedDecoder decoder = new KryoBackedDecoder(new EncodedStream.EncodedInput(System.in));
            try {
                gradleHomeDir = new File(decoder.readString());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/preemption/preemption.go

    		}
    		allCandidates = selectedNodes
    	}
    
    	return allCandidates[0]
    }
    
    // getLowerPriorityNominatedPods returns pods whose priority is smaller than the
    // priority of the given "pod" and are nominated to run on the given node.
    // Note: We could possibly check if the nominated lower priority pods still fit
    // and return those that no longer fit, but that would require lots of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    |Properties that configure build behavior based on the environment
    |`JAVA_HOME`
    |===
    
    == Priority for configurations
    
    When configuring Gradle behavior, you can use these methods, but you must consider their priority.
    
    The following table lists these methods in order of highest to lowest precedence (the first one wins):
    
    [cols="~,~,~,~"]
    |===
    |Priority |Method |Location |Notes
    
    |1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  5. pkg/quota/v1/evaluator/core/pods_test.go

    			name: "partial pods matching quotaScopeSelector - w/ multiple scopeNames specified",
    			objs: []runtime.Object{
    				makePod("p1", "high-priority", cpu1, api.PodRunning),
    				makePod("p2", "high-priority", cpu1, api.PodSucceeded),
    				makePod("p3", "low-priority", cpu1, api.PodRunning),
    				makePod("p4", "high-priority", nil, api.PodFailed),
    			},
    			quotaScopes: []corev1.ResourceQuotaScope{
    				corev1.ResourceQuotaScopePriorityClass,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  6. pkg/apis/flowcontrol/validation/validation.go

    )
    
    // PriorityLevelValidationOptions holds the validation options for a priority level object
    type PriorityLevelValidationOptions struct {
    	// AllowZeroLimitedNominalConcurrencyShares, if true, indicates that we allow
    	// a zero value for the 'nominalConcurrencyShares' field of the 'limited'
    	// section of a priority level.
    	AllowZeroLimitedNominalConcurrencyShares bool
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  7. pkg/scheduler/util/utils_test.go

    	}
    }
    
    func newPriorityPodWithStartTime(name string, priority int32, startTime time.Time) *v1.Pod {
    	return &v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: name,
    		},
    		Spec: v1.PodSpec{
    			Priority: &priority,
    		},
    		Status: v1.PodStatus{
    			StartTime: &metav1.Time{Time: startTime},
    		},
    	}
    }
    
    func TestGetEarliestPodStartTime(t *testing.T) {
    	var priority int32 = 1
    	currentTime := time.Now()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 21 01:40:44 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/initorder.go

    		n.index = i
    		n.ndeps = len(n.succ)
    	}
    
    	return G
    }
    
    // ----------------------------------------------------------------------------
    // Priority queue
    
    // nodeQueue implements the container/heap interface;
    // a nodeQueue may be used as a priority queue.
    type nodeQueue []*graphNode
    
    func (a nodeQueue) Len() int { return len(a) }
    
    func (a nodeQueue) Swap(i, j int) {
    	x, y := a[i], a[j]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 22:06:51 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. src/go/types/initorder.go

    		n.index = i
    		n.ndeps = len(n.succ)
    	}
    
    	return G
    }
    
    // ----------------------------------------------------------------------------
    // Priority queue
    
    // nodeQueue implements the container/heap interface;
    // a nodeQueue may be used as a priority queue.
    type nodeQueue []*graphNode
    
    func (a nodeQueue) Len() int { return len(a) }
    
    func (a nodeQueue) Swap(i, j int) {
    	x, y := a[i], a[j]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/arm/armasm/decode.go

    	// and then assume mask=f during matching.
    	const condMask = 0xf0000000
    	xNoCond := x
    	if x&condMask != condMask {
    		xNoCond &^= condMask
    	}
    	var priority int8
    Search:
    	for i := range instFormats {
    		f := &instFormats[i]
    		if xNoCond&(f.mask|condMask) != f.value || f.priority <= priority {
    			continue
    		}
    		delta := uint32(0)
    		deltaShift := uint(0)
    		for opBits := f.opBits; opBits != 0; opBits >>= 16 {
    			n := uint(opBits & 0xFF)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 12.6K bytes
    - Viewed (0)
Back to top