Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for searchResults (0.05 sec)

  1. 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)
  2. 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)
  3. src/main/resources/fess.xml

    		</postConstruct>
    		<postConstruct name="addDesignJspFileName">
    			<arg>"search"</arg>
    			<arg>"search.jsp"</arg>
    		</postConstruct>
    		<postConstruct name="addDesignJspFileName">
    			<arg>"searchResults"</arg>
    			<arg>"searchResults.jsp"</arg>
    		</postConstruct>
    		<postConstruct name="addDesignJspFileName">
    			<arg>"searchNoResult"</arg>
    			<arg>"searchNoResult.jsp"</arg>
    		</postConstruct>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Jul 28 09:03:48 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. 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)
  5. src/main/java/org/codelibs/fess/mylasta/action/FessHtmlPath.java

        /** The path of the HTML: /searchOptions.jsp */
        HtmlNext path_SearchOptionsJsp = new HtmlNext("/searchOptions.jsp");
    
        /** The path of the HTML: /searchResults.jsp */
        HtmlNext path_SearchResultsJsp = new HtmlNext("/searchResults.jsp");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 21 04:02:44 UTC 2025
    - 26.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top