- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for getIngestFactory (0.21 sec)
-
src/main/java/org/codelibs/fess/crawler/processor/FessResponseProcessor.java
private IngestFactory ingestFactory = null; @PostConstruct public void init() { if (ComponentUtil.hasIngestFactory()) { ingestFactory = ComponentUtil.getIngestFactory(); } } @Override protected AccessResult<?> createAccessResult(final ResponseData responseData, final ResultData resultData) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 2.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ingest/Ingester.java
public int getPriority() { return priority; } public void setPriority(final int priority) { this.priority = priority; } public void register() { ComponentUtil.getIngestFactory().add(this); } // web/file public ResultData process(final ResultData target, final ResponseData responseData) { return target; } // web/file
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java
maxDocumentCacheSize = ComponentUtil.getFessConfig().getIndexerDataMaxDocumentCacheSizeAsInteger(); if (ComponentUtil.hasIngestFactory()) { ingestFactory = ComponentUtil.getIngestFactory(); } } /* (non-Javadoc) * @see org.codelibs.fess.ds.callback.IndexUpdateCallback#store(java.util.Map) */ @Override
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 7.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/indexer/IndexUpdater.java
if (logger.isDebugEnabled()) { logger.debug("Initialize {}", this.getClass().getSimpleName()); } if (ComponentUtil.hasIngestFactory()) { ingestFactory = ComponentUtil.getIngestFactory(); } } @PreDestroy public void destroy() { if (!finishCrawling) { if (logger.isInfoEnabled()) { logger.info("Stopping all crawler.");
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 24.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ComponentUtil.java
return getComponent(SEARCH_HELPER); } public static NotificationHelper getNotificationHelper() { return getComponent(NOTIFICATION_HELPER); } public static IngestFactory getIngestFactory() { return getComponent(INGEST_FACTORY); } public static ScriptEngineFactory getScriptEngineFactory() { return getComponent(SCRIPT_ENGINE_FACTORY); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jun 17 13:35:51 UTC 2024 - 20.2K bytes - Viewed (0)