Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for unionOf (0.03 sec)

  1. android/guava/src/com/google/common/graph/ArchetypeGraph.java

      //
      // Element-level accessors
      //
    
      /**
       * Returns a live view of the nodes which have an incident edge in common with {@code node} in
       * this graph.
       *
       * <p>This is equal to the union of {@link #predecessors(Object)} and {@link #successors(Object)}.
       *
       * <p>If {@code node} is removed from the graph after this method is called, the {@code Set}
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Nov 11 17:11:16 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/graph/AbstractBaseGraph.java

            checkArgument(edges().contains(edge));
            N nodeU = edge.nodeU();
            N nodeV = edge.nodeV();
            Set<EndpointPair<N>> endpointPairIncidentEdges =
                Sets.union(incidentEdges(nodeU), incidentEdges(nodeV));
            return nodePairInvalidatableSet(
                Sets.difference(endpointPairIncidentEdges, ImmutableSet.of(edge)), nodeU, nodeV);
          }
    
          @Override
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Oct 07 15:57:03 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/cache/CacheBuilderTest.java

          assertThat(removalNotifications.get("b" + i)).isEqualTo("b" + i);
        }
    
        // Each of the values added to the map should either still be there, or have seen a removal
        // notification.
        assertThat(Sets.union(cache.asMap().keySet(), removalNotifications.keySet()))
            .isEqualTo(expectedKeys);
        assertThat(cache.asMap().keySet()).containsNoneIn(removalNotifications.keySet());
        threadPool.shutdown();
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Sep 30 22:03:28 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/graph/Network.java

      // Element-level accessors
      //
    
      /**
       * 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}
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Oct 07 15:57:03 UTC 2025
    - 17.7K bytes
    - Viewed (0)
  5. gradle/wrapper/gradle-wrapper.jar

    conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management...
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Thu Oct 30 01:56:29 UTC 2025
    - 44.6K bytes
    - Viewed (1)
Back to top