Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 171 for priorityOk (0.32 sec)

  1. api/maven-api-di/src/main/java/org/apache/maven/api/di/Priority.java

    import static java.lang.annotation.ElementType.TYPE;
    import static java.lang.annotation.RetentionPolicy.RUNTIME;
    
    @Target({TYPE, METHOD})
    @Retention(RUNTIME)
    @Documented
    public @interface Priority {
        int value();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 05 09:45:47 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/context/DaemonCompatibilitySpecSpec.groovy

        }
    
        def "contexts with different priority"() {
            clientWants(requestedJvm: Jvm.forHome(javaHome), priority: DaemonParameters.Priority.LOW)
            candidate.javaHome >> javaHome
            candidate.daemonOpts >> []
            candidate.priority >> DaemonParameters.Priority.NORMAL
    
            expect:
            !compatible
            unsatisfiedReason.contains "Process priority is different"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/daemon/DaemonContextParser.java

                Integer idleTimeout = Integer.decode(matcher.group(6));
                DaemonParameters.Priority priority = matcher.group(7) == null ? DaemonParameters.Priority.NORMAL : DaemonParameters.Priority.valueOf(matcher.group(7).substring(",priority=".length()));
                boolean applyInstrumentationAgent = Boolean.parseBoolean(matcher.group(8));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 09:22:54 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapUrl.java

        public void setChangefreq(final String changefreq) {
            this.changefreq = changefreq;
        }
    
        public String getPriority() {
            return priority;
        }
    
        public void setPriority(final String priority) {
            this.priority = priority;
        }
    
        @Override
        public boolean equals(final Object obj) {
            if (!(obj instanceof final SitemapUrl sitemapUrl)) {
                return false;
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. src/log/syslog/syslog.go

    // of network and raddr.
    func Dial(network, raddr string, priority Priority, tag string) (*Writer, error) {
    	if priority < 0 || priority > LOG_LOCAL7|LOG_DEBUG {
    		return nil, errors.New("log/syslog: invalid priority")
    	}
    
    	if tag == "" {
    		tag = os.Args[0]
    	}
    	hostname, _ := os.Hostname()
    
    	w := &Writer{
    		priority: priority,
    		tag:      tag,
    		hostname: hostname,
    		network:  network,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 22:56:07 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  6. src/container/heap/example_pq_test.go

    	}
    
    	// Create a priority queue, put the items in it, and
    	// establish the priority queue (heap) invariants.
    	pq := make(PriorityQueue, len(items))
    	i := 0
    	for value, priority := range items {
    		pq[i] = &Item{
    			value:    value,
    			priority: priority,
    			index:    i,
    		}
    		i++
    	}
    	heap.Init(&pq)
    
    	// Insert a new item and then modify its priority.
    	item := &Item{
    		value:    "orange",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 20:27:36 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/configuration/DefaultDaemonServerConfiguration.java

            this(daemonUid, daemonBaseDir, idleTimeoutMs, periodicCheckIntervalMs, singleUse, priority, jvmOptions, true, nativeServicesMode);
        }
    
        public DefaultDaemonServerConfiguration(String daemonUid, File daemonBaseDir, int idleTimeoutMs, int periodicCheckIntervalMs, boolean singleUse, DaemonParameters.Priority priority, List<String> jvmOptions, boolean instrumentationAgentAllowed, NativeServicesMode nativeServicesMode) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 12:13:32 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. pkg/apis/scheduling/types.go

    )
    
    const (
    	// DefaultPriorityWhenNoDefaultClassExists is used to set priority of pods
    	// that do not specify any priority class and there is no priority class
    	// marked as default.
    	DefaultPriorityWhenNoDefaultClassExists = 0
    	// HighestUserDefinablePriority is the highest priority for user defined priority classes. Priority values larger than 1 billion are reserved for Kubernetes system use.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 07 23:13:00 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top