Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for paragraph (0.26 sec)

  1. src/cmd/vendor/rsc.io/markdown/parse.go

    preserve LinkRefDefs?
    
    */
    
    // Block is implemented by:
    //
    //	CodeBLock
    //	Document
    //	Empty
    //	HTMLBlock
    //	Heading
    //	Item
    //	List
    //	Paragraph
    //	Quote
    //	Text
    //	ThematicBreak
    type Block interface {
    	Pos() Position
    	PrintHTML(buf *bytes.Buffer)
    	printMarkdown(buf *bytes.Buffer, s mdState)
    }
    
    type mdState struct {
    	prefix  string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/cpumanager/cpu_assignment.go

    //     free CPUs appears first.
    //
    // If instead NUMA nodes are higher in the memory hierarchy than sockets, the sorting happens in the
    // same way as described in the previous paragraph, except that the priority of NUMA nodes and
    // sockets is inverted (e.g. first sort the cores by number of free CPUs in their NUMA nodes, then,
    // for each NUMA node, sort the cores by number of free CPUs in their sockets, etc...).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 23:56:21 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  3. src/encoding/json/encode.go

    //
    // Embedded struct fields are usually marshaled as if their inner exported fields
    // were fields in the outer struct, subject to the usual Go visibility rules amended
    // as described in the next paragraph.
    // An anonymous struct field with a name given in its JSON tag is treated as
    // having that name, rather than being anonymous.
    // An anonymous struct field of interface type is treated the same as having
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    // extracts a deprecation message from that.
    //
    // A deprecation message is contained in a paragraph within a block of comments
    // that starts with "Deprecated:" (case sensitive). The message runs until the
    // end of the paragraph and does not include the "Deprecated:" prefix. If the
    // comment block has multiple paragraphs that start with "Deprecated:",
    // parseDeprecation returns the message from the first.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  5. doc/go_mem.html

    (that is, if <i>W</i>(<i>r</i>) = <i>w</i>),
    then <i>w</i> is synchronized before <i>r</i>.
    Informally, the synchronized before relation is a subset of the implied total order
    mentioned in the previous paragraph,
    limited to the information that <i>W</i> directly observes.
    </p>
    
    <p>
    The <i>happens before</i> relation is defined as the transitive closure of the
    union of the sequenced before and synchronized before relations.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:54:42 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  6. CREDITS

    iii. publicity and privacy rights pertaining to a person's image or
         likeness depicted in a Work;
     iv. rights protecting against unfair competition in regards to a Work,
         subject to the limitations in paragraph 4(a), below;
      v. rights protecting the extraction, dissemination, use and reuse of data
         in a Work;
     vi. database rights (such as those arising under Directive 96/9/EC of the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
  7. src/cmd/internal/dwarf/putvarabbrevgen_test.go

    		if !ok || decl.Body == nil {
    			continue
    		}
    		if decl.Name.Name == "putvar" || decl.Name.Name == "putAbstractVar" {
    			// construct the simplified CFG
    			pvagraph, _ := pvacfgbody(t, &fset, cm, decl.Body.List)
    			funcs[decl.Name.Name+"Abbrev"] = pvacfgvisit(pvagraph, abbrevs)
    		}
    	}
    	abbrevslice := make([]string, len(abbrevs))
    	for abbrev, n := range abbrevs {
    		abbrevslice[n] = abbrev
    	}
    
    	buf := new(bytes.Buffer)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    06FF          ; valid                                  # 4.0  ARABIC LETTER HEH WITH INVERTED V
    0700..070D    ; valid                  ;      ; NV8    # 3.0  SYRIAC END OF PARAGRAPH..SYRIAC HARKLEAN ASTERISCUS
    070E          ; disallowed                             # NA   <reserved-070E>
    070F          ; disallowed                             # 3.0  SYRIAC ABBREVIATION MARK
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"List.ForceBlankBetween", Field, 19},
    		{"List.Items", Field, 19},
    		{"ListItem", Type, 19},
    		{"ListItem.Content", Field, 19},
    		{"ListItem.Number", Field, 19},
    		{"Paragraph", Type, 19},
    		{"Paragraph.Text", Field, 19},
    		{"Parser", Type, 19},
    		{"Parser.LookupPackage", Field, 19},
    		{"Parser.LookupSym", Field, 19},
    		{"Parser.Words", Field, 19},
    		{"Plain", Type, 19},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    		printf.Analyzer,
    	}
    
    A driver may use the name, flags, and documentation to provide on-line
    help that describes the analyses it performs.
    The doc comment contains a brief one-line summary,
    optionally followed by paragraphs of explanation.
    
    The [Analyzer] type has more fields besides those shown above:
    
    	type Analyzer struct {
    		Name             string
    		Doc              string
    		Flags            flag.FlagSet
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top