Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for outEdges (0.09 sec)

  1. guava/src/com/google/common/graph/DirectedGraphConnections.java

            }
    
            orderedNodeConnectionsBuilder.add(new NodeConnection.Pred<>(predecessor));
            predecessorCount++;
          } else { // incidentEdge is an outEdge
            checkArgument(incidentEdge.nodeU().equals(thisNode));
    
            N successor = incidentEdge.nodeV();
            V value = successorNodeToValueFn.apply(successor);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 18K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_cluster_util.cc

          if (n->IsSource() || n->IsSink()) {
            continue;
          }
    
          bool inserted_n = false;
          const EdgeSet& edges =
              direction == Direction::kForward ? n->in_edges() : n->out_edges();
          for (const Edge* e : edges) {
            if (result->contains(direction == Direction::kForward ? e->src()
                                                                  : e->dst())) {
              result->insert(n);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    // but does not have the ManagedGatewayLabel, we won't overwrite it.
    // This ensures we don't accidentally take over some resource we weren't supposed to, which could cause outages.
    // Note K8s doesn't have a perfect way to "conditionally SSA", but its close enough (https://github.com/kubernetes/kubernetes/issues/116156).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
Back to top