Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for SingletonTestComponent (0.11 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/pool/CrawlerPooledObjectFactoryTest.java

         */
        public void test_create_singletonComponent() throws Exception {
            CrawlerPooledObjectFactory<SingletonTestComponent> singletonFactory = createFactory("singletonComponent");
    
            SingletonTestComponent component1 = singletonFactory.create();
            SingletonTestComponent component2 = singletonFactory.create();
    
            assertNotNull(component1);
            assertNotNull(component2);
    
    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