- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for searchResults (0.07 sec)
-
src/test/java/org/codelibs/fess/mylasta/action/FessHtmlPathTest.java
assertEquals("/searchNoResult.jsp", FessHtmlPath.path_SearchNoResultJsp.getRoutingPath()); assertEquals("/searchOptions.jsp", FessHtmlPath.path_SearchOptionsJsp.getRoutingPath()); assertEquals("/searchResults.jsp", FessHtmlPath.path_SearchResultsJsp.getRoutingPath()); assertEquals("/advance.jsp", FessHtmlPath.path_AdvanceJsp.getRoutingPath()); } public void test_commonPaths() throws Exception {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java
final int pageSize = params.getPageSize(); final SearchResult searchResult = searcher.search(query, params, userBean); return createResponseList(searchResult.getDocumentList(), searchResult.getAllRecordCount(), searchResult.getAllRecordCountRelation(), searchResult.getQueryTime(), searchResult.isPartialResults(), searchResult.getFacetResponse(), params.getStartPosition(), pageSize, 0); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java
return processResponse(searchResponseOpt); } /** * Processes the OpenSearch response and converts it to a SearchResult. * * @param searchResponseOpt the optional search response from OpenSearch * @return the processed search result */ protected SearchResult processResponse(final OptionalEntity<SearchResponse> searchResponseOpt) { final FessConfig fessConfig = ComponentUtil.getFessConfig();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 12.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/rank/fusion/SearchResultTest.java
SearchResult result = SearchResult.create().facetResponse(facetResponse).allRecordCount(50L).build(); assertEquals(facetResponse, result.getFacetResponse()); assertEquals(50L, result.getAllRecordCount()); } public void test_builder_defaultValues() { // Test builder default values SearchResult result = SearchResult.create().build();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/rank/fusion/RankFusionSearcherTest.java
return new SearchResult(new ArrayList<>(), 0L, "eq", 0L, false, new FacetResponse(InternalAggregations.EMPTY)); } } private static class SimpleSearcher extends RankFusionSearcher { @Override protected SearchResult search(String query, SearchRequestParams params, OptionalThing<FessUserBean> userBean) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ldap/LdapManager.java
} final NamingEnumeration<SearchResult> results = context.search(bindDn, "(name=" + escapeLDAPSearchFilter(groupName) + ")", searchControls); if (results.hasMore()) { final SearchResult searchResult = results.next(); final Attribute attribute = searchResult.getAttributes().get("sAMAccountName"); if (logger.isDebugEnabled()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 82K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
* @param condition the search condition * @param searchResult the result processor * @return the processed result */ protected <T> T get(final String index, final String id, final SearchCondition<GetRequestBuilder> condition, final SearchResult<T, GetRequestBuilder, GetResponse> searchResult) { final SystemHelper systemHelper = ComponentUtil.getSystemHelper();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 121.9K bytes - Viewed (0)