Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CompatibilityRule (0.35 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)
Back to top