Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for subheading (0.2 sec)

  1. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/AbstractReportTaskIntegrationTest.groovy

                    }
    
                    @Override
                    protected void generate(Project project) throws IOException {
                        for (sourceSet in project.sourceSets) {
                            mRenderer.builder.subheading sourceSet.name
                            mRenderer.textOutput
                                .withStyle(StyledTextOutput.Style.Identifier)
                                .text("Compile configuration name: ")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 30 18:37:41 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/text/TextReportBuilder.java

    public interface TextReportBuilder {
        /**
         * Outputs the heading for the current item. This should be called before any of the {@code item} methods are called.
         */
        void heading(String heading);
    
        void subheading(String heading);
    
        <T> void collection(String title, Collection<? extends T> items, ReportRenderer<T, TextReportBuilder> renderer, String elementsPlural);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 30 23:30:16 UTC 2016
    - 1.6K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/text/DefaultTextReportBuilderTest.groovy

    {header}------------------------------------------------------------
    heading
    ------------------------------------------------------------{normal}
    
    """
        }
    
        def "formats subheading"() {
            given:
            builder.subheading("heading")
    
            expect:
            output.value == """{header}heading
    -------{normal}
    """
        }
    
        def "formats top-level item with structured value"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:08 UTC 2021
    - 8.4K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/TaskReportRenderer.java

            }
        }
    
        private void addSubheading(String header) {
            if (hasContent) {
                getTextOutput().println();
            }
            hasContent = true;
            getBuilder().subheading(header);
        }
    
        /**
         * Marks the end of the tasks for the current project.
         */
        public void completeTasks() {
            if (!currentProjectHasTasks) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 29 11:53:41 UTC 2021
    - 5K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/text/DefaultTextReportBuilder.java

            } else {
                textOutput.println(heading);
                textOutput = new LinePrefixingStyledTextOutput(textOutput, INDENT);
            }
            depth++;
        }
    
        @Override
        public void subheading(String heading) {
            writeSubheading(heading);
            if (depth == 0) {
                depth = 1;
            }
        }
    
        private void writeSubheading(String heading) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 08 05:52:01 UTC 2020
    - 5.7K bytes
    - Viewed (0)
  6. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    [Greek: ge], [Greek: eê], [Greek: êi], [Greek: il], and [Greek: l]G, will be the Spaces which the several Colours (red, orange, yellow, green, blue, indigo, violet) take up. [Illustration: FIG. 4.] [Illustration: FIG. 5.] Now these Intervals or Spaces subtending the Differences of the Refractions of the Rays going to the Limits of those Colours, that is, to the Points M, [Greek: a], [Greek: g], [Greek: e], [Greek: ê], [Greek: i], [Greek: l], G, may without any sensible Error be accounted proportional to...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  7. src/testdata/Isaac.Newton-Opticks.txt

    Spaces which the several Colours (red, orange, yellow, green, blue,
    indigo, violet) take up.
    
    [Illustration: FIG. 4.]
    
    [Illustration: FIG. 5.]
    
    Now these Intervals or Spaces subtending the Differences of the
    Refractions of the Rays going to the Limits of those Colours, that is,
    to the Points M, [Greek: a], [Greek: g], [Greek: e], [Greek: ê], [Greek:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
Back to top