- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 10 for lowerKey (0.53 sec)
-
android/guava-testlib/src/com/google/common/collect/testing/testers/NavigableMapNavigationTester.java
assertEquals(null, navigableMap.lowerEntry(a.getKey())); assertEquals(null, navigableMap.lowerKey(a.getKey())); assertEquals(a, navigableMap.lowerEntry(b.getKey())); assertEquals(a.getKey(), navigableMap.lowerKey(b.getKey())); assertEquals(a, navigableMap.lowerEntry(c.getKey())); assertEquals(a.getKey(), navigableMap.lowerKey(c.getKey())); } @CollectionSize.Require(SEVERAL) public void testFloor() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Nov 14 23:40:07 UTC 2024 - 9.1K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/testers/NavigableMapNavigationTester.java
assertEquals(null, navigableMap.lowerEntry(a.getKey())); assertEquals(null, navigableMap.lowerKey(a.getKey())); assertEquals(a, navigableMap.lowerEntry(b.getKey())); assertEquals(a.getKey(), navigableMap.lowerKey(b.getKey())); assertEquals(a, navigableMap.lowerEntry(c.getKey())); assertEquals(a.getKey(), navigableMap.lowerKey(c.getKey())); } @CollectionSize.Require(SEVERAL) public void testFloor() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Nov 14 23:40:07 UTC 2024 - 9.1K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/SafeTreeMap.java
} @Override public @Nullable Entry<K, V> lowerEntry(K key) { return delegate.lowerEntry(checkValid(key)); } @Override public @Nullable K lowerKey(K key) { return delegate.lowerKey(checkValid(key)); } @Override public NavigableSet<K> navigableKeySet() { return delegate.navigableKeySet(); } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 7.5K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ForwardingNavigableMap.java
return headMap(key, false).lastEntry(); } @Override public @Nullable K lowerKey(@ParametricNullness K key) { return delegate().lowerKey(key); } /** * A sensible definition of {@link #lowerKey} in terms of {@code lowerEntry}. If you override * {@link #lowerEntry}, you may wish to override {@code lowerKey} to forward to this * implementation. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 14.1K bytes - Viewed (0) -
guava/src/com/google/common/collect/ForwardingNavigableMap.java
return headMap(key, false).lastEntry(); } @Override public @Nullable K lowerKey(@ParametricNullness K key) { return delegate().lowerKey(key); } /** * A sensible definition of {@link #lowerKey} in terms of {@code lowerEntry}. If you override * {@link #lowerEntry}, you may wish to override {@code lowerKey} to forward to this * implementation. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 14.3K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/SafeTreeMap.java
} @Override public @Nullable Entry<K, V> lowerEntry(K key) { return delegate.lowerEntry(checkValid(key)); } @Override public @Nullable K lowerKey(K key) { return delegate.lowerKey(checkValid(key)); } @Override public NavigableSet<K> navigableKeySet() { return delegate.navigableKeySet(); } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 7.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ForwardingNavigableMapTest.java
return standardSubMap(fromKey, toKey); } @Override public @Nullable Entry<K, V> lowerEntry(K key) { return standardLowerEntry(key); } @Override public @Nullable K lowerKey(K key) { return standardLowerKey(key); } @Override public @Nullable Entry<K, V> floorEntry(K key) { return standardFloorEntry(key); } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 9.5K bytes - Viewed (0) -
guava/src/com/google/common/collect/AbstractMapBasedMultimap.java
Entry<K, Collection<V>> entry = sortedMap().lowerEntry(key); return (entry == null) ? null : wrapEntry(entry); } @Override public @Nullable K lowerKey(@ParametricNullness K key) { return sortedMap().lowerKey(key); } @Override public @Nullable Entry<K, Collection<V>> floorEntry(@ParametricNullness K key) { Entry<K, Collection<V>> entry = sortedMap().floorEntry(key);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Aug 12 15:51:57 UTC 2025 - 48.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ForwardingNavigableMapTest.java
return standardSubMap(fromKey, toKey); } @Override public @Nullable Entry<K, V> lowerEntry(K key) { return standardLowerEntry(key); } @Override public @Nullable K lowerKey(K key) { return standardLowerKey(key); } @Override public @Nullable Entry<K, V> floorEntry(K key) { return standardFloorEntry(key); } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 9.5K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.28.md
- Made Job controller batching of syncJob invocations enabled unconditionally (it was conditional on JobReadyPods feature before).
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Oct 23 20:13:20 UTC 2024 - 456.9K bytes - Viewed (1)