Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 42 of 42 for headingID (0.12 sec)

  1. src/cmd/go/scriptreadme_test.go

    	FAIL	cmd/go	4.875s
    	$
    
    Note that the commands in earlier phases have been hidden, so that the relevant
    commands are more easily found, and the elapsed time for a completed phase
    is shown next to the phase heading. To see the entire execution, use "go test -v",
    which also adds an initial environment dump to the beginning of the log.
    
    Note also that in reported output, the actual name of the per-script temporary directory
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. src/go/doc/comment/text.go

    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 != "" {
    			var line string
    			line, text, _ = strings.Cut(text, "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 8.8K bytes
    - Viewed (0)
Back to top