Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ResolutionCandidateAssessor (0.94 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/ResolutionCandidateAssessor.java

     * align with the requested attributes.
     */
    public final class ResolutionCandidateAssessor {
        private final ImmutableAttributes requestedAttributes;
        private final AttributeMatcher attributeMatcher;
    
        public ResolutionCandidateAssessor(AttributeContainerInternal requestedAttributes, AttributeMatcher attributeMatcher) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/ResolutionFailureHandler.java

            ResolutionCandidateAssessor resolutionCandidateAssessor = new ResolutionCandidateAssessor(requestedAttributes, matcher);
            List<AssessedCandidate> assessedCandidates = resolutionCandidateAssessor.assessResolvedVariants(candidateVariants);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/AmbiguousGraphVariantsFailureDescriber.java

        }
    
        protected Map<String, ResolutionCandidateAssessor.AssessedCandidate> summarizeAmbiguousVariants(VariantAwareAmbiguousResolutionFailure failure, AttributeDescriber describer, TreeFormatter formatter, boolean listAvailableVariants) {
            Map<String, ResolutionCandidateAssessor.AssessedCandidate> ambiguousVariants = new TreeMap<>();
            for (ResolutionCandidateAssessor.AssessedCandidate candidate : failure.getCandidates()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/IncompatibleGraphVariantsFailureDescriber.java

    import org.gradle.api.internal.attributes.AttributesSchemaInternal;
    import org.gradle.internal.component.model.AttributeDescriberSelector;
    import org.gradle.internal.component.resolution.failure.ResolutionCandidateAssessor;
    import org.gradle.internal.component.resolution.failure.StyledAttributeDescriber;
    import org.gradle.internal.component.resolution.failure.exception.VariantSelectionException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:02:51 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/MissingAttributeAmbiguousGraphVariantsFailureDescriber.java

    import org.gradle.api.internal.attributes.AttributesSchemaInternal;
    import org.gradle.internal.component.model.AttributeDescriberSelector;
    import org.gradle.internal.component.resolution.failure.ResolutionCandidateAssessor;
    import org.gradle.internal.component.resolution.failure.type.VariantAwareAmbiguousResolutionFailure;
    import org.gradle.internal.logging.text.TreeFormatter;
    
    import java.util.ArrayList;
    import java.util.HashMap;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 16:12:53 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top