- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for buildJdkBacked (0.07 seconds)
-
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableMap.java
"orderEntriesByValue + buildKeepingLast not supported under GWT"); } return build(/* throwIfDuplicateKeys= */ false); } ImmutableMap<K, V> buildJdkBacked() { return build(); } } private static <K, V> ImmutableMap<K, V> fromEntryList( Collection<? extends Entry<? extends K, ? extends V>> entries) {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Mar 17 15:51:42 GMT 2026 - 17.2K bytes - Click Count (0) -
guava/src/com/google/common/collect/ImmutableBiMap.java
throw new UnsupportedOperationException("Not supported for bimaps"); } @Override @VisibleForTesting ImmutableBiMap<K, V> buildJdkBacked() { checkState( valueComparator == null, "buildJdkBacked is for tests only, doesn't support orderEntriesByValue"); switch (size) { case 0: return of(); case 1:
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Sep 23 17:50:58 GMT 2025 - 22.7K bytes - Click Count (0) -
guava/src/com/google/common/collect/ImmutableMultiset.java
* Builder}. */ @Override public ImmutableMultiset<E> build() { return copyOf(contents); } @VisibleForTesting ImmutableMultiset<E> buildJdkBacked() { if (contents.isEmpty()) { return of(); } return JdkBackedImmutableMultiset.create(contents.entrySet()); } }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Sep 22 21:07:18 GMT 2025 - 20.6K bytes - Click Count (0) -
guava-tests/test/com/google/common/collect/ImmutableMultisetTest.java
new TestStringMultisetGenerator() { @Override protected Multiset<String> create(String[] elements) { return ImmutableMultiset.<String>builder().add(elements).buildJdkBacked(); } }) .named("ImmutableMultiset [JDK backed]") .withFeatures( CollectionSize.ANY,
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 24.9K bytes - Click Count (0) -
guava/src/com/google/common/collect/ImmutableMap.java
return build(false); } @VisibleForTesting // only for testing JDK backed implementation ImmutableMap<K, V> buildJdkBacked() { checkState( valueComparator == null, "buildJdkBacked is only for testing; can't use valueComparator"); switch (size) { case 0: return of(); case 1:
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Mar 08 16:16:42 GMT 2026 - 44.7K bytes - Click Count (0)