Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for SynchronizedSetMultimap (0.12 seconds)

  1. android/guava-tests/test/com/google/common/collect/MultimapsTest.java

        checkUnmodifiableMultimap(
            synchronizedSetMultimap(HashMultimap.<@Nullable String, @Nullable Integer>create()), false);
      }
    
      @J2ktIncompatible
      @GwtIncompatible // SerializableTester
      public void testSerializingUnmodifiableSynchronizedHashMultimap() {
        Multimap<String, Integer> unmodifiable =
            prepareUnmodifiableTests(
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Tue Oct 28 16:03:47 GMT 2025
    - 38.9K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/collect/Multimaps.java

       * {@code map} and the instances generated by {@code factory} are. Concurrent read operations will
       * work correctly. To allow concurrent update operations, wrap the multimap with a call to {@link
       * #synchronizedSetMultimap}.
       *
       * <p>Call this method only when the simpler methods {@link HashMultimap#create()}, {@link
       * LinkedHashMultimap#create()}, {@link TreeMultimap#create()}, and {@link
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Sep 22 18:35:44 GMT 2025
    - 86.5K bytes
    - Click Count (0)
Back to Top