- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 40 for destroyed (0.42 sec)
-
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: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 12.7K bytes - Viewed (0) -
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: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 12.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/pool/CrawlerPooledObjectFactory.java
public PooledObject<T> wrap(final T obj) { return new DefaultPooledObject<>(obj); } /** * Destroys a pooled object and notifies the destroy listener if set. * If the object implements {@link AutoCloseable}, it will be closed automatically. * * @param p The pooled object to destroy * @throws Exception if destruction fails */ @Override
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlerLogHelper.java
if (logger.isDebugEnabled()) { logger.debug("container was destroyed."); } return; } catch (final Exception e) { if (!ComponentUtil.available()) { if (logger.isDebugEnabled()) { logger.debug("container was destroyed."); } return; }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 8.3K 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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 06:54:47 UTC 2025 - 10.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/container/CrawlerContainer.java
*/ boolean available(); /** * Cleans up resources and performs any necessary finalization tasks * before the object is destroyed. This method should be called to * ensure that all resources are properly released. */ void destroy(); /** * Initializes the CrawlerContainer by setting the system propertyRegistered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 04 08:02:36 UTC 2025 - 16K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/pool/CrawlerPooledObjectFactoryTest.java
private final int id; private boolean destroyed = false; public TestComponent() { this.id = instanceCounter.incrementAndGet(); } public int getId() { return id; } public boolean isDestroyed() { return destroyed; } public void destroy() { this.destroyed = true; }Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 20 13:07:01 UTC 2025 - 36.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/container/StandardCrawlerContainer.java
protected T instance; /** * The destroyer function to be called when the component is destroyed. */ protected Consumer<T> destroyer; /** * Creates a new ComponentHolder with the specified instance and destroyer. * @param instance the component instance to hold * @param destroyer the destroyer function for cleanup (can be null) */Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 14.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/filter/EncodingFilter.java
} return paramMap; } /** * Cleans up resources when the filter is destroyed. * Currently performs no cleanup operations. */ @Override public void destroy() { // nothing }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.5K bytes - Viewed (0)