- Sort Score
- Num 10 results
- Language All
Results 1 - 9 of 9 for IngestFactory (0.06 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/ingest/IngestFactory.java
*/ public class IngestFactory { /** Logger instance for this class */ private static final Logger logger = LogManager.getLogger(IngestFactory.class); /** Array of registered ingesters, sorted by priority */ private Ingester[] ingesters = {}; /** * Default constructor. */ public IngestFactory() { // Default constructor } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 2.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/ingest/IngestFactoryTest.java
import org.codelibs.fess.unit.UnitFessTestCase; import org.junit.jupiter.api.Test; public class IngestFactoryTest extends UnitFessTestCase { @Test public void test_add_1() { IngestFactory factory = new IngestFactory(); factory.add(new TestIngester(1)); factory.add(new TestIngester(2)); factory.add(new TestIngester(3)); Ingester[] ingesters = factory.getIngesters();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 1.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java
} @Test public void test_ingest_withFactory() { // Setup ingest factory TestIngester ingester = new TestIngester(); ingestFactory.ingesters.add(ingester); ComponentUtil.register(ingestFactory, "ingestFactory"); // Reinitialize to pick up factory indexUpdateCallback.init(); DataStoreParams paramMap = new DataStoreParams();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 24.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/crawler/processor/FessResponseProcessor.java
/** Factory for creating and managing ingesters */ private IngestFactory ingestFactory = null; /** * Initializes the processor after dependency injection. * Sets up the ingest factory if available in the component system. */ @PostConstruct public void init() { if (ComponentUtil.hasIngestFactory()) { ingestFactory = ComponentUtil.getIngestFactory(); } } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 3.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java
@Test public void test_init() { indexUpdater.init(); assertNotNull(indexUpdater); } // Test initialization with IngestFactory @Test public void test_init_withIngestFactory() { ComponentUtil.register(ingestFactory, "ingestFactory"); indexUpdater.init(); assertNotNull(indexUpdater); } // Test destroy when crawling is not finished @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 33.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java
/** Maximum number of documents to cache before indexing */ protected int maxDocumentCacheSize; /** Factory for creating ingesters to process documents */ private IngestFactory ingestFactory = null; /** * Initializes the callback implementation after dependency injection. * Sets up configuration values and initializes the ingest factory if available. */ @PostConstructCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 10.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/ingest/Ingester.java
getIngestFactory().add(this); } /** * Gets the ingest factory instance for managing ingesters. * * @return the ingest factory instance */ protected IngestFactory getIngestFactory() { return ComponentUtil.getIngestFactory(); } /** * Processes a result data object for web/file crawling. * Default implementation returns the target unchanged. *
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 4.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/ComponentUtilTest.java
} @Test public void test_hasIngestFactory() { assertFalse(ComponentUtil.hasIngestFactory()); ComponentUtil.register(new Object(), "ingestFactory"); assertTrue(ComponentUtil.hasIngestFactory()); } @Test public void test_getJobExecutor_withSuffix() { try { ComponentUtil.getJobExecutor("testJobExecutor");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 7.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/ComponentUtil.java
import org.codelibs.fess.helper.UserInfoHelper; import org.codelibs.fess.helper.ViewHelper; import org.codelibs.fess.helper.VirtualHostHelper; import org.codelibs.fess.indexer.IndexUpdater; import org.codelibs.fess.ingest.IngestFactory; import org.codelibs.fess.job.JobExecutor; import org.codelibs.fess.ldap.LdapManager; import org.codelibs.fess.mylasta.direction.FessConfig; import org.codelibs.fess.mylasta.direction.FessProp;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 30.9K bytes - Click Count (0)