- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 399 for processed (0.04 sec)
-
src/main/java/org/codelibs/fess/crawler/processor/FessResponseProcessor.java
* @param resultData the result data to be processed * @return the access result containing the processed data */ @Override protected AccessResult<?> createAccessResult(final ResponseData responseData, final ResultData resultData) { return super.createAccessResult(responseData, ingest(responseData, resultData)); } /** * Processes the result data through all available ingesters.
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/test/java/org/codelibs/fess/job/impl/ScriptExecutorTest.java
Object result1 = scriptExecutor.execute("testengine", "script1"); assertEquals("processed: script1", result1); Object result2 = scriptExecutor.execute("TESTENGINE", "script2"); assertEquals("processed: script2", result2); Object result3 = scriptExecutor.execute("TestEngine", "script3"); assertEquals("processed: script3", result3); } public void test_execute_verifyParamsNotModifiable() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/WildcardQueryCommandTest.java
assertNotNull(queryBuilder); assertTrue(queryBuilder instanceof WildcardQueryBuilder); // Query was processed successfully // Query was processed successfully WildcardQueryBuilder wqb = (WildcardQueryBuilder) queryBuilder; assertEquals("title", wqb.fieldName()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ingest/Ingester.java
} /** * Processes a document map for datastore operations. * Default implementation delegates to the basic process method. * * @param target the document data to process * @param params the data store parameters * @return the processed document data */ public Map<String, Object> process(final Map<String, Object> target, final DataStoreParams params) {
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/main/java/org/codelibs/fess/query/QueryProcessor.java
* @param query the Lucene query to be processed * @param boost the boost factor to apply to the query * @return the processed OpenSearch QueryBuilder */ public QueryBuilder execute(final QueryContext context, final Query query, final float boost) { return filterChain.execute(context, query, boost); } /** * Adds a query command to the processor. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/indexer/IndexUpdater.java
* Continuously processes crawled documents from the data service, transforms them, * and updates the search index until crawling is finished and all documents are processed. * * <p>The method performs the following operations in a loop: * <ul> * <li>Retrieves access results from the data service</li> * <li>Processes each document through transformers</li>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 32.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/PhraseQueryCommandTest.java
QueryBuilder result = queryCommand.convertPhraseQuery(context, phraseQuery, 1.0f); assertNotNull(result); assertTrue(result instanceof DefaultQueryBuilder); // Verify query was processed // Note: Field logging behavior depends on implementation } public void test_convertPhraseQuery_singleTerm_defaultField_dismax() { // Test with single term in default field with boost > 1
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/PrefixQueryCommandTest.java
ComponentUtil.register(newQueryProcessor, "queryProcessor"); // Register the command with the new processor PrefixQueryCommand newCommand = new PrefixQueryCommand(); newCommand.register(); // Verify that the command can process PrefixQuery by executing it PrefixQuery query = new PrefixQuery(new Term("field", "test"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java
} } /** * Processes a document through the ingest pipeline. * Applies all available ingesters to transform the document data. * * @param paramMap the data store parameters * @param dataMap the document data to process * @return the processed document data */
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/script/AbstractScriptEngineTest.java
assertEquals("processed: template with params", result); } // Test evaluate with empty parameters public void test_evaluate_emptyParams() { Map<String, Object> emptyParams = new HashMap<>(); Object result = testScriptEngine.evaluate("template", emptyParams); assertEquals("processed: template with params", result); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.5K bytes - Viewed (0)