Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 624 for priorityOk (0.45 sec)

  1. src/net/lookup_plan9.go

    		f := getFields(line)
    		if len(f) < 6 {
    			continue
    		}
    		port, _, portOk := dtoi(f[4])
    		priority, _, priorityOk := dtoi(f[3])
    		weight, _, weightOk := dtoi(f[2])
    		if !(portOk && priorityOk && weightOk) {
    			continue
    		}
    		addrs = append(addrs, &SRV{absDomainName(f[5]), uint16(port), uint16(priority), uint16(weight)})
    		cname = absDomainName(f[0])
    	}
    	byPriorityWeight(addrs).sort()
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:08:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. 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)
  3. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness.go

    		return
    	}
    
    	// We intentionally set the UID of the flow-schema and priority-level instead of name. This is so that
    	// the names that cluster-admins choose for categorization and priority levels are not exposed, also
    	// the names might make it obvious to the users that they are rejected due to classification with low priority.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    	go func() {
    		controllerErr = controller.Run(stopCh)
    		controllerCompletedCh <- controllerErr
    	}()
    
    	// make sure that apf controller syncs the priority level configuration object we are using in this test.
    	// read the metrics and ensure the concurrency limit for our priority level is set to the expected value.
    	pollErr := wait.PollImmediate(100*time.Millisecond, 5*time.Second, func() (done bool, err error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  5. pkg/kubelet/eviction/helpers.go

    	// the last cmp func is the final decider
    	return ms.cmp[k](p1, p2) < 0
    }
    
    // priority compares pods by Priority, if priority is enabled.
    func priority(p1, p2 *v1.Pod) int {
    	priority1 := corev1helpers.PodPriority(p1)
    	priority2 := corev1helpers.PodPriority(p2)
    	if priority1 == priority2 {
    		return 0
    	}
    	if priority1 > priority2 {
    		return 1
    	}
    	return -1
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/loadbalancer/loadbalancer.go

    	// 1. calculate the LocalityLbEndpoints.Priority compared with proxy locality
    	for i, localityEndpoint := range loadAssignment.Endpoints {
    		// if region/zone/subZone all match, the priority is 0.
    		// if region/zone match, the priority is 1.
    		// if region matches, the priority is 2.
    		// if locality not match, the priority is 3.
    		priority := util.LbPriority(locality, localityEndpoint.Locality)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top