- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for pollFirstEntry (0.13 sec)
-
android/guava-tests/test/com/google/common/collect/MapsTest.java
assertThat(map.descendingKeySet()).containsExactly("two", "three", "one").inOrder(); assertEquals(mapEntry("one", 3), map.pollFirstEntry()); assertEquals(mapEntry("two", 3), map.pollLastEntry()); assertEquals(1, map.size()); } @GwtIncompatible // NavigableMap public void testAsMapNavigableReadsThrough() {
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Dec 11 22:56:33 UTC 2025 - 62.7K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Synchronized.java
} return navigableKeySet; } } @Override public Map.@Nullable Entry<K, V> pollFirstEntry() { synchronized (mutex) { return nullableSynchronizedEntry(delegate().pollFirstEntry(), mutex); } } @Override public Map.@Nullable Entry<K, V> pollLastEntry() { synchronized (mutex) {Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Fri Aug 08 15:11:10 UTC 2025 - 53K bytes - Viewed (0) -
guava/src/com/google/common/collect/Synchronized.java
} return navigableKeySet; } } @Override public Map.@Nullable Entry<K, V> pollFirstEntry() { synchronized (mutex) { return nullableSynchronizedEntry(delegate().pollFirstEntry(), mutex); } } @Override public Map.@Nullable Entry<K, V> pollLastEntry() { synchronized (mutex) {Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Fri Aug 08 15:11:10 UTC 2025 - 56.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/MapsTest.java
assertThat(map.descendingKeySet()).containsExactly("two", "three", "one").inOrder(); assertEquals(mapEntry("one", 3), map.pollFirstEntry()); assertEquals(mapEntry("two", 3), map.pollLastEntry()); assertEquals(1, map.size()); } @GwtIncompatible // NavigableMap public void testAsMapNavigableReadsThrough() {
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Dec 11 22:56:33 UTC 2025 - 65K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableSortedMap.java
* @deprecated Unsupported operation. */ @CanIgnoreReturnValue @Deprecated @Override @DoNotCall("Always throws UnsupportedOperationException") public final @Nullable Entry<K, V> pollFirstEntry() { throw new UnsupportedOperationException(); } /** * Guaranteed to throw an exception and leave the map unmodified. * * @throws UnsupportedOperationException alwaysRegistered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Sep 22 21:07:18 UTC 2025 - 52.9K bytes - Viewed (0)