Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for FindOrInsertNode (0.28 sec)

  1. src/internal/profile/graph.go

    // allow for the use of *Node.
    type NodePtrSet map[*Node]bool
    
    // FindOrInsertNode takes the info for a node and either returns a matching node
    // from the node map if one exists, or adds one to the map if one does not.
    // If kept is non-nil, nodes are only added if they can be located on it.
    func (nm NodeMap) FindOrInsertNode(info NodeInfo, kept NodeSet) *Node {
    	if kept != nil {
    		if _, ok := kept[info]; !ok {
    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

    // allow for the use of *Node.
    type NodePtrSet map[*Node]bool
    
    // FindOrInsertNode takes the info for a node and either returns a matching node
    // from the node map if one exists, or adds one to the map if one does not.
    // If kept is non-nil, nodes are only added if they can be located on it.
    func (nm NodeMap) FindOrInsertNode(info NodeInfo, kept NodeSet) *Node {
    	if kept != nil {
    		if _, ok := kept[info]; !ok {
    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