- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 63 for thumbnail_ (0.06 sec)
-
src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java
/** * Command-line options for the thumbnail generator. */ protected static class Options { /** * Session ID for filtering thumbnail generation. */ @Option(name = "-s", aliases = "--sessionId", metaVar = "sessionId", usage = "Session ID") protected String sessionId; /** * Name identifier for the thumbnail generation task. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java
} /** * Generates a thumbnail for the given ID and saves it to the output file. * @param thumbnailId The ID of the thumbnail to generate. * @param outputFile The file where the thumbnail will be saved. * @return True if thumbnail generation was successful, false otherwise. */ @Override public boolean generate(final String thumbnailId, final File outputFile) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Fri Jul 18 14:34:06 UTC 2025 - 14.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGenerator.java
* @param outputFile the file where the generated thumbnail will be saved * @return true if the thumbnail was successfully generated, false otherwise */ @Override public boolean generate(final String thumbnailId, final File outputFile) { if (logger.isDebugEnabled()) { logger.debug("Generate Thumbnail: {}", thumbnailId); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/EmptyGenerator.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.thumbnail.impl; import java.io.File; /** * Empty implementation of thumbnail generator that does not generate any thumbnails. * This class is used as a no-op thumbnail generator when thumbnail generation is disabled * or when no specific thumbnail generator is configured. */ public class EmptyGenerator extends BaseThumbnailGenerator {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailGenerator.java
String getName(); /** * Generates a thumbnail for the given thumbnail ID and saves it to the output file. * * @param thumbnailId the unique identifier for the thumbnail * @param outputFile the file where the generated thumbnail will be saved * @return true if the thumbnail was successfully generated, false otherwise */ boolean generate(String thumbnailId, File outputFile); /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/ThumbnailGeneratorTest.java
// Test successful thumbnail generation String thumbnailId = "test-thumbnail-001"; assertTrue(thumbnailGenerator.generate(thumbnailId, tempOutputFile)); assertTrue(tempOutputFile.exists()); } public void test_generate_withNullThumbnailId() { // Test generation with null thumbnail ID assertFalse(thumbnailGenerator.generate(null, tempOutputFile));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java
taskList.clear(); } }; manager.init(); assertEquals(new File(varDir, "thumbnails").getAbsolutePath(), manager.baseDir.getAbsolutePath()); manager.destroy(); } finally { System.clearProperty(Constants.FESS_VAR_PATH); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/PurgeThumbnailJob.java
* Creates a new instance of the thumbnail purging job with default expiry time (30 days). */ public PurgeThumbnailJob() { // Default constructor } /** Expiration time for thumbnails in milliseconds (default: 30 days) */ private long expiry = 30 * 24 * 60 * 60 * 1000L; /** * Executes the thumbnail purging job.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java
} return value; } /** * Updates the thumbnail field in the search index. * @param thumbnailId The thumbnail ID. * @param value The thumbnail value to update. */ protected void updateThumbnailField(final String thumbnailId, final String value) { // TODO bulk final FessConfig fessConfig = ComponentUtil.getFessConfig();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 13.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
/** * Manager class for handling thumbnail generation and management. * Provides functionality to generate, cache, and serve thumbnail images for documents. */ public class ThumbnailManager { private static final String NOIMAGE_FILE_SUFFIX = ".txt"; /** * Default directory name for thumbnails. */ protected static final String THUMBNAILS_DIR_NAME = "thumbnails"; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.9K bytes - Viewed (0)