Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for buildJdkBacked (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. 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)
  2. 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)
Back to Top