Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DefaultAttributeMatcher (0.23 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/DefaultAttributeMatcher.java

     * and delegates to {@link MultipleCandidateMatcher} for all other cases.
     */
    public class DefaultAttributeMatcher implements AttributeMatcher {
    
        private static final Logger LOGGER = LoggerFactory.getLogger(DefaultAttributeMatcher.class);
    
        private final AttributeSelectionSchema schema;
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/DefaultAttributeMatcherTest.groovy

        def explanationBuilder = Stub(AttributeMatchingExplanationBuilder)
    
        def "selects candidate with same set of attributes and whose values match"() {
            given:
            def matcher = new DefaultAttributeMatcher(schema)
    
            def usage = Attribute.of('usage', String)
            schema.attribute(usage)
    
            def candidate1 = attributes(usage: "match")
            def candidate2 = attributes(usage: "no match")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/attributes/DefaultAttributesSchema.java

    import org.gradle.internal.component.model.AttributeSelectionSchema;
    import org.gradle.internal.component.model.AttributeSelectionUtils;
    import org.gradle.internal.component.model.DefaultAttributeMatcher;
    import org.gradle.internal.component.model.DefaultCompatibilityCheckResult;
    import org.gradle.internal.component.model.DefaultMultipleCandidateResult;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 16:59:54 UTC 2024
    - 16.1K bytes
    - Viewed (0)
Back to top