Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for headingID (0.19 sec)

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

    			},
    		},
    	}
    }
    
    // removeEmptySections removes headings with no content. A heading has no content
    // if there are no blocks between it and the next heading at the same level, or the
    // end of the document.
    func removeEmptySections(bs []md.Block) []md.Block {
    	res := bs[:0]
    	delta := 0 // number of lines by which to adjust positions
    
    	// Remove preceding headings at same or higher level; they are empty.
    	rem := func(level int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java

            }
        }
    
        private void addAnchorsForHeadings(Document document) {
            // add anchors for all of the headings
            for (Element heading : document.body().select("h2,h3,h4")) {
                String anchorName = heading.text().toLowerCase().replaceAll(" ", "-");
                heading.attr("id", anchorName);
            }
        }
    
        public void setJqueryFiles(Set<File> jqueryFiles) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/AbstractGradleViolationRule.groovy

                          See <a href="https://docs.google.com/document/d/1KA5yI4HL18qOeXjXLTMMD_upkDbNUzTDGNfBGYdQlYw/edit#heading=h.9yqcmqviz47z">the documentation</a> for more details.
                      </div>
                    </div>
                    </p>
                    <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/build/relnote/links.go

    	for _, b := range bs {
    		addSymbolLinksBlock(b, defaultPackage)
    	}
    }
    
    func addSymbolLinksBlock(b md.Block, defaultPackage string) {
    	switch b := b.(type) {
    	case *md.Heading:
    		addSymbolLinksBlock(b.Text, defaultPackage)
    	case *md.Text:
    		b.Inline = addSymbolLinksInlines(b.Inline, defaultPackage)
    	case *md.List:
    		addSymbolLinksBlocks(b.Items, defaultPackage)
    	case *md.Item:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. hack/make-rules/test-e2e-node.sh

      if [[ ${hosts} == "" && ${images} == "" && ${image_config_file} == "" ]]; then
        gci_image=$(gcloud compute images list --project "${image_project}" \
        --no-standard-images --filter="name ~ 'cos-beta.*'" --format="table[no-heading](name)")
        images=${gci_image}
        metadata="user-data<${KUBE_ROOT}/test/e2e_node/jenkins/gci-init.yaml,gci-update-strategy=update_disabled"
      fi
      instance_prefix=${INSTANCE_PREFIX:-"test"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 16 09:46:28 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top