- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 19 for destroyed (0.06 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/pool/CrawlerPooledObjectFactory.java
*/ @Override public PooledObject<T> wrap(final T obj) { return new DefaultPooledObject<>(obj); } /** * Destroys a pooled object and notifies the destroy listener if set. * @param p The pooled object to destroy * @throws Exception if destruction fails */ @Override public void destroyObject(final PooledObject<T> p) throws Exception {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.9K 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: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.2K 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 property
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 2.6K 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: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/EmptyGenerator.java
public boolean generate(final String thumbnailId, final File outputFile) { return false; } /** * Destroys this generator and releases any resources. * This implementation does nothing as no resources are held. */ @Override public void destroy() { // nothing }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/filter/WebApiFilter.java
*/ @Override public void init(final FilterConfig filterConfig) throws ServletException { // nothing } /** * Destroys the web API filter and cleans up resources. */ @Override public void destroy() { // nothing } /** * Filters HTTP requests and processes them through appropriate web API managers. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailGenerator.java
/** * Checks if this thumbnail generator is available for use. * @return True if available, false otherwise. */ boolean isAvailable(); /** * Destroys this thumbnail generator and releases any resources. */ void destroy(); /** * Creates a thumbnail generation task. * @param path The path to the source document. * @param docMap The document map containing metadata.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/EmptyGeneratorTest.java
// Initialize without container emptyGenerator = new EmptyGenerator(); // Test that destroy method can be called without error emptyGenerator.destroy(); // Call destroy multiple times to ensure it's safe emptyGenerator.destroy(); emptyGenerator.destroy(); } public void test_isAvailable() { // Initialize without container
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/test/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGeneratorTest.java
assertTrue(generator.isGenerateCalled()); } public void test_destroy() { // Test destroy method is called correctly generator = new TestThumbnailGenerator(); assertFalse(generator.isDestroyCalled()); generator.destroy(); assertTrue(generator.isDestroyCalled()); } public void test_expandPath() { // Test expandPath method
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.1K bytes - Viewed (0) -
fess-crawler-lasta/src/main/java/org/codelibs/fess/crawler/container/LastaCrawlerContainer.java
} @Override public boolean available() { return SingletonLaContainerFactory.hasContainer(); } @Override public void destroy() { SingletonLaContainerFactory.destroy(); }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 1.4K bytes - Viewed (0)