- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 468 for result1 (0.07 seconds)
-
src/main/java/org/codelibs/fess/ldap/LdapManager.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Jan 02 08:06:20 GMT 2026 - 85.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java
* @param partialResults whether the results are partial due to timeout or other constraints * @param facetResponse the facet information for the search results * @param start the starting position for pagination * @param pageSize the size of the current page * @param offset the offset applied to the results * @return QueryResponseList containing the search results and metadata */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Dec 25 02:13:14 GMT 2025 - 28K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/RelevanceEvaluationResult.java
} /** * Returns the list of relevant indexes (1-based) from search results. * * @return the relevant indexes */ public List<Integer> getRelevantIndexes() { return relevantIndexes; } /** * Returns whether relevant results were found. * * @return true if relevant results exist */ public boolean isHasRelevantResults() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 01 08:11:18 GMT 2026 - 3.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/RelatedContentHelperTest.java
String[] results = relatedContentHelper.getRelatedContents("java"); assertEquals(1, results.length); assertEquals("Java Programming", results[0]); results = relatedContentHelper.getRelatedContents("JAVA"); assertEquals(1, results.length); assertEquals("Java Programming", results[0]); results = relatedContentHelper.getRelatedContents("Java");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 14.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java
logger.debug("[RAG:EVAL] Result evaluation completed. hasRelevant={}, relevantDocIds={}, elapsedTime={}ms", result.isHasRelevantResults(), result.getRelevantDocIds(), System.currentTimeMillis() - startTime); } return result; } catch (final Exception e) { logger.warn("[RAG:EVAL] Failed to evaluate results, using all results. error={}, elapsedTime={}ms", e.getMessage(),
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 72K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/QueryResponseList.java
/** The search query string that was used to generate these results. */ protected String searchQuery; /** The total execution time for the search request in milliseconds. */ protected long execTime; /** The facet response containing aggregated search facets and their counts. */ protected FacetResponse facetResponse; /** Flag indicating whether the search results are partial (not complete). */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 14.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java
protected final long queryTime; /** Flag indicating whether the search results are partial due to timeout or other constraints. */ protected final boolean partialResults; /** The facet response containing aggregated facet information for the search results. */ protected final FacetResponse facetResponse; /** * Constructs a new SearchResult with the specified parameters.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 8.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/indexer/IndexUpdater.java
/** * Processes a list of access results and converts them into indexable documents. * Each access result is transformed into a document map and added to the document list. * * @param docList the document list to add processed documents to * @param accessResultList the list to track processed access results for cleanup * @param arList the list of access results to process */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 32.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/entity/SearchRenderData.java
import org.codelibs.fess.util.FacetResponse; /** * Data container for search results rendering. * * This class holds all the data needed to render search results in the UI, * including the actual search results, pagination information, facet data, * execution timing, and highlighting parameters. */ public class SearchRenderData { /** List of search result documents. */ protected List<Map<String, Object>> documentItems;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 12.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/SystemUtilTest.java
fail("Thread interrupted"); } } // Verify all results are consistent for (String result : results) { assertEquals("thread-test", result); } } finally { // Restore original value if (originalValue != null) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 17.1K bytes - Click Count (0)