Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 62 for collection (0.25 sec)

  1. android/guava/src/com/google/common/collect/Multimaps.java

          Collection<V> collection) {
        if (collection instanceof SortedSet) {
          return Collections.unmodifiableSortedSet((SortedSet<V>) collection);
        } else if (collection instanceof Set) {
          return Collections.unmodifiableSet((Set<V>) collection);
        } else if (collection instanceof List) {
          return Collections.unmodifiableList((List<V>) collection);
        }
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 86.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Sets.java

        checkNotNull(collection);
        return (collection instanceof EnumSet)
            ? EnumSet.complementOf((EnumSet<E>) collection)
            : makeComplementByHand(collection, type);
      }
    
      @J2ktIncompatible
      @GwtIncompatible
      private static <E extends Enum<E>> EnumSet<E> makeComplementByHand(
          Collection<E> collection, Class<E> type) {
        EnumSet<E> result = EnumSet.allOf(type);
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 77.4K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/AbstractSession.java

                Collections.synchronizedMap(new WeakHashMap<>());
        private final Map<org.eclipse.aether.artifact.Artifact, Artifact> allArtifacts =
                Collections.synchronizedMap(new WeakHashMap<>());
        private final Map<org.eclipse.aether.repository.RemoteRepository, RemoteRepository> allRepositories =
                Collections.synchronizedMap(new WeakHashMap<>());
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 16:33:18 GMT 2024
    - 27.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Multisets.java

      static boolean removeAllImpl(Multiset<?> self, Collection<?> elementsToRemove) {
        Collection<?> collection =
            (elementsToRemove instanceof Multiset)
                ? ((Multiset<?>) elementsToRemove).elementSet()
                : elementsToRemove;
    
        return self.elementSet().removeAll(collection);
      }
    
      /** An implementation of {@link Multiset#retainAll}. */
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 41.7K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ImmutableSetMultimap.java

          super.orderValuesBy(valueComparator);
          return this;
        }
    
        /** Returns a newly-created immutable set multimap. */
        @Override
        public ImmutableSetMultimap<K, V> build() {
          Collection<Map.Entry<K, Collection<V>>> mapEntries = builderMap.entrySet();
          if (keyComparator != null) {
            mapEntries = Ordering.from(keyComparator).<K>onKeys().immutableSortedCopy(mapEntries);
          }
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 23.6K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/MavenSessionBuilderSupplier.java

    import org.eclipse.aether.artifact.ArtifactTypeRegistry;
    import org.eclipse.aether.collection.DependencyGraphTransformer;
    import org.eclipse.aether.collection.DependencyManager;
    import org.eclipse.aether.collection.DependencySelector;
    import org.eclipse.aether.collection.DependencyTraverser;
    import org.eclipse.aether.impl.scope.InternalScopeManager;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 16:33:18 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         */
        void unregisterListener(@Nonnull Listener listener);
    
        /**
         * Returns the list of registered listeners.
         *
         * @return an immutable collection of listeners, never {@code null}
         */
        @Nonnull
        Collection<Listener> getListeners();
    
        /**
         * Shortcut for {@code getService(RepositoryFactory.class).createLocal(...)}.
         *
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 30.2K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderRequest.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.api.services;
    
    import java.nio.file.Path;
    import java.util.Collection;
    import java.util.List;
    import java.util.Map;
    
    import org.apache.maven.api.Session;
    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.annotations.Immutable;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 17.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Maps.java

            return false;
          }
    
          @Override
          public boolean removeAll(Collection<?> collection) {
            return removeAllKeys(unfiltered, predicate, collection);
          }
    
          @Override
          public boolean retainAll(Collection<?> collection) {
            return retainAllKeys(unfiltered, predicate, collection);
          }
    
          @Override
          public @Nullable Object[] toArray() {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 159.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Iterators.java

      /**
       * Adds all elements in {@code iterator} to {@code collection}. The iterator will be left
       * exhausted: its {@code hasNext()} method will return {@code false}.
       *
       * @return {@code true} if {@code collection} was modified as a result of this operation
       */
      @CanIgnoreReturnValue
      public static <T extends @Nullable Object> boolean addAll(
          Collection<T> addTo, Iterator<? extends T> iterator) {
        checkNotNull(addTo);
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Apr 30 18:43:01 GMT 2024
    - 51.1K bytes
    - Viewed (0)
Back to top