Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for unwrapping (2.81 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/pool/CrawlerPooledObjectFactory.java

    /**
     * A thread-safe factory for creating and managing pooled crawler objects.
     * This class extends {@link BasePooledObjectFactory} and provides
     * methods for creating, wrapping, and destroying crawler components
     * obtained from a {@link CrawlerContainer}.
     *
     * <p>This implementation provides proper resource management for closeable objects
     * and supports destruction listeners.</p>
     *
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/util/IpAddressUtil.java

            }
            return address.getHostAddress();
        }
    
        /**
         * Builds a URL from protocol, InetAddress, port, and path.
         * Properly handles IPv6 addresses by wrapping them in brackets.
         *
         * @param protocol the protocol (e.g., "http", "https")
         * @param address the InetAddress for the host
         * @param port the port number
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 06 08:31:03 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/pool/CrawlerPooledObjectFactoryTest.java

    import org.dbflute.utflute.core.PlainTestCase;
    
    /**
     * Test class for CrawlerPooledObjectFactory.
     * Tests the pooled object factory functionality including object creation,
     * wrapping, destruction, and listener mechanisms.
     */
    public class CrawlerPooledObjectFactoryTest extends PlainTestCase {
    
        private CrawlerPooledObjectFactory<TestComponent> factory;
        private StandardCrawlerContainer container;
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 20 13:07:01 UTC 2025
    - 36.7K bytes
    - Viewed (0)
Back to top