- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 34 for destroyed (0.12 sec)
-
src/test/java/jcifs/util/SecureCredentialStorageTest.java
// The important part is that the storage is marked as destroyed } assertTrue(storage.isDestroyed(), "Storage should be marked as destroyed"); // Operations should fail after destroy assertThrows(IllegalStateException.class, () -> { storage.encryptCredentials(plaintext); }, "Should throw IllegalStateException after destroy");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 12.7K bytes - Viewed (0) -
src/main/java/jcifs/util/SecureCredentialStorage.java
} /** * Check if storage has been destroyed */ private void checkNotDestroyed() { if (destroyed) { throw new IllegalStateException("SecureCredentialStorage has been destroyed"); } } @Override public void destroy() throws DestroyFailedException { if (!destroyed) { boolean failedToDestroy = false;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 12.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ProcessHelper.java
} /** * Internal method to destroy a specific JobProcess. * Handles cleanup of streams, threads, and process termination. * * @param sessionId unique identifier for the process session * @param jobProcess the JobProcess to destroy * @return exit code of the destroyed process, or -1 if the process was null or could not be destroyed */
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/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Fri Jul 18 14:34:06 UTC 2025 - 14.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java
} }); } /** * Cleanup method called when the helper is being destroyed. * Logs cache statistics and processes any remaining statistics * objects in the cache before shutdown. */ @PreDestroy public void destroy() { if (logger.isDebugEnabled()) { logger.debug("cache stats: {}", statsCache.stats()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/Crawler.java
TimeoutManager.getInstance().stop(); if (logger.isDebugEnabled()) { logger.debug("Destroying LaContainer..."); } SingletonLaContainerFactory.destroy(); logger.info("Destroyed LaContainer."); } } /** * Main processing method that coordinates the entire crawling workflow.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 31K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
}, "ThumbnailGenerator"); thumbnailQueueThread.start(); } /** * Cleans up resources when the thumbnail manager is destroyed. * Stops background processing and waits for threads to complete. */ @PreDestroy public void destroy() { generating = false; thumbnailQueueThread.interrupt(); try { thumbnailQueueThread.join(10000);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGenerator.java
*/ public HtmlTagBasedGenerator() { super(); } /** * Destroys this thumbnail generator and releases any resources. * This implementation is empty as no cleanup is required. */ @Override public void destroy() { } /** * Creates a thumbnail generation task for the specified document. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java
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/test/java/org/codelibs/fess/thumbnail/ThumbnailGeneratorTest.java
// Test availability check assertTrue(thumbnailGenerator.isAvailable()); } public void test_destroy() { // Test destroy method - should not throw exception thumbnailGenerator.destroy(); // After destroy, generator should not be available assertFalse(thumbnailGenerator.isAvailable()); } public void test_createTask_withValidParams() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.4K bytes - Viewed (0)