Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for synchronizedMultimap (0.1 sec)

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

          Multimap<K, V> multimap, @CheckForNull Object mutex) {
        if (multimap instanceof SynchronizedMultimap || multimap instanceof BaseImmutableMultimap) {
          return multimap;
        }
        return new SynchronizedMultimap<>(multimap, mutex);
      }
    
      static class SynchronizedMultimap<K extends @Nullable Object, V extends @Nullable Object>
          extends SynchronizedObject implements Multimap<K, V> {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 53.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Synchronized.java

          Multimap<K, V> multimap, @CheckForNull Object mutex) {
        if (multimap instanceof SynchronizedMultimap || multimap instanceof BaseImmutableMultimap) {
          return multimap;
        }
        return new SynchronizedMultimap<>(multimap, mutex);
      }
    
      static class SynchronizedMultimap<K extends @Nullable Object, V extends @Nullable Object>
          extends SynchronizedObject implements Multimap<K, V> {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/LinkedHashMultimapTest.java

    import static com.google.common.collect.Lists.newArrayList;
    import static com.google.common.collect.Lists.transform;
    import static com.google.common.collect.Maps.immutableEntry;
    import static com.google.common.collect.Multimaps.synchronizedMultimap;
    import static com.google.common.collect.ReflectionFreeAssertThrows.assertThrows;
    import static com.google.common.collect.Sets.newHashSet;
    import static com.google.common.collect.Sets.newLinkedHashSet;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/collect/MultimapsTest.java

    import static com.google.common.collect.Multimaps.filterKeys;
    import static com.google.common.collect.Multimaps.synchronizedListMultimap;
    import static com.google.common.collect.Multimaps.synchronizedMultimap;
    import static com.google.common.collect.Multimaps.synchronizedSetMultimap;
    import static com.google.common.collect.Multimaps.synchronizedSortedSetMultimap;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  5. 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
       * #synchronizedMultimap}.
       *
       * <p>Call this method only when the simpler methods {@link ArrayListMultimap#create()}, {@link
       * HashMultimap#create()}, {@link LinkedHashMultimap#create()}, {@link
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 16 21:21:17 UTC 2024
    - 86.3K bytes
    - Viewed (0)
Back to top