- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 16 for searchResults (0.06 sec)
-
src/main/webapp/WEB-INF/view/searchResults.jsp
Shinsuke Sugaya <******@****.***> 1737178357 +0900
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jan 18 05:32:37 UTC 2025 - 9.1K bytes - Viewed (0) -
src/main/webapp/WEB-INF/orig/view/searchResults.jsp
Shinsuke Sugaya <******@****.***> 1737178357 +0900
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jan 18 05:32:37 UTC 2025 - 9.1K bytes - Viewed (0) -
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/mylasta/action/FessHtmlPath.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 21 04:02:44 UTC 2025 - 26.3K bytes - Viewed (0) -
src/main/webapp/WEB-INF/orig/view/search.jsp
<div class="row"> <div class="col"> ${item} </div> </div> </c:forEach> <c:choose> <c:when test="${f:h(allRecordCount) != 0}"> <jsp:include page="searchResults.jsp" /> <div class="text-end d-print-none"> <a href="#"><la:message key="labels.footer_back_to_top" /></a> </div> </c:when> <c:otherwise> <jsp:include page="searchNoResult.jsp" />
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jan 18 11:38:54 UTC 2025 - 6.8K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/search.jsp
<div class="row"> <div class="col"> ${item} </div> </div> </c:forEach> <c:choose> <c:when test="${f:h(allRecordCount) != 0}"> <jsp:include page="searchResults.jsp" /> <div class="text-end d-print-none"> <a href="#"><la:message key="labels.footer_back_to_top" /></a> </div> </c:when> <c:otherwise> <jsp:include page="searchNoResult.jsp" />
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jan 18 11:38:54 UTC 2025 - 6.8K bytes - Viewed (0) -
src/main/webapp/js/admin/adminlte.min.js.map
if (searchValue.length < this.options.minLength) {\n $(SELECTOR_SEARCH_RESULTS_GROUP).empty()\n this._addNotFound()\n this.close()\n return\n }\n\n const searchResults = SearchItems.filter(item => (item.name).toLowerCase().includes(searchValue))\n const endResults = $(searchResults.slice(0, this.options.maxResults))\n $(SELECTOR_SEARCH_RESULTS_GROUP).empty()\n\n if (endResults.length === 0) {\n this._addNotFound()\n } else {\n endResults.each((i,...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 26 01:49:09 UTC 2024 - 132.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java
return this; } /** * Builds and returns the final SearchResult instance. * * @return A new SearchResult instance with the configured properties */ public SearchResult build() { return new SearchResult(documentList, // allRecordCount, // allRecordCountRelation, //
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.8K 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)