Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for candidateAttributeMissing (1.48 sec)

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

            LOGGER.debug("Candidate {} attribute {} value {} doesn't requested value {}", candidate, attribute, candidateValue, requestedValue);
        }
    
        @Override
        public <T extends HasAttributes> void candidateAttributeMissing(T candidate, Attribute<?> attribute, Object requestedValue) {
            LOGGER.debug("Candidate {} doesn't have attribute {}", candidate, attribute);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/AttributeMatchingExplanationBuilder.java

        default <T extends HasAttributes> void candidateAttributeDoesNotMatch(T candidate, Attribute<?> attribute, Object requestedValue, AttributeValue<?> candidateValue) {
    
        }
    
        default <T extends HasAttributes> void candidateAttributeMissing(T candidate, Attribute<?> attribute, Object requestedValue) {
    
        }
    
        default <T extends HasAttributes> void candidateIsSuperSetOfAllOthers(T candidate) {
    
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/MultipleCandidateMatcher.java

            if (!candidateValue.isPresent()) {
                setCandidateValue(c, a, null);
                explanationBuilder.candidateAttributeMissing(candidates.get(c), attribute, requestedValue);
                return MatchResult.MISSING;
            }
    
            Object coercedValue = candidateValue.coerce(attribute);
            setCandidateValue(c, a, coercedValue);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 19.4K bytes
    - Viewed (0)
Back to top