- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for buildJdkBacked (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
guava-tests/test/com/google/common/collect/ImmutableBiMapFloodingTest.java
} }, FORCE_JDK { @Override public ImmutableBiMap<Object, Object> create(List<Entry<?, ?>> entries) { return ImmutableBiMap.builder().putAll(entries).buildJdkBacked(); } }; @CanIgnoreReturnValue public abstract ImmutableBiMap<Object, Object> create(List<Entry<?, ?>> entries); }Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Jul 28 19:11:14 GMT 2025 - 4.5K 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 Dec 26 12:43:10 GMT 2025 - Last Modified: Tue Sep 23 17:50:58 GMT 2025 - 22.7K 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 Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 24.8K bytes - Click Count (0)