Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Ordering (0.03 sec)

  1. guava/src/com/google/common/collect/TopKSelector.java

     * Comparators#least(int)} to {@link Stream#collect(java.util.stream.Collector)}. If it is available
     * as an {@link Iterable} or {@link Iterator}, prefer {@link Ordering#leastOf(Iterable, int)}.
     *
     * <p>This uses the same efficient implementation as {@link Ordering#leastOf(Iterable, int)},
     * offering expected O(n + k log k) performance (worst case O(n log k)) for n calls to {@link
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 31 13:15:26 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/hash/BloomFilter.java

          strategyOrdinal = din.readByte();
          numHashFunctions = toUnsignedInt(din.readByte());
          dataLength = din.readInt();
    
          /*
           * We document in BloomFilterStrategies that we must not change the ordering, and we have a
           * test that verifies that we don't do so.
           */
          @SuppressWarnings("EnumOrdinal")
          Strategy strategy = BloomFilterStrategies.values()[strategyOrdinal];
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 31 13:15:26 UTC 2025
    - 26.9K bytes
    - Viewed (0)
Back to top