Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for paragraph (0.36 sec)

  1. src/vendor/golang.org/x/text/unicode/bidi/core.go

    	for _, s := range set {
    		if c == s {
    			return true
    		}
    	}
    	return false
    }
    
    // A paragraph contains the state of a paragraph.
    type paragraph struct {
    	initialTypes []Class
    
    	// Arrays of properties needed for paired bracket evaluation in N0
    	pairTypes  []bracketType // paired Bracket types for paragraph
    	pairValues []rune        // rune for opening bracket or pbOpen and pbClose; 0 for pbNone
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:26:23 UTC 2022
    - 29.4K bytes
    - Viewed (0)
  2. src/go/doc/comment/parse.go

    	// Content is the list content.
    	// Currently, restrictions in the parser and printer
    	// require every element of Content to be a *Paragraph.
    	Content []Block // Content of this item.
    }
    
    // A Paragraph is a paragraph of text.
    type Paragraph struct {
    	Text []Text
    }
    
    func (*Paragraph) block() {}
    
    // A Code is a preformatted code block.
    type Code struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 33.5K bytes
    - Viewed (0)
  3. JavadocStyleGuide.md

    - The first sentence is a summary.
    - Notice the inline tag `{@link URL}`, which converts to an HTML hyperlink pointing to the documentation for the URL class.
    - If you have more than one paragraph in the doc comment, separate the paragraphs with a `<p>` paragraph tag, as shown.
    - Insert a blank comment line between the description and the list of tags, as shown.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    	case *md.HTMLBlock:
    		return strings.Join(b.Text, "\n")
    	case *md.List:
    		return blocksText(b.Items)
    	case *md.Item:
    		return blocksText(b.Blocks)
    	case *md.Empty:
    		return ""
    	case *md.Paragraph:
    		return text(b.Text)
    	case *md.Quote:
    		return blocksText(b.Blocks)
    	case *md.ThematicBreak:
    		return "---"
    	default:
    		panic(fmt.Sprintf("unknown block type %T", b))
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. api/go1.19.txt

    pkg go/doc/comment, type ListItem struct #51082
    pkg go/doc/comment, type ListItem struct, Content []Block #51082
    pkg go/doc/comment, type ListItem struct, Number string #51082
    pkg go/doc/comment, type Paragraph struct #51082
    pkg go/doc/comment, type Paragraph struct, Text []Text #51082
    pkg go/doc/comment, type Parser struct #51082
    pkg go/doc/comment, type Parser struct, LookupPackage func(string) (string, bool) #51082
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:29:41 UTC 2022
    - 17.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/rsc.io/markdown/html.go

    	if name, j, ok := parseTagName(s, i+1); ok {
    		switch name {
    		case "pre", "script", "style", "textarea":
    			// Goldmark treats these as starting a new HTMLBlock
    			// and ending the paragraph they appear in.
    			p.corner = true
    		}
    		for {
    			if j >= len(s) || s[j] != ' ' && s[j] != '\t' && s[j] != '\n' && s[j] != '/' && s[j] != '>' {
    				return nil, 0, false
    			}
    			_, k, ok := parseAttr(p, s, j)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/imports.go

    func isTopName(n ast.Expr, name string) bool {
    	id, ok := n.(*ast.Ident)
    	return ok && id.Name == name && id.Obj == nil
    }
    
    // Imports returns the file imports grouped by paragraph.
    func Imports(fset *token.FileSet, f *ast.File) [][]*ast.ImportSpec {
    	var groups [][]*ast.ImportSpec
    
    	for _, decl := range f.Decls {
    		genDecl, ok := decl.(*ast.GenDecl)
    		if !ok || genDecl.Tok != token.IMPORT {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 21:56:21 UTC 2022
    - 13.4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/SmoothRateLimiter.java

       * for 10 seconds (i.e., we expected a request at time X, but we are at time X + 10 seconds before
       * a request actually arrives; this is also related to the point made in the last paragraph), thus
       * storedPermits becomes 10.0 (assuming maxStoredPermits >= 10.0). At that point, a request of
       * acquire(3) arrives. We serve this request out of storedPermits, and reduce that to 7.0 (how
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  10. 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)
Back to top