Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for comparePods (0.2 sec)

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

    				if iv, jv := l.Info.PrintableName(), r.Info.PrintableName(); iv != jv {
    					return iv < jv
    				}
    				return compareNodes(l, r)
    			},
    		}
    	case NameOrder:
    		s = nodeSorter{ns,
    			func(l, r *Node) bool {
    				if iv, jv := l.Info.Name, r.Info.Name; iv != jv {
    					return iv < jv
    				}
    				return compareNodes(l, r)
    			},
    		}
    	case FileOrder:
    		s = nodeSorter{ns,
    			func(l, r *Node) bool {
    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