Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NameComponents (0.19 sec)

  1. src/internal/profile/graph.go

    // PrintableName calls the Node's Formatter function with a single space separator.
    func (i *NodeInfo) PrintableName() string {
    	return strings.Join(i.NameComponents(), " ")
    }
    
    // NameComponents returns the components of the printable name to be used for a node.
    func (i *NodeInfo) NameComponents() []string {
    	var name []string
    	if i.Address != 0 {
    		name = append(name, fmt.Sprintf("%016x", i.Address))
    	}
    	if fun := i.Name; fun != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 20:59:15 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    // PrintableName calls the Node's Formatter function with a single space separator.
    func (i *NodeInfo) PrintableName() string {
    	return strings.Join(i.NameComponents(), " ")
    }
    
    // NameComponents returns the components of the printable name to be used for a node.
    func (i *NodeInfo) NameComponents() []string {
    	var name []string
    	if i.Address != 0 {
    		name = append(name, fmt.Sprintf("%016x", i.Address))
    	}
    	if fun := i.Name; fun != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
Back to top