Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isShowAttributePrecedence (0.35 sec)

  1. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/configurations/spec/AbstractConfigurationReportSpec.java

            this.showLegacy = showLegacy;
            this.showAttributePrecedence = showAttributePrecedence;
        }
    
        public boolean isShowLegacy() {
            return showLegacy;
        }
    
        public boolean isShowAttributePrecedence() {
            return showAttributePrecedence;
        }
    
        public abstract String getReportedTypeAlias();
        public abstract String getFullReportedTypeDesc();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 07 20:56:10 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/configurations/renderer/ConsoleConfigurationReportRenderer.java

                try {
                    depth++;
                    attributesWithDisambiguationRules.forEach(a -> writeAttribute(maxD, a, spec.isShowAttributePrecedence()));
                    newLine();
                } finally {
                    depth--;
                }
    
                if (spec.isShowAttributePrecedence()) {
                    writeDescription("(#): Attribute disambiguation precedence");
                    newLine();
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 12 16:17:12 UTC 2022
    - 18.3K bytes
    - Viewed (0)
Back to top