Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for hasIncubatingAttributes (0.26 sec)

  1. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/configurations/model/ReportConfiguration.java

        public boolean isPurelyResolvable() {
            return Type.RESOLVABLE == type;
        }
    
        public boolean isLegacy() {
            return Type.LEGACY == type;
        }
    
        public boolean hasIncubatingAttributes() {
            return attributes.stream().anyMatch(ReportAttribute::isIncubating);
        }
    
        public boolean hasVariants() {
            return !variants.isEmpty();
        }
    
        public enum Type {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 12 17:16:59 UTC 2022
    - 3.7K bytes
    - Viewed (0)
Back to top