- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for createTasks (0.04 sec)
-
src/test/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGeneratorTest.java
// Test createTask method (requires FessConfig) generator = new TestThumbnailGenerator(); Map<String, Object> docMap = new HashMap<>(); docMap.put("id", "doc123"); // Since createTask depends on FessConfig, it may not work properly // in unit tests without full container try { generator.createTask("/path/to/thumb.jpg", docMap);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/EmptyGeneratorTest.java
emptyGenerator.setName("empty"); String path = "/path/to/thumbnail.jpg"; // Since createTask requires FessConfig, it may not work properly // We test that the method can be called without throwing exceptions try { emptyGenerator.createTask(path, docMap); } catch (Exception e) { // Expected when FessConfig is not available } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailGenerator.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.2K bytes - Viewed (0)