- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 33 for thumbnailId (0.08 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
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); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jan 01 12:47:47 GMT 2026 - 10.6K bytes - Click Count (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) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jan 01 12:47:47 GMT 2026 - 16.6K bytes - Click Count (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();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 13.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/ThumbnailQueueDbm.java
"keyword", 0, 0, null, null, false, null, null, null, null, null, false); protected final ColumnInfo _columnThumbnailId = cci("thumbnail_id", "thumbnail_id", null, null, String.class, "thumbnailId", null, false, false, false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false); public ColumnInfo columnCreatedBy() { return _columnCreatedBy;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 27 07:01:25 GMT 2025 - 9.8K bytes - Click Count (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. */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 10.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java
import org.codelibs.fess.util.SystemUtil; import jakarta.servlet.ServletContext; /** * Job class for generating thumbnails for documents in the search engine. * This job executes the ThumbnailGenerator process as a separate JVM process * to create thumbnail images for supported document types. */ public class GenerateThumbnailJob extends ExecJob { /** Logger for this class. */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 11.7K bytes - Click Count (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"; /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jan 01 12:47:47 GMT 2026 - 27.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/PluginHelper.java
INGEST("fess-ingest"), // /** Script plugins */ SCRIPT("fess-script"), // /** Web application plugins */ WEBAPP("fess-webapp"), // /** Thumbnail generator plugins */ THUMBNAIL("fess-thumbnail"), // /** Crawler plugins */ CRAWLER("fess-crawler"), // /** LLM plugins */ LLM("fess-llm"), // /** Unknown/generic JAR files */
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Mar 04 15:19:41 GMT 2026 - 25.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/ca/bs/BsThumbnailQueueCA.java
public void setThumbnailId_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda) { setThumbnailId_Terms("thumbnail_id", opLambda, null); } public void setThumbnailId_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda, OperatorCall<BsThumbnailQueueCA> aggsLambda) { setThumbnailId_Terms("thumbnail_id", opLambda, aggsLambda); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 38.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java
assertEquals("generate-thumbnail image /tmp/test.gif /tmp/thumbnail.png image/gif", expandedCommand); assertFalse("Expanded command should not contain ${mimetype}", expandedCommand.contains("${mimetype}")); } @Test public void test_mimetype_variable_replacement_nullMimeType() { final String testCommand = "generate-thumbnail image ${url} ${outputFile} ${mimetype}";Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 27.8K bytes - Click Count (0)