Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for out_edges (1.39 sec)

  1. tensorflow/c/c_api.cc

      for (const auto* edge : oper_out.oper->node.out_edges()) {
        if (edge->src_output() == oper_out.index) {
          ++count;
        }
      }
      return count;
    }
    
    int TF_OperationOutputConsumers(TF_Output oper_out, TF_Input* consumers,
                                    int max_consumers) {
      int count = 0;
      for (const auto* edge : oper_out.oper->node.out_edges()) {
        if (edge->src_output() == oper_out.index) {
    Registered: Tue Dec 30 12:39:10 UTC 2025
    - Last Modified: Sat Oct 04 05:55:32 UTC 2025
    - 102.4K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/graph/AbstractStandardUndirectedNetworkTest.java

      @Override
      @Test
      public void outEdges_checkReturnedSetMutability() {
        addNode(N1);
        Set<String> outEdges = network.outEdges(N1);
        assertThrows(UnsupportedOperationException.class, () -> outEdges.add(E12));
        addEdge(N1, N2, E12);
        assertThat(network.outEdges(N1)).containsExactlyElementsIn(outEdges);
      }
    
      @Override
      @Test
      public void predecessors_checkReturnedSetMutability() {
        addNode(N2);
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Sep 30 17:09:51 UTC 2025
    - 19K bytes
    - Viewed (0)
  3. guava/src/com/google/common/graph/AbstractBaseGraph.java

                  }
                };
            return nodeInvalidatableSet(incident, node);
          }
    
          @Override
          public Set<EndpointPair<N>> outEdges(N node) {
            checkNotNull(node);
            checkArgument(nodes().contains(node));
            IncidentEdgeSet<N> incident =
                new IncidentEdgeSet<N>(this, node, IncidentEdgeSet.EdgeType.OUTGOING) {
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Oct 07 15:57:03 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/graph/Network.java

      /**
       * Returns a live view of the edges whose {@link #incidentNodes(Object) incident nodes} in this
       * network include {@code node}.
       *
       * <p>This is equal to the union of {@link #inEdges(Object)} and {@link #outEdges(Object)}.
       *
       * <p>If {@code node} is removed from the network after this method is called, the {@code Set}
       * {@code view} returned by this method will be invalidated, and will throw {@code
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Oct 07 15:57:03 UTC 2025
    - 17.7K bytes
    - Viewed (0)
Back to top