Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for nCopies (0.03 sec)

  1. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

          }
          assertThat(segment.table.length()).isEqualTo(i);
          assertThat(countLiveEntries(map, 0)).isEqualTo(liveCount);
          // expansion cleanup is sloppy, with a goal of avoiding unnecessary copies
          assertThat(segment.count).isAtLeast(liveCount);
          assertThat(segment.count).isAtMost(originalCount);
          assertThat(ImmutableMap.copyOf(map)).isEqualTo(originalMap);
        }
      }
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Dec 12 00:25:21 UTC 2025
    - 115.9K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/cache/LocalCacheTest.java

          }
          assertThat(segment.table.length()).isEqualTo(i);
          assertThat(countLiveEntries(map, 0)).isEqualTo(liveCount);
          // expansion cleanup is sloppy, with a goal of avoiding unnecessary copies
          assertThat(segment.count).isAtLeast(liveCount);
          assertThat(segment.count).isAtMost(originalCount);
          assertThat(ImmutableMap.copyOf(map)).isEqualTo(originalMap);
        }
      }
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Dec 12 00:25:21 UTC 2025
    - 117.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/cache/LocalCache.java

         * @param next entry in the same bucket
         */
        abstract <K, V> ReferenceEntry<K, V> newEntry(
            Segment<K, V> segment, K key, int hash, @Nullable ReferenceEntry<K, V> next);
    
        /**
         * Copies an entry, assigning it a new {@code next} entry.
         *
         * @param original the entry to copy. But avoid calling {@code getKey} on it: Instead, use the
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Sep 11 19:35:11 UTC 2025
    - 148.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

            } catch (final Exception e) {
                logger.debug("Failed to check index status: indexName={}", indexName, e);
            }
            return exists;
        }
    
        /**
         * Copies documents from one index to another with optional transformation.
         *
         * @param fromIndex        the source index name
         * @param toIndex          the destination index name
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 122.4K bytes
    - Viewed (1)
Back to top