Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for RemoveEdge (0.14 sec)

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

    	for _, v := range neighborsToRemove {
    		g.removeVertex_locked(v)
    	}
    
    	// remove edges and decrement destination indexes for neighbors that dropped outbound edges
    	for _, edge := range edgesToRemove {
    		g.graph.RemoveEdge(edge)
    		g.removeEdgeFromDestinationIndex_locked(edge)
    	}
    }
    
    // A fastpath for recomputeDestinationIndex_locked for "removing edge" case.
    func (g *Graph) removeEdgeFromDestinationIndex_locked(e graph.Edge) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

        // It will be enough for shape inference. Leave `g` unchanged.
      }
    
      // Control edges are not useful for shape inference. Remove them.
      for (auto e : g->edges()) {
        if (e->IsControlEdge()) {
          g->RemoveEdge(e);
        }
      }
    
      // Nodes that are not reverse reachable from SendFromHost are not useful for
      // shape inference. Prune them.
      PruneForReverseReachability(g,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  3. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    getVerticies(); public java.util.Set getLabels(); public Vertex addVertex(String); public void addEdge(String, String) throws CycleDetectedExcepti; public void addEdge(Vertex, Vertex) throws CycleDetectedExcepti; public void removeEdge(String, String); public void removeEdge(Vertex, Vertex); public Vertex getVertex(String); public boolean hasEdge(String, String); public java.util.List getChildLabels(String); public java.util.List getParentLabels(String); public Object clone() throws CloneNotSupportedExc;...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
Back to top