- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for getThumbnailPathOption (0.09 seconds)
-
src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java
} catch (FessSystemException e) { assertTrue(e.getMessage().contains("Not found")); } } // Test getThumbnailPathOption @Test public void test_getThumbnailPathOption() { String option = thumbnailManager.getThumbnailPathOption(); assertNotNull(option); assertTrue(option.startsWith("-D" + Constants.FESS_THUMBNAIL_PATH + "="));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 20.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/CrawlJob.java
} else { ownTmpDir = null; } } cmdList.add(ComponentUtil.getThumbnailManager().getThumbnailPathOption()); if (!jvmOptions.isEmpty()) { jvmOptions.stream().filter(StringUtil::isNotBlank).forEach(cmdList::add); } cmdList.add(Crawler.class.getCanonicalName());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 19.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
} /** * Gets the system property option string for thumbnail path configuration. * * @return the property option string for JVM arguments */ public String getThumbnailPathOption() { return "-D" + Constants.FESS_THUMBNAIL_PATH + "=" + baseDir.getAbsolutePath(); } /** * Stores thumbnail generation tasks to the queue for processing. *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)