Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for omitDetails (0.21 sec)

  1. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/model/internal/ModelNodeRenderer.java

            Optional<String> value = getNodeValue(model);
            boolean hasValue = value != null && value.isPresent();
            String intro = omitDetails() && model.getLinkCount() == 0 && hasValue ? "|" : "+";
            styledTextoutput.withStyle(Identifier).format("%s %s", intro, model.getPath().getName());
            if (omitDetails() && hasValue) {
                styledTextoutput.withStyle(Description).format(" = %s", value.get());
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 29 12:52:59 UTC 2020
    - 6.4K bytes
    - Viewed (0)
Back to top