Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ExtraUsage (0.11 sec)

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

    }
    
    // StringList implements the plugin.FlagSet interface.
    func (*GoFlags) StringList(o, d, c string) *[]*string {
    	return &[]*string{flag.String(o, d, c)}
    }
    
    // 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) {
    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/transport/transport.go

    )
    
    type transport struct {
    	cert       *string
    	key        *string
    	ca         *string
    	caCertPool *x509.CertPool
    	certs      []tls.Certificate
    	initOnce   sync.Once
    	initErr    error
    }
    
    const extraUsage = `    -tls_cert             TLS client certificate file for fetching profile and symbols
        -tls_key              TLS private key 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)
  3. src/cmd/vendor/github.com/google/pprof/internal/plugin/plugin.go

    	StringList(name string, def string, usage string) *[]*string
    
    	// ExtraUsage returns any additional text that should be printed after the
    	// 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
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/driver/driver.go

    	StringList(name string, def string, usage string) *[]*string
    
    	// ExtraUsage returns any additional text that should be printed after the
    	// 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
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/cli.go

    		} else {
    			flagCommands[name] = flag.Bool(name, false, "Generate a report in "+name+" format")
    		}
    	}
    
    	args := flag.Parse(func() {
    		o.UI.Print(usageMsgHdr +
    			usage(true) +
    			usageMsgSrc +
    			flag.ExtraUsage() +
    			usageMsgVars)
    	})
    	if len(args) == 0 {
    		return nil, nil, errors.New("no profile source specified")
    	}
    
    	var execName string
    	// Recognize first argument as an executable or buildid override.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 12.1K bytes
    - Viewed (0)
Back to top