Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 42 for headingID (0.18 sec)

  1. 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)
  2. 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)
  3. tensorflow/compiler/mlir/g3doc/_book.yaml

        other:
        - name: Guide
          contents:
          - title: Overview
            path: /mlir/overview
          - heading: Dialects
          - title: Overview
            path: /mlir/dialects
          - title: TensorFlow
            path: /mlir/tf_ops
          - title: TensorFlow Lite
            path: /mlir/tfl_ops
          - heading: Passes
          - title: TF dialect
            path: /mlir/tf_passes
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 22 15:00:03 UTC 2022
    - 674 bytes
    - Viewed (0)
  4. 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)
  5. src/go/doc/Makefile

    # Copyright 2009 The Go Authors. All rights reserved.
    # Use of this source code is governed by a BSD-style
    # license that can be found in the LICENSE file.
    
    # Script to test heading detection heuristic
    headscan: headscan.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 246 bytes
    - Viewed (0)
  6. releasenotes/notes/35111.yaml

        coming from outside the mesh.
    docs:
      - https://docs.google.com/document/d/15Qhr7errbylXEzxxCK7ij_oUpn4E5SFU2uDdl_n2GIc/edit#heading=h.h3lxcxfhqndp
    securityNotes:
      - |
        This feature extends the sidecar API such that the users can provide their certificates and offload the TLS/mTLS 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 14 00:19:57 UTC 2022
    - 580 bytes
    - Viewed (0)
  7. src/go/doc/comment/doc.go

    (documentation comments), which are comments that immediately precede
    a top-level declaration of a package, const, func, type, or var.
    
    Go doc comment syntax is a simplified subset of Markdown that supports
    links, headings, paragraphs, lists (without nesting), and preformatted text blocks.
    The details of the syntax are documented at https://go.dev/doc/comment.
    
    To parse the text associated with a doc comment (after removing comment markers),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 19:05:57 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  8. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/HtmlToXmlJavadocLexerTest.groovy

            "<a href='ref'>text</a>"          | "<p><a href='ref'>text</a></p>"
            "<a name='ref'/> text"            | "<a name='ref'></a><p> text</p>"
            "<a name='ref'/><h2>heading</h2>" | "<a name='ref'></a><h2>heading</h2>"
            "<p><a name='ref'/>"              | "<p><a name='ref'></a></p>"
            "<p><a name='ref'/>text"          | "<p><a name='ref'></a>text</p>"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 6.5K bytes
    - Viewed (0)
  9. src/go/doc/comment/testdata_test.go

    		fmt.Fprintf(out, "LinkDef Used:%v Text:%q URL:%s", x.Used, x.Text, x.URL)
    
    	case []Block:
    		for _, blk := range x {
    			dumpNL(out, indent)
    			dumpTo(out, indent, blk)
    		}
    
    	case *Heading:
    		fmt.Fprintf(out, "Heading")
    		dumpTo(out, indent+1, x.Text)
    
    	case *List:
    		fmt.Fprintf(out, "List ForceBlankBefore=%v ForceBlankBetween=%v", x.ForceBlankBefore, x.ForceBlankBetween)
    		dumpTo(out, indent+1, x.Items)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/components/internal/ComponentRenderer.java

            this.sourceSetRenderer = sourceSetRenderer;
            this.binaryRenderer = binaryRenderer;
        }
    
        @Override
        public void render(ComponentSpec component, TextReportBuilder builder) {
            builder.heading(StringUtils.capitalize(component.getDisplayName()));
            if (component instanceof SourceComponentSpec) {
                SourceComponentSpec sourceComponentSpec = (SourceComponentSpec) component;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:05 UTC 2021
    - 2.5K bytes
    - Viewed (0)
Back to top