- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for CommandGenerator (0.05 sec)
-
src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java
* Uses external tools through command execution to generate thumbnail images from documents. */ public class CommandGenerator extends BaseThumbnailGenerator { private static final Logger logger = LogManager.getLogger(CommandGenerator.class); /** List of command strings to execute for thumbnail generation. */ protected List<String> commandList;
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/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java
} } } // Test concurrent access patterns public void test_concurrent_operations() throws Exception { final CommandGenerator generator1 = new CommandGenerator(); final CommandGenerator generator2 = new CommandGenerator(); generator1.setCommandList(Collections.singletonList("echo test1")); generator2.setCommandList(Collections.singletonList("echo test2"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 16.4K bytes - Viewed (0) -
src/main/resources/fess_thumbnail.xml
<arg>"mimetype"</arg> <arg>"text/html"</arg> </postConstruct> <postConstruct name="register"></postConstruct> </component> <component name="msofficeThumbnailGenerator" class="org.codelibs.fess.thumbnail.impl.CommandGenerator"> <property name="name">"msofficeThumbnailGenerator"</property> <property name="commandList"> ["${path}/generate-thumbnail", "msoffice", "${url}", "${outputFile}"] </property>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Fri Oct 11 21:34:52 UTC 2019 - 5.4K bytes - Viewed (0)