Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for DescendingMap (0.14 sec)

  1. guava/src/com/google/common/collect/ImmutableSortedMap.java

      @Override
      public ImmutableSortedMap<K, V> descendingMap() {
        // TODO(kevinb): The descendingMap is never actually cached at all. Either:
        //
        // - Cache it, and annotate the field with @LazyInit.
        // - Simplify the code below, and consider eliminating the field (b/287198172), which is also
        //   set by one of the constructors.
        ImmutableSortedMap<K, V> result = descendingMap;
        if (result == null) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

      @Override
      public ImmutableSortedMap<K, V> descendingMap() {
        // TODO(kevinb): The descendingMap is never actually cached at all. Either:
        //
        // - Cache it, and annotate the field with @LazyInit.
        // - Simplify the code below, and consider eliminating the field (b/287198172), which is also
        //   set by one of the constructors.
        ImmutableSortedMap<K, V> result = descendingMap;
        if (result == null) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Synchronized.java

          }
        }
    
        @CheckForNull transient NavigableMap<K, V> descendingMap;
    
        @Override
        public NavigableMap<K, V> descendingMap() {
          synchronized (mutex) {
            if (descendingMap == null) {
              return descendingMap = navigableMap(delegate().descendingMap(), mutex);
            }
            return descendingMap;
          }
        }
    
        @Override
        @CheckForNull
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 53.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Synchronized.java

          }
        }
    
        @CheckForNull transient NavigableMap<K, V> descendingMap;
    
        @Override
        public NavigableMap<K, V> descendingMap() {
          synchronized (mutex) {
            if (descendingMap == null) {
              return descendingMap = navigableMap(delegate().descendingMap(), mutex);
            }
            return descendingMap;
          }
        }
    
        @Override
        @CheckForNull
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 57.2K bytes
    - Viewed (0)
Back to top