Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for outEdges (0.24 sec)

  1. android/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 Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jul 02 18:21:29 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/graph/AbstractStandardDirectedNetworkTest.java

        assume().that(graphIsMutable()).isTrue();
    
        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() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jul 02 18:21:29 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/graph/AbstractStandardDirectedNetworkTest.java

        assume().that(graphIsMutable()).isTrue();
    
        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() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jul 02 18:21:29 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  4. 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 Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jul 02 18:21:29 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  5. 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 Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 10 15:41:27 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  6. 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 Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 10 15:41:27 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/graph/ElementOrder.java

       *         <li>{@code successors(node)}: Connecting edge insertion order
       *         <li>{@code incidentEdges(node)}: Stable order
       *         <li>{@code inEdges(node)}: Edge insertion order
       *         <li>{@code outEdges(node)}: Edge insertion order
       *         <li>{@code adjacentEdges(edge)}: Stable order
       *         <li>{@code edgesConnecting(nodeU, nodeV)}: Edge insertion order
       *       </ul>
       * </ul>
       *
       * @since 29.0
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 16 17:21:56 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/graph/ElementOrder.java

       *         <li>{@code successors(node)}: Connecting edge insertion order
       *         <li>{@code incidentEdges(node)}: Stable order
       *         <li>{@code inEdges(node)}: Edge insertion order
       *         <li>{@code outEdges(node)}: Edge insertion order
       *         <li>{@code adjacentEdges(edge)}: Stable order
       *         <li>{@code edgesConnecting(nodeU, nodeV)}: Edge insertion order
       *       </ul>
       * </ul>
       *
       * @since 29.0
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 16 17:21:56 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. 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 Nov 05 12:39:12 UTC 2024
    - Last Modified: Sat Oct 12 16:27:48 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top