- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 199 for ingest (0.03 sec)
-
src/main/java/org/codelibs/fess/crawler/processor/FessResponseProcessor.java
import org.codelibs.fess.ingest.IngestFactory; import org.codelibs.fess.ingest.Ingester; import org.codelibs.fess.util.ComponentUtil; import jakarta.annotation.PostConstruct; /** * Response processor implementation for the Fess search engine. * This processor extends DefaultResponseProcessor to provide additional * processing capabilities through the ingest framework, allowing for
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ingest/Ingester.java
} /** * Sets the priority of this ingester. * Lower numbers indicate higher priority. * * @param priority the priority value to set */ public void setPriority(final int priority) { this.priority = priority; } /** * Registers this ingester with the ingest factory. * This makes the ingester available for processing documents. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java
// Execute Map<String, Object> result = indexUpdateCallback.ingest(paramMap, dataMap); // Verify ingester was called assertEquals(1, ingester.processCalled); assertEquals("processed", result.get("status")); } public void test_ingest_withException() { // Setup ingester that throws exception TestIngester failingIngester = new TestIngester() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 24.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java
return dataMap; } Map<String, Object> target = dataMap; for (final Ingester ingester : ingestFactory.getIngesters()) { try { target = ingester.process(target, paramMap); } catch (final Exception e) { logger.warn("Failed to process Ingest[{}]", ingester.getClass().getSimpleName(), e); } } return target; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/PluginHelperTest.java
Artifact themeArtifact = new Artifact("fess-theme-test", "1.0.0"); assertEquals(ArtifactType.THEME, themeArtifact.getType()); Artifact ingestArtifact = new Artifact("fess-ingest-test", "1.0.0"); assertEquals(ArtifactType.INGEST, ingestArtifact.getType()); Artifact scriptArtifact = new Artifact("fess-script-test", "1.0.0"); assertEquals(ArtifactType.SCRIPT, scriptArtifact.getType());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 22.1K bytes - Viewed (0) -
src/test/resources/plugin/repo3/index.html
<a href="fess-ingest-logger/" title="fess-ingest-logger/">fess-ingest-logger/</a> - - <a href="fess-ingest-ndjson/" title="fess-ingest-ndjson/">fess-ingest-ndjson/</a> - -
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Jun 17 13:30:41 UTC 2024 - 6.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java
final Map<String, Object> result = indexUpdater.ingest(accessResult, doc); assertNotNull(result); // Result should be the same as input doc when ingester is null or doesn't modify assertSame(doc, result); } // Test ingest with exception in ingester public void test_ingest_withException() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 33K bytes - Viewed (0) -
README.md
## Theme - [Simple](https://github.com/codelibs/fess-theme-simple) - [Classic](https://github.com/codelibs/fess-theme-classic) ## Ingest - [Logger](https://github.com/codelibs/fess-ingest-logger) - [NDJSON](https://github.com/codelibs/fess-ingest-ndjson) ## Script - [Groovy](https://github.com/codelibs/fess-script-groovy) - [OGNL](https://github.com/codelibs/fess-script-ognl)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 06:34:32 UTC 2025 - 7.2K bytes - Viewed (2) -
src/test/java/org/codelibs/fess/ingest/IngestFactoryTest.java
*/ package org.codelibs.fess.ingest; import org.codelibs.fess.unit.UnitFessTestCase; public class IngestFactoryTest extends UnitFessTestCase { 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();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ingest/IngestFactory.java
if (logger.isDebugEnabled()) { logger.debug("Loaded {}", ingester.getClass().getSimpleName()); } final Ingester[] newIngesters = Arrays.copyOf(ingesters, ingesters.length + 1); newIngesters[ingesters.length] = ingester; Arrays.sort(newIngesters, (o1, o2) -> o1.priority - o2.priority); ingesters = newIngesters; } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0)