Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for elementOrder (0.05 sec)

  1. android/guava-tests/test/com/google/common/graph/AbstractGraphTest.java

        assertThat(graph.isDirected()).isEqualTo(asNetwork.isDirected());
        assertThat(graph.allowsSelfLoops()).isEqualTo(asNetwork.allowsSelfLoops());
        assertThat(asNetwork.edgeOrder()).isEqualTo(ElementOrder.unordered());
        assertThat(asNetwork.allowsParallelEdges()).isFalse();
        assertThat(asNetwork.asGraph()).isEqualTo(graph);
    
        Set<EndpointPair<N>> allEndpointPairs = new HashSet<>();
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Oct 07 15:57:03 UTC 2025
    - 17.3K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/graph/AbstractGraphTest.java

        assertThat(graph.isDirected()).isEqualTo(asNetwork.isDirected());
        assertThat(graph.allowsSelfLoops()).isEqualTo(asNetwork.allowsSelfLoops());
        assertThat(asNetwork.edgeOrder()).isEqualTo(ElementOrder.unordered());
        assertThat(asNetwork.allowsParallelEdges()).isFalse();
        assertThat(asNetwork.asGraph()).isEqualTo(graph);
    
        Set<EndpointPair<N>> allEndpointPairs = new HashSet<>();
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Oct 07 15:57:03 UTC 2025
    - 17.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/graph/Network.java

       * network that does not allow them will throw an {@link IllegalArgumentException}.
       */
      boolean allowsParallelEdges();
    
      /** Returns the order of iteration for the elements of {@link #edges()}. */
      ElementOrder<E> edgeOrder();
    
      //
      // Element-level accessors
      //
    
      /**
       * Returns a live view of the edges whose {@link #incidentNodes(Object) incident nodes} in this
       * network include {@code node}.
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Oct 07 15:57:03 UTC 2025
    - 17.7K bytes
    - Viewed (0)
  4. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/DomUtilsTest.java

            DomUtils.insertContentElement(root, "description", "Test description");
            DomUtils.insertContentElement(root, "name", "Test Project");
            DomUtils.insertNewElement("properties", root);
    
            String xmlOutput = DomUtils.toXml(doc);
    
            // Verify that elements appear in the correct order according to ELEMENT_ORDER
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 31.3K bytes
    - Viewed (0)
Back to top