Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 42 for headingID (0.26 sec)

  1. doc/next/6-stdlib/0-heading.md

    Russ Cox <******@****.***> 1710441773 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 03:39:16 UTC 2024
    - 28 bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/text/DefaultTextReportBuilderTest.groovy

        def eol = SystemProperties.instance.getLineSeparator()
    
        def "formats heading"() {
            given:
            builder.heading("heading")
    
            expect:
            output.value == """
    {header}------------------------------------------------------------
    heading
    ------------------------------------------------------------{normal}
    
    """
        }
    
        def "formats subheading"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:08 UTC 2021
    - 8.4K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/text/DefaultTextReportBuilder.java

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

    Some text.
    
    An Old Heading
    
    Not An Old Heading.
    
    And some text.
    
    # A New Heading.
    
    And some more text.
    
    # Not a heading,
    because text follows it.
    
    Because text precedes it,
    # not a heading.
    
    ## Not a heading either.
    
    -- gofmt --
    Some text.
    
    # An Old Heading
    
    Not An Old Heading.
    
    And some text.
    
    # A New Heading.
    
    And some more text.
    
    # Not a heading,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:46 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  5. src/go/doc/comment/testdata/head3.txt

    {"HeadingLevel": 5}
    -- input --
    # Heading
    -- markdown --
    ##### Heading {#hdr-Heading}
    -- html --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:46 UTC 2022
    - 131 bytes
    - Viewed (0)
  6. src/go/doc/comment/testdata/head2.txt

    -- input --
    ✦
    
    Almost a+heading
    
    ✦
    
    Don't be a heading
    
    ✦
    
    A.b is a heading
    
    ✦
    
    A. b is not a heading
    
    ✦
    -- gofmt --
    ✦
    
    Almost a+heading
    
    ✦
    
    Don't be a heading
    
    ✦
    
    # A.b is a heading
    
    ✦
    
    A. b is not a heading
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:46 UTC 2022
    - 232 bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/g3doc/_index.yaml

            }
            </pre>
    
      - classname: devsite-landing-row-cards
        items:
        - heading: "Multi-Level Intermediate Representation for Compiler Infrastructure"
          youtube_id: qzljG6DKgic
          buttons:
          - label: Watch the video
            path: https://www.youtube.com/watch?v=qzljG6DKgic
        - heading: "A new intermediate representation and compiler framework"
          image_path: /resources/images/tf-logo-card-16x9.png
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  8. src/go/doc/comment/testdata/text.txt

    More text.
    Tight list
     - one
     - two
     - three
    Loose list
     - one
    
     - two
    
     - three
    
    # Heading
    
    More text.
    -- gofmt --
    Hello, world
    
    	Code block here.
    
    More text.
    Tight list
      - one
      - two
      - three
    
    Loose list
    
      - one
    
      - two
    
      - three
    
    # Heading
    
    More text.
    -- text --
    |Hello, world
    |
    @Code block here.
    |
    |More text. Tight list
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:48 UTC 2022
    - 521 bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/text/TextReportBuilder.java

    import java.io.File;
    import java.util.Collection;
    
    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)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/report/unbound/UnboundRulesReporter.java

                    writer.write("suggestions: ");
                    writer.println(Joiner.on(", ").join(input.getSuggestedPaths()));
                }
            }
        }
    
        private void heading(String heading) {
            writer.print(indent(1));
            writer.println(heading);
        }
    
        private String indent(int times) {
            StringBuffer buff = new StringBuffer(prefix);
            for (int i = 0; i < times; i++) {
                buff.append(INDENT);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top