Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for expanfs (0.12 sec)

  1. src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java

         */
        public void setDirectoryNameLength(final int directoryNameLength) {
            this.directoryNameLength = directoryNameLength;
        }
    
        /**
         * Expands a file path using the file path mapping.
         * @param value The original path value.
         * @return The expanded path or the original value if no mapping exists.
         */
        protected String expandPath(final String value) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 13.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ImmutableCollection.java

        ArrayBasedBuilder(int initialCapacity) {
          checkNonnegative(initialCapacity, "initialCapacity");
          this.contents = new @Nullable Object[initialCapacity];
          this.size = 0;
        }
    
        /*
         * Expand the absolute capacity of the builder so it can accept at least the specified number of
         * elements without being resized. Also, if we've already built a collection backed by the
         * current array, create a new array.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 21.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java

         * @param resetDictionaries whether to reset dictionaries during reindexing
         * @param numberOfShards the number of shards for the new index
         * @param autoExpandReplicas the auto expand replicas setting for the new index
         * @return true if the reindex operation started successfully, false otherwise
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

            this.count = newCount; // write-volatile
            return null;
          } finally {
            unlock();
          }
        }
    
        /** Expands the table if possible. */
        @GuardedBy("this")
        void expand() {
          AtomicReferenceArray<E> oldTable = table;
          int oldCapacity = oldTable.length();
          if (oldCapacity >= MAXIMUM_CAPACITY) {
            return;
          }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 90K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/cache/CacheLoadingTest.java

        }.start();
    
        // give the second get a chance to run; it is okay for this to be racy
        // as the end result should be the same either way
        thirdSignal.await();
        Thread.yield();
    
        // Expand!
        CacheTesting.forceExpandSegment(cache, key);
    
        // start another waiting thread
        new Thread() {
          @Override
          public void run() {
            fourthSignal.countDown();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 85.7K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

        assertEquals(originalCount, originalMap.size());
        assertEquals(originalMap, map);
    
        for (int i = 1; i <= originalCount * 2; i *= 2) {
          if (i > 1) {
            segment.expand();
          }
          assertEquals(i, segment.table.length());
          assertEquals(originalCount, countLiveEntries(map, 0));
          assertEquals(originalCount, segment.count);
          assertEquals(originalMap, map);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 110.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

         * @param index              the index configuration name
         * @param indexName          the actual index name to create
         * @param numberOfShards     the number of primary shards
         * @param autoExpandReplicas the auto expand replicas setting
         * @param uploadConfig       whether to upload configuration files
         * @return true if the index was created successfully, false otherwise
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.34.md

    - Do not expand PVCs annotated with node-expand-not-required ([#131907](https://github.com/kubernetes/kubernetes/pull/131907), [@gnufied](https://github.com/gnufied)) [SIG API Machinery, Etcd, Node, Storage and Testing]
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 27 10:36:10 UTC 2025
    - 292.8K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.33.md

    - Kubernetes is now built using Go 1.24.4 ([#132226](https://github.com/kubernetes/kubernetes/pull/132226), [@cpanato](https://github.com/cpanato)) [SIG Release and Testing]
    
    ### Bug or Regression
    
    - Do not expand volume on the node, if controller expansion is finished ([#131987](https://github.com/kubernetes/kubernetes/pull/131987), [@gnufied](https://github.com/gnufied)) [SIG Storage]
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 19:46:23 UTC 2025
    - 294.3K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.32.md

    - Kubernetes is now built using Go 1.23.9 ([#131936](https://github.com/kubernetes/kubernetes/pull/131936), [@cpanato](https://github.com/cpanato)) [SIG Release and Testing]
    
    ### Bug or Regression
    
    - Do not expand volume on the node, if controller expansion is finished ([#132010](https://github.com/kubernetes/kubernetes/pull/132010), [@gnufied](https://github.com/gnufied)) [SIG Storage]
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 14:49:49 UTC 2025
    - 412.3K bytes
    - Viewed (0)
Back to top