- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getThumbnailPathOption (0.1 sec)
-
src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java
} catch (FessSystemException e) { assertTrue(e.getMessage().contains("Not found")); } } // Test getThumbnailPathOption public void test_getThumbnailPathOption() { String option = thumbnailManager.getThumbnailPathOption(); assertNotNull(option); assertTrue(option.startsWith("-D" + Constants.FESS_THUMBNAIL_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/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());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.6K bytes - Viewed (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. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.9K bytes - Viewed (0)