Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for helpText (0.11 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    	// Data sorting criteria
    	"flat": helpText("Sort entries based on own weight"),
    	"cum":  helpText("Sort entries based on cumulative weight"),
    
    	// Output granularity
    	"functions": helpText(
    		"Aggregate at the function level.",
    		"Ignores the filename where the function was defined."),
    	"filefunctions": helpText(
    		"Aggregate at the function level.",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modfetch/codehost/codehost.go

    	Cmd      string
    	Err      error
    	Stderr   []byte
    	HelpText string
    }
    
    func (e *RunError) Error() string {
    	text := e.Cmd + ": " + e.Err.Error()
    	stderr := bytes.TrimRight(e.Stderr, "\n")
    	if len(stderr) > 0 {
    		text += ":\n\t" + strings.ReplaceAll(string(stderr), "\n", "\n\t")
    	}
    	if len(e.HelpText) > 0 {
    		text += "\n" + e.HelpText
    	}
    	return text
    }
    
    var dirLock sync.Map
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/codehost/git.go

    		release()
    
    		if gitErr != nil {
    			if rerr, ok := gitErr.(*RunError); ok {
    				if bytes.Contains(rerr.Stderr, []byte("fatal: could not read Username")) {
    					rerr.HelpText = "Confirm the import path was entered correctly.\nIf this is a private repository, see https://golang.org/doc/faq#git_https for additional information."
    				}
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
Back to top