- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 180 for generation (0.13 sec)
-
docs/pt/docs/project-generation.md
Edmilson Monteiro Rodrigues Neto <******@****.***> 1753091851 +0100
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Jul 21 09:57:31 UTC 2025 - 2.1K bytes - Viewed (0) -
docs/en/docs/project-generation.md
Motov Yurii <******@****.***> 1756631741 +0200
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java
protected int directoryNameLength = 5; /** List of generator names. */ protected List<String> generatorList; /** Map of file paths for thumbnail generation. */ protected Map<String, String> filePathMap = new HashMap<>(); /** The name of this thumbnail generator. */ protected String name; /** Maximum number of redirects to follow. */ protected int maxRedirectCount = 10;
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/test/java/org/codelibs/fess/thumbnail/ThumbnailGeneratorTest.java
} public void test_generate_withNullThumbnailId() { // Test generation with null thumbnail ID assertFalse(thumbnailGenerator.generate(null, tempOutputFile)); } public void test_generate_withEmptyThumbnailId() { // Test generation with empty thumbnail ID assertFalse(thumbnailGenerator.generate("", 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/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/test/java/org/codelibs/fess/exception/ThumbnailGenerationExceptionTest.java
Exception middleCause = new RuntimeException("Processing failed", innerCause); ThumbnailGenerationException exception = new ThumbnailGenerationException("Thumbnail generation error", middleCause); assertEquals("Thumbnail generation error", exception.getMessage()); assertEquals(middleCause, exception.getCause()); assertEquals("Processing failed", exception.getCause().getMessage());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
return null; } /** * Adds a thumbnail generator to the manager. * * @param generator the thumbnail generator to add */ public void add(final ThumbnailGenerator generator) { if (generator.isAvailable()) { if (logger.isDebugEnabled()) { logger.debug("{} is available.", generator.getName()); } generatorList.add(generator);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java
return resultBuf.toString(); } /** * Executes the thumbnail generator process. * Sets up the classpath, JVM options, and command line arguments * to launch the ThumbnailGenerator in a separate process. * * @throws JobProcessingException if the thumbnail generation process fails */ protected void executeThumbnailGenerator() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java
/** List of command strings to execute for thumbnail generation. */ protected List<String> commandList; /** Timeout for command execution in milliseconds. */ protected long commandTimeout = 30 * 1000L;// 30sec /** Timeout for destroying processes in milliseconds. */ protected long commandDestroyTimeout = 5 * 1000L;// 5sec
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
import org.codelibs.fess.util.DocumentUtil; /** * HTML tag-based thumbnail generator that creates thumbnails from image content * referenced in HTML documents. This generator extracts images from HTML content * and processes them to create thumbnail images based on configured dimensions * and format settings. * * <p>The generator validates image MIME types, processes image data through
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.4K bytes - Viewed (0)