Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for queryFor (0.07 sec)

  1. guava-tests/test/com/google/common/collect/CompactLinkedHashMapFloodingTest.java

      public CompactLinkedHashMapFloodingTest() {
        super(
            ImmutableList.of(Construction.mapFromKeys(CompactLinkedHashMap::create)),
            n -> n * log(n),
            ImmutableList.of(QueryOp.MAP_GET));
      }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/ImmutableMultisetFloodingTest.java

      public ImmutableMultisetFloodingTest() {
        super(
            asList(ConstructionPathway.values()),
            n -> n * log(n),
            ImmutableList.of(
                QueryOp.create(
                    "count",
                    (ms, o) -> {
                      int unused = ms.count(o);
                    },
                    Math::log)));
      }
    
      /** All the ways to create an ImmutableMultiset. */
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/ImmutableBiMapFloodingTest.java

                .collect(toImmutableList()),
            n -> n * log(n),
            ImmutableList.of(
                QueryOp.create("BiMap.get", BiMap::get, Math::log),
                QueryOp.create("BiMap.inverse.get", (bm, o) -> bm.inverse().get(o), Math::log)));
      }
    
      /** All the ways to create an ImmutableBiMap. */
      enum ConstructionPathway {
        COPY_OF_MAP {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/CompactHashMapFloodingTest.java

      public CompactHashMapFloodingTest() {
        super(
            ImmutableList.of(Construction.mapFromKeys(CompactHashMap::create)),
            n -> n * log(n),
            ImmutableList.of(QueryOp.MAP_GET));
      }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 1K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/CompactHashSetFloodingTest.java

      public CompactHashSetFloodingTest() {
        super(
            ImmutableList.of(Construction.setFromElements(CompactHashSet::create)),
            n -> n * log(n),
            ImmutableList.of(QueryOp.SET_CONTAINS));
      }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 1K bytes
    - Viewed (0)
Back to top