Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for ceilingKey (0.28 sec)

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

          assertTrue(Thread.holdsLock(mutex));
          return delegate().ceilingEntry(key);
        }
    
        @Override
        public @Nullable K ceilingKey(K key) {
          assertTrue(Thread.holdsLock(mutex));
          return delegate().ceilingKey(key);
        }
    
        @Override
        public NavigableSet<K> descendingKeySet() {
          assertTrue(Thread.holdsLock(mutex));
          return delegate().descendingKeySet();
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Apr 19 19:24:36 GMT 2023
    - 12.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ForwardingNavigableMap.java

      }
    
      @Override
      @CheckForNull
      public K ceilingKey(@ParametricNullness K key) {
        return delegate().ceilingKey(key);
      }
    
      /**
       * A sensible definition of {@link #ceilingKey} in terms of {@code ceilingEntry}. If you override
       * {@code ceilingEntry}, you may wish to override {@code ceilingKey} to forward to this
       * implementation.
       */
      @CheckForNull
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Jun 15 18:11:44 GMT 2023
    - 14.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ForwardingNavigableMap.java

      }
    
      @Override
      @CheckForNull
      public K ceilingKey(@ParametricNullness K key) {
        return delegate().ceilingKey(key);
      }
    
      /**
       * A sensible definition of {@link #ceilingKey} in terms of {@code ceilingEntry}. If you override
       * {@code ceilingEntry}, you may wish to override {@code ceilingKey} to forward to this
       * implementation.
       */
      @CheckForNull
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Jun 15 18:11:44 GMT 2023
    - 14.5K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/SynchronizedNavigableMapTest.java

          assertTrue(Thread.holdsLock(mutex));
          return delegate().ceilingEntry(key);
        }
    
        @Override
        public @Nullable K ceilingKey(K key) {
          assertTrue(Thread.holdsLock(mutex));
          return delegate().ceilingKey(key);
        }
    
        @Override
        public NavigableSet<K> descendingKeySet() {
          assertTrue(Thread.holdsLock(mutex));
          return delegate().descendingKeySet();
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Apr 19 19:24:36 GMT 2023
    - 12.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

          return (entry == null) ? null : wrapEntry(entry);
        }
    
        @Override
        @CheckForNull
        public K ceilingKey(@ParametricNullness K key) {
          return sortedMap().ceilingKey(key);
        }
    
        @Override
        @CheckForNull
        public Entry<K, Collection<V>> higherEntry(@ParametricNullness K key) {
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Fri Oct 13 14:11:58 GMT 2023
    - 48K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

          return (entry == null) ? null : wrapEntry(entry);
        }
    
        @Override
        @CheckForNull
        public K ceilingKey(@ParametricNullness K key) {
          return sortedMap().ceilingKey(key);
        }
    
        @Override
        @CheckForNull
        public Entry<K, Collection<V>> higherEntry(@ParametricNullness K key) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Oct 13 14:11:58 GMT 2023
    - 46.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/TreeRangeMap.java

          if (lowerEntry != null
              && lowerEntry.getValue().getUpperBound().compareTo(subRange.lowerBound) > 0) {
            lowerBound = subRange.lowerBound;
          } else {
            lowerBound = entriesByLowerBound.ceilingKey(subRange.lowerBound);
            if (lowerBound == null || lowerBound.compareTo(subRange.upperBound) >= 0) {
              throw new NoSuchElementException();
            }
          }
    
          Cut<K> upperBound;
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 21.9K bytes
    - Viewed (0)
Back to top