Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 86 for headingID (0.2 sec)

  1. src/cmd/vendor/golang.org/x/build/relnote/dump.go

    	typeName := strings.TrimPrefix(fmt.Sprintf("%T", b), "*markdown.")
    	dprintf(depth, "%s\n", typeName)
    	switch b := b.(type) {
    	case *md.Paragraph:
    		dumpInlines(b.Text.Inline, depth+1)
    	case *md.Heading:
    		dumpInlines(b.Text.Inline, depth+1)
    	case *md.List:
    		dumpBlocks(b.Items, depth+1)
    	case *md.Item:
    		dumpBlocks(b.Blocks, depth+1)
    	default:
    		// TODO(jba): additional cases as needed.
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/components/internal/SourceSetRenderer.java

        @Override
        public void render(LanguageSourceSet sourceSet, TextReportBuilder builder) {
            builder.heading(StringUtils.capitalize(sourceSet.getDisplayName()));
            renderSourceSetDirectories(sourceSet, builder);
            renderSourceSetDependencies(sourceSet, builder);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 27 14:58:38 UTC 2020
    - 3.4K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/TextReportRenderer.java

        }
    
        @Override
        public void startProject(ProjectDetails project) {
            String header = createHeader(project);
            builder.heading(header);
        }
    
        protected String createHeader(ProjectDetails project) {
            String header = StringUtils.capitalize(project.getDisplayName());
    
            String description = project.getDescription();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:06 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  4. cluster/validate-cluster.sh

        EXPECTED_NUM_NODES=$(gcloud -q compute instances list --project="${PROJECT}" --format="[no-heading]" \
          --filter="(name ~ '${NODE_INSTANCE_PREFIX}.*' OR name ~ '${WINDOWS_NODE_INSTANCE_PREFIX}.*') AND zone:($(gcloud -q compute zones list --project="${PROJECT}" --filter=region="${REGION}" --format="csv[no-heading](name)" | tr "\n" "," | sed  "s/,$//"))" | wc -l)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 01 06:35:39 UTC 2019
    - 7.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/rsc.io/markdown/parse.go

    // A Parser is safe for concurrent use by multiple goroutines.
    type Parser struct {
    	// HeadingIDs determines whether the parser accepts
    	// the {#hdr} syntax for an HTML id="hdr" attribute on headings.
    	// For example, if HeadingIDs is true then the Markdown
    	//    ## Overview {#overview}
    	// will render as the HTML
    	//    <h2 id="overview">Overview</h2>
    	HeadingIDs bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. doc/README.md

    concatenated in sorted order by pathname. Files in the directory matching the
    glob "*stdlib/*minor" are treated specially. They should be in subdirectories
    corresponding to standard library package paths, and headings for those package
    paths will be generated automatically.
    
    Files in this repo's `api/next` directory must have corresponding files in
    `doc/next/*stdlib/*minor`.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 19:56:43 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. architecture/ambient/peer-authentication.md

    ## PeerAuthentication and the Waypoint Proxy
    
    (Note: this section is not yet implemented and is dependent upon discussion in the [ztunnel hairpinning doc](https://docs.google.com/document/d/1uM1c3zzoehiijh1ZpZuJ1-SzuVVupenv8r5yuCaFshs/edit#heading=h.dwbqvwmg6ud3))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 22:09:18 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. src/runtime/metrics/description_test.go

    	}
    	doc := new(comment.Parser).Parse(pkg.Doc)
    	expectCode := false
    	foundCode := false
    	updated := false
    	for _, block := range doc.Content {
    		switch b := block.(type) {
    		case *comment.Heading:
    			expectCode = false
    			if b.Text[0] == comment.Plain("Supported metrics") {
    				expectCode = true
    			}
    		case *comment.Code:
    			if expectCode {
    				foundCode = true
    				if b.Text != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 20 22:54:22 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. architecture/standards/0004-use-a-platform-architecture.md

    See the [discovery document](https://docs.google.com/document/d/1-oKG23gLdx2D2uJvzir31AhDFyqSf81LDESfKKCU28c/edit#heading=h.pps74pn68uvk) (internal document) for more context.
    
    ### Platforms
    
    The platforms and their architecture modules are:
    
    #### Core automation platform
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 22:19:29 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/StandardJavadocDocletOptions.java

         * For a given -group option, the packages matching the list of packagepattern expressions appear in a table
         * with the heading groupheading.
         * <p>
         * groupheading can be any text, and can include white space. This text is placed in the table heading for the group.
         * packagepattern can be any package name, or can be the start of any package name followed by an asterisk (*).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 43.4K bytes
    - Viewed (0)
Back to top