Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for paragraph (0.26 sec)

  1. src/go/doc/comment/text.go

    	}
    	out.WriteByte('\n')
    }
    
    // block prints the block x to out.
    func (p *textPrinter) block(out *bytes.Buffer, x Block) {
    	switch x := x.(type) {
    	default:
    		fmt.Fprintf(out, "?%T\n", x)
    
    	case *Paragraph:
    		out.WriteString(p.prefix)
    		p.text(out, "", x.Text)
    
    	case *Heading:
    		out.WriteString(p.prefix)
    		out.WriteString("# ")
    		p.text(out, "", x.Text)
    
    	case *Code:
    		text := x.Text
    		for text != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  2. internal/kms/context.go

    			if start < i {
    				dst.WriteString(s[start:i])
    			}
    			dst.WriteString(`\ufffd`)
    			i += size
    			start = i
    			continue
    		}
    		// U+2028 is LINE SEPARATOR.
    		// U+2029 is PARAGRAPH SEPARATOR.
    		// They are both technically valid characters in JSON strings,
    		// but don't work in JSONP, which has to be evaluated as JavaScript,
    		// and can lead to security holes there. It is valid JSON to
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 02 17:15:06 UTC 2022
    - 6K bytes
    - Viewed (0)
  3. releasenotes/README.md

    ### Security Notes
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 09 20:31:49 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  4. src/log/slog/json_handler.go

    		if c == utf8.RuneError && size == 1 {
    			if start < i {
    				str(s[start:i])
    			}
    			str(`\ufffd`)
    			i += size
    			start = i
    			continue
    		}
    		// U+2028 is LINE SEPARATOR.
    		// U+2029 is PARAGRAPH SEPARATOR.
    		// They are both technically valid characters in JSON strings,
    		// but don't work in JSONP, which has to be evaluated as JavaScript,
    		// and can lead to security holes there. It is valid JSON to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:18:11 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/build/relnote/links.go

    	case *md.Text:
    		b.Inline = addSymbolLinksInlines(b.Inline, defaultPackage)
    	case *md.List:
    		addSymbolLinksBlocks(b.Items, defaultPackage)
    	case *md.Item:
    		addSymbolLinksBlocks(b.Blocks, defaultPackage)
    	case *md.Paragraph:
    		addSymbolLinksBlock(b.Text, defaultPackage)
    	case *md.Quote:
    		addSymbolLinksBlocks(b.Blocks, defaultPackage)
    	// no links in these blocks
    	case *md.CodeBlock:
    	case *md.HTMLBlock:
    	case *md.Empty:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/cache/LoadingCache.java

       * {@link #get} instead.
       *
       * @throws UncheckedExecutionException if an exception was thrown while loading the value. (As
       *     explained in the last paragraph above, this should be an unchecked exception only.)
       * @throws ExecutionError if an error was thrown while loading the value
       */
      @CanIgnoreReturnValue // TODO(b/27479612): consider removing this?
      V getUnchecked(K key);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Aug 06 17:12:03 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  7. guava/src/com/google/common/cache/LoadingCache.java

       * {@link #get} instead.
       *
       * @throws UncheckedExecutionException if an exception was thrown while loading the value. (As
       *     explained in the last paragraph above, this should be an unchecked exception only.)
       * @throws ExecutionError if an error was thrown while loading the value
       */
      @CanIgnoreReturnValue // TODO(b/27479612): consider removing this?
      V getUnchecked(K key);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Aug 06 17:12:03 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  8. src/go/doc/testdata/bugpara.0.golden

    PACKAGE bugpara
    
    IMPORTPATH
    	testdata/bugpara
    
    FILENAMES
    	testdata/bugpara.go
    
    BUGS .Bugs is now deprecated, please use .Notes instead
    	Sometimes bugs have multiple paragraphs.
    	
    	Like this one.
    
    
    BUGS
    BUG(rsc)	Sometimes bugs have multiple paragraphs.
    	
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 275 bytes
    - Viewed (0)
  9. src/go/doc/testdata/bugpara.2.golden

    PACKAGE bugpara
    
    IMPORTPATH
    	testdata/bugpara
    
    FILENAMES
    	testdata/bugpara.go
    
    BUGS .Bugs is now deprecated, please use .Notes instead
    	Sometimes bugs have multiple paragraphs.
    	
    	Like this one.
    
    
    BUGS
    BUG(rsc)	Sometimes bugs have multiple paragraphs.
    	
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 275 bytes
    - Viewed (0)
  10. src/go/doc/testdata/bugpara.1.golden

    PACKAGE bugpara
    
    IMPORTPATH
    	testdata/bugpara
    
    FILENAMES
    	testdata/bugpara.go
    
    BUGS .Bugs is now deprecated, please use .Notes instead
    	Sometimes bugs have multiple paragraphs.
    	
    	Like this one.
    
    
    BUGS
    BUG(rsc)	Sometimes bugs have multiple paragraphs.
    	
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 275 bytes
    - Viewed (0)
Back to top