Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for AddExtraUsage (0.11 sec)

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

    }
    
    // ExtraUsage implements the plugin.FlagSet interface.
    func (f *GoFlags) ExtraUsage() string {
    	return strings.Join(f.UsageMsgs, "\n")
    }
    
    // AddExtraUsage implements the plugin.FlagSet interface.
    func (f *GoFlags) AddExtraUsage(eu string) {
    	f.UsageMsgs = append(f.UsageMsgs, eu)
    }
    
    // Parse implements the plugin.FlagSet interface.
    func (*GoFlags) Parse(usage func()) []string {
    	flag.Usage = usage
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 19 21:26:10 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/plugin/plugin.go

    	// standard usage message. The extra usage message returned includes all text
    	// added with AddExtraUsage().
    	// The typical use of ExtraUsage is to show any custom flags defined by the
    	// specific pprof plugins being used.
    	ExtraUsage() string
    
    	// AddExtraUsage appends additional text to the end of the extra usage message.
    	AddExtraUsage(eu string)
    
    	// Parse initializes the flags with their values for this run
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/driver/driver.go

    	// standard usage message. The extra usage message returned includes all text
    	// added with AddExtraUsage().
    	// The typical use of ExtraUsage is to show any custom flags defined by the
    	// specific pprof plugins being used.
    	ExtraUsage() string
    
    	// AddExtraUsage appends additional text to the end of the extra usage message.
    	AddExtraUsage(eu string)
    
    	// Parse initializes the flags with their values for this run
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/transport/transport.go

    // the flagset is nil, no flags will be added, and users will not be able to
    // use these flags.
    func New(flagset plugin.FlagSet) http.RoundTripper {
    	if flagset == nil {
    		return &transport{}
    	}
    	flagset.AddExtraUsage(extraUsage)
    	return &transport{
    		cert: flagset.String("tls_cert", "", "TLS client certificate file for fetching profile and symbols"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 3.8K bytes
    - Viewed (0)
Back to top