Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. plugin/pkg/auth/authorizer/node/graph.go

    	}
    }
    
    // A fastpath for recomputeDestinationIndex_locked for "adding edge case".
    func (g *Graph) addEdgeToDestinationIndex_locked(e graph.Edge) {
    	n := e.From()
    	index := g.destinationEdgeIndex[n.ID()]
    	if index == nil {
    		// There is no index, use the full index computation method
    		g.recomputeDestinationIndex_locked(n)
    		return
    	}
    	// fast-add the new edge to an existing index
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top