Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for paragraph (0.57 sec)

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

    // 	panic("unimplemented")
    // }
    
    // DefaultDirection sets the default direction for a Paragraph. The direction is
    // overridden if the text contains directional characters.
    func DefaultDirection(d Direction) Option {
    	return func(opts *options) {
    		opts.defaultDirection = d
    	}
    }
    
    // A Paragraph holds a single Paragraph for Bidi processing.
    type Paragraph struct {
    	p          []byte
    	o          Ordering
    	opts       []Option
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 10.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. LICENSE

    provided under this License.  Any attempt otherwise to propagate or
    modify it is void, and will automatically terminate your rights under
    this License (including any patent licenses granted under the third
    paragraph of section 11).
    
      However, if you cease all violation of this License, then your
    license from a particular copyright holder is reinstated (a)
    provisionally, unless and until the copyright holder explicitly and
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 33.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java

                                " but readBytesWireFormat returned " + n );
                    }
                }
                // Don't think we can rely on n being correct here. Must use byteCount.
                // Last paragraph of section 3.13.3 eludes to this.
    
                bufferIndex += byteCount;
            }
    
            length = bufferIndex - start;
            return length;
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 21K bytes
    - Viewed (0)
Back to top