Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 58 for headingID (0.36 sec)

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

    Jonathan Amsterdam <******@****.***> 1705624488 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 18:07:49 UTC 2024
    - 32 bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/cmd/vendor/golang.org/x/tools/internal/analysisinternal/extractdoc.go

    //
    // A section is a portion of the comment between one heading and
    // the next, using this form:
    //
    //	# Analyzer NAME
    //
    //	NAME: SUMMARY
    //
    //	Full description...
    //
    // where NAME matches the name argument, and SUMMARY is a brief
    // verb-phrase that describes the analyzer. The following lines, up
    // until the next heading or the end of the comment, contain the full
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/components/internal/AbstractBinaryRenderer.java

        }
    
        @Override
        public void render(BinarySpec binary, TextReportBuilder builder) {
            String heading = StringUtils.capitalize(binary.getDisplayName());
            if (!binary.isBuildable()) {
                heading += " (not buildable)";
            }
            builder.heading(heading);
    
            if (binary.getBuildTask() != null) {
                builder.item("build using task", binary.getBuildTask().getPath());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/SystemClassLoaderTest.groovy

            then:
            def lines = output.readLines()
            if (lines.find { it == noInfoHeading }) { return }
    
            lines.find { it == heading } // here for nicer output if the output isn't what we expect
            def headingIndex = lines.indexOf(heading)
            def classpathSize = Integer.parseInt(lines[headingIndex + 1])
            // The gradle-launcher.jar is mandatory.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. JavadocStyleGuide.md

    | 4  | `@see`        | Adds a “See Also” heading with a link or text entry that points to a reference | `@see string`<br>`@see <a href=”URL#value”>label</a>`<br>`@see package.class#member label`                                                                                                                         |
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. src/go/doc/comment/parse.go

    }
    
    // A Block is block-level content in a doc comment,
    // one of [*Code], [*Heading], [*List], or [*Paragraph].
    type Block interface {
    	block()
    }
    
    // A Heading is a doc comment heading.
    type Heading struct {
    	Text []Text // the heading text
    }
    
    func (*Heading) block() {}
    
    // A List is a numbered or bullet list.
    // Lists are always non-empty: len(Items) > 0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 33.5K bytes
    - Viewed (0)
  9. src/cmd/dist/test.go

    // addTest adds an arbitrary test callback to the test list.
    //
    // name must uniquely identify the test and heading must be non-empty.
    func (t *tester) addTest(name, heading string, fn func(*distTest) error) {
    	if t.testNames[name] {
    		panic("duplicate registered test name " + name)
    	}
    	if heading == "" {
    		panic("empty heading")
    	}
    	// Two simple checks for cases that would conflict with the fast path in registerTests.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.css

    on:none!important}.uk-link-toggle:focus{outline:0}.uk-heading-small{font-size:2.6rem;line-height:1.2}.uk-heading-medium{font-size:2.8875rem;line-height:1.1}.uk-heading-large{font-size:3.4rem;line-height:1.1}.uk-heading-xlarge{font-size:4rem;line-height:1}.uk-heading-2xlarge{font-size:6rem;line-height:1}@media (min-width:960px){.uk-heading-small{font-size:3.25rem}.uk-heading-medium{font-size:3.5rem}.uk-heading-large{font-size:4rem}.uk-heading-xlarge{font-size:6rem}.uk-heading-2xlarge{font-size:8rem}}@media...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 257.2K bytes
    - Viewed (0)
Back to top