Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setSplitSize (0.4 sec)

  1. src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java

        }
    
        // Test getImageFilename with custom settings
        public void test_getImageFilename_customSettings() {
            thumbnailManager.setImageExtention("jpg");
            thumbnailManager.setSplitSize(5);
            thumbnailManager.setSplitHashSize(20);
    
            String docid = "1234567890abcdef";
            String filename = thumbnailManager.getImageFilename(docid);
            assertNotNull(filename);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 18.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

            this.imageExtention = imageExtention;
        }
    
        /**
         * Sets the split size for directory organization.
         *
         * @param splitSize the split size to set
         */
        public void setSplitSize(final int splitSize) {
            this.splitSize = splitSize;
        }
    
        /**
         * Sets the maximum size of the thumbnail task queue.
         *
         * @param thumbnailTaskQueueSize the queue size to set
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.9K bytes
    - Viewed (0)
Back to top