Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 115 for Dispatching (0.41 sec)

  1. staging/src/k8s.io/api/flowcontrol/v1beta1/types.go

    	// NominalConcurrencyLimit (NominalCL) of 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:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/transform/ConsumerProvidedVariantFinderTest.groovy

            1 * attributeMatcher.isMatching(sourceVariant.getAttributes(), fromSource) >> true
            1 * attributeMatcher.isMatching(sourceVariant.getAttributes(), fromOther) >> false
            // other variant matches fromOther, but not fromSource
            1 * attributeMatcher.isMatching(otherVariant.getAttributes(), fromSource) >> false
            1 * attributeMatcher.isMatching(otherVariant.getAttributes(), fromOther) >> true
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  3. cmd/bootstrap-peer-server.go

    		return nil
    	}
    
    	// Report differences in environment variables.
    	var missing []string
    	var mismatching []string
    	for k, v := range s1.MinioEnv {
    		ev, ok := s2.MinioEnv[k]
    		if !ok {
    			missing = append(missing, k)
    		} else if v != ev {
    			mismatching = append(mismatching, k)
    		}
    	}
    	var extra []string
    	for k := range s2.MinioEnv {
    		_, ok := s1.MinioEnv[k]
    		if !ok {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.28.md

    -...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/DefaultAttributeMatcherTest.groovy

            matcher.matches([candidate2, candidate3, candidate4], requested, explanationBuilder) == [candidate4]
    
            matcher.isMatching(candidate1, requested)
            !matcher.isMatching(candidate2, requested)
            !matcher.isMatching(candidate3, requested)
            matcher.isMatching(candidate4, requested)
        }
    
        def "selects candidate with additional attributes and whose values match"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/attributes/DefaultAttributesSchemaTest.groovy

            expect:
            !schema.matcher().selectionSchema.matchValue(attribute, "a", "b")
            schema.matcher().selectionSchema.matchValue(attribute, "a", "a")
    
            !schema.matcher().isMatching(attribute, "a", "b")
            schema.matcher().isMatching(attribute, "a", "a")
        }
    
        static class DoNothingRule implements AttributeCompatibilityRule<String> {
            static int count
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/ConsumerProvidedVariantFinder.java

                            ImmutableAttributes sourceAttrs = sources.get(i);
                            if (matcher.isMatching(sourceAttrs, candidate.getFrom())) {
                                ImmutableAttributes rootAttrs = attributesFactory.concat(sourceAttrs, candidate.getTo());
                                if (matcher.isMatching(rootAttrs, state.requested)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/AttributeMatcher.java

        /**
         * Determines whether the given candidate is compatible with the requested criteria.
         */
        boolean isMatching(AttributeContainerInternal candidate, AttributeContainerInternal requested);
    
        <T> boolean isMatching(Attribute<T> attribute, T candidate, T requested);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/compatibility/CrossVersionTestInterceptor.groovy

            for (String targetGradleVersion : targetGradleVersions) {
                if (isMatching(targetGradleVersion, previousVersion.version.version)) {
                    return true
                }
            }
            return false
        }
    
        private static boolean isMatching(String targetGradleVersion, String candidate) {
            if (targetGradleVersion.endsWith('+')) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/DefaultAttributeMatcher.java

            this.schema = schema;
        }
    
        @Override
        public AttributeSelectionSchema getSelectionSchema() {
            return schema;
        }
    
        @Override
        public boolean isMatching(AttributeContainerInternal candidate, AttributeContainerInternal requested) {
            if (requested.isEmpty() || candidate.isEmpty()) {
                return true;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9.6K bytes
    - Viewed (0)
Back to top