Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for formatAttributeMatchesForIncompatibility (0.38 sec)

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

            formatter.startChildren();
            for (AssessedCandidate assessedCandidate : failure.getCandidates()) {
                formatter.node(assessedCandidate.getDisplayName());
                formatAttributeMatchesForIncompatibility(assessedCandidate, formatter, describer);
            }
            formatter.endChildren();
            return formatter.toString();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/IncompatibleRequestedConfigurationFailureDescriber.java

            AttributeDescriber describer
        ) {
            formatter.node("Configuration '");
            formatter.append(assessedCandidate.getDisplayName());
            formatter.append("'");
    
            formatAttributeMatchesForIncompatibility(assessedCandidate, formatter, describer);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/IncompatibleGraphVariantsFailureDescriber.java

            AttributeDescriber describer
        ) {
            formatter.node("Variant '");
            formatter.append(assessedCandidate.getDisplayName());
            formatter.append("'");
            formatAttributeMatchesForIncompatibility(assessedCandidate, formatter, describer);
        }
    
        private enum FailureSubType {
            NO_VARIANTS_EXIST,
            NO_VARIANTS_HAVE_ATTRIBUTES,
            NO_VARIANT_MATCHES_REQUESTED_ATTRIBUTES;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:02:51 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/AbstractResolutionFailureDescriber.java

            }
            formatter.startChildren();
            formatAttributeSection(formatter, "Unmatched attribute", other);
            formatter.endChildren();
        }
    
        protected void formatAttributeMatchesForIncompatibility(
            AssessedCandidate assessedCandidate,
            TreeFormatter formatter,
            AttributeDescriber describer
        ) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top