Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for CompatibilityRule (0.34 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/attributes/EmptySchema.java

        private final DoNothingCompatibilityRule compatibilityRule = new DoNothingCompatibilityRule();
        private final DoNothingDisambiguationRule disambiguationRule = new DoNothingDisambiguationRule();
    
        protected EmptySchema() {
        }
    
        @Override
        public CompatibilityRule<Object> compatibilityRules(Attribute<?> attribute) {
            return compatibilityRule;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/attributes/AttributesSchemaInternal.java

        /**
         * Returns a matcher that uses the rules from this schema, and assumes the producer has the same rules.
         */
        AttributeMatcher matcher();
    
        CompatibilityRule<Object> compatibilityRules(Attribute<?> attribute);
    
        DisambiguationRule<Object> disambiguationRules(Attribute<?> attribute);
    
        @Nullable
        Attribute<?> getAttributeByName(String name);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/attributes/DefaultAttributesSchema.java

        }
    
        @Override
        public AttributeMatcher matcher() {
            return withProducer(EmptySchema.INSTANCE);
        }
    
        @Override
        public CompatibilityRule<Object> compatibilityRules(Attribute<?> attribute) {
            AttributeMatchingStrategy<?> matchingStrategy = strategies.get(attribute);
            if (matchingStrategy != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 16:59:54 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyGraphBuilder.java

    import org.gradle.api.internal.attributes.AttributeDesugaring;
    import org.gradle.api.internal.attributes.AttributesSchemaInternal;
    import org.gradle.api.internal.attributes.CompatibilityRule;
    import org.gradle.api.internal.attributes.ImmutableAttributes;
    import org.gradle.api.internal.attributes.ImmutableAttributesFactory;
    import org.gradle.api.specs.Spec;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
Back to top