Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for AttributeMatchDetails (0.18 sec)

  1. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/dependencies/AttributeMatchDetails.java

    import org.gradle.api.attributes.Attribute;
    
    import javax.annotation.Nullable;
    
    public class AttributeMatchDetails {
        private final MatchType matchType;
        @Nullable
        private final Attribute<?> requested;
        @Nullable
        private final Object requestedValue;
    
        public AttributeMatchDetails(MatchType matchType, @Nullable Attribute<?> requested, @Nullable Object requestedValue) {
            this.matchType = matchType;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 10 22:44:31 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/DependencyInsightReportTask.java

                    return new AttributeMatchDetails(MatchType.INCOMPATIBLE, requested, requestedValue);
                }
            }
            return new AttributeMatchDetails(MatchType.NOT_REQUESTED, null, null);
        }
    
        private static final class RootDependencyRenderer implements NodeRenderer {
            private final DependencyInsightReportTask task;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  3. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.api.tasks.diagnostics.internal.dependencies.AttributeMatchDetails> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (AttributeMatchDetails.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top