- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 69 for cleanUp (0.03 sec)
-
src/test/java/org/codelibs/fess/exec/ThumbnailGeneratorTest.java
assertTrue(true); } public void test_process_cleanupMode() throws Exception { // Test process method in cleanup mode ThumbnailGenerator.Options options = new ThumbnailGenerator.Options(); options.numOfThreads = 1; options.cleanup = true; setupMockComponents();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java
this.numOfThreads = numOfThreads; return this; } /** * Enables cleanup operations for this job. * * @return this job instance for method chaining */ public GenerateThumbnailJob cleanup() { cleanup = true; return this; } @Override public String execute() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/indexer/IndexUpdater.java
} } } /** * Cleans up processed access results by updating their status in the data service. * This marks the access results as processed and clears the list. * * @param accessResultList the list of access results to clean up * @return the time taken for the cleanup operation in milliseconds, or -1 if no cleanup was needed */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 32.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DataIndexHelper.java
* monitors their progress, and handles cleanup operations. * * <p>The method:</p> * <ul> * <li>Creates crawler threads for each data configuration</li> * <li>Manages concurrent execution based on thread count limits</li> * <li>Monitors thread completion and handles cleanup</li> * <li>Records execution timing and statistics</li> * </ul> *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/ThumbnailGeneratorTest.java
try { Files.delete(path); } catch (IOException e) { // Ignore cleanup errors } }); } super.tearDown(); } public void test_getName() { // Test getting the generator name assertEquals("TestGenerator", thumbnailGenerator.getName()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.4K bytes - Viewed (0) -
docs/changelogs/upgrading_to_okhttp_4.md
are uncommon and Kotlin callers may have incorrectly assigned the result to `List<String>`. Code Cleanup ------------ IntelliJ and Android Studio offer a **Code Cleanup** feature that will automatically update deprecated APIs with their replacements. Access this feature from the _Search Anywhere_ dialog (double-press shift) or under the _Analyze_ menu.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 16:58:16 UTC 2022 - 10.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ProcessHelper.java
* Initializes the process management system with default timeout values. */ public ProcessHelper() { // Default constructor } /** * Cleanup method called when the bean is destroyed. * Stops all running processes and cleans up resources. */ @PreDestroy public void destroy() { for (final String sessionId : runningProcessMap.keySet()) { if (logger.isInfoEnabled()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/GenerateThumbnailJobTest.java
assertEquals(4, thumbnailJob.numOfThreads); } // Test cleanup setter public void test_cleanup() { assertFalse(thumbnailJob.cleanup); GenerateThumbnailJob result = thumbnailJob.cleanup(); assertSame(thumbnailJob, result); assertTrue(thumbnailJob.cleanup); } // Test execute method with successful execution
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java
* When enabled, only new or modified documents are crawled. */ @Size(max = 10) public String incrementalCrawling; /** * Number of days to keep crawled documents before cleanup. * Set to -1 to disable automatic cleanup. */ @Required @Min(-1) @Max(1000) @ValidateTypeFailure public Integer dayForCleanup; /** * Number of threads to use for crawling operations.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 20.8K bytes - Viewed (0)