- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for Creation (0.05 sec)
-
src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java
assertFalse(outputFile.exists()); generator.setCommandList(Collections.singletonList("echo test")); // This should handle parent directory creation generator.generate("test_id", outputFile); assertTrue(true); } catch (final Exception e) { assertTrue(true); } finally { if (outputFile.exists()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 16.4K bytes - Viewed (0) -
README.md
``` ### Collection Utilities with Java 21 Support ```java import org.codelibs.core.collection.CollectionsUtil; import java.util.SequencedCollection; // Enhanced collection creation List<String> list = CollectionsUtil.newArrayList(); Map<String, Object> map = CollectionsUtil.newLinkedHashMap(); Set<String> caseInsensitiveSet = new CaseInsensitiveSet<>(); // Java 21 Sequenced Collections support
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sun Aug 31 02:56:02 UTC 2025 - 12.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
return searchResult.build(searchRequestBuilder, execTime, OptionalEntity.ofNullable(searchResponse, () -> {})); } /** * Performs a scroll search with default entity creation. * * @param index the index name * @param condition the search condition * @param cursor the cursor function to process each hit * @return the number of documents processed
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 121.9K bytes - Viewed (0)