Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for nullableSynchronizedEntry (0.24 sec)

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

        public Map.Entry<K, V> firstEntry() {
          synchronized (mutex) {
            return nullableSynchronizedEntry(delegate().firstEntry(), mutex);
          }
        }
    
        @Override
        @CheckForNull
        public Map.Entry<K, V> floorEntry(K key) {
          synchronized (mutex) {
            return nullableSynchronizedEntry(delegate().floorEntry(key), mutex);
          }
        }
    
        @Override
        @CheckForNull
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 53.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Synchronized.java

        public Map.Entry<K, V> firstEntry() {
          synchronized (mutex) {
            return nullableSynchronizedEntry(delegate().firstEntry(), mutex);
          }
        }
    
        @Override
        @CheckForNull
        public Map.Entry<K, V> floorEntry(K key) {
          synchronized (mutex) {
            return nullableSynchronizedEntry(delegate().floorEntry(key), mutex);
          }
        }
    
        @Override
        @CheckForNull
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 57.3K bytes
    - Viewed (0)
Back to top