Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for searchResults (0.14 sec)

  1. 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 Oct 31 13:40:30 UTC 2024
    - Last Modified: Sun Jul 28 09:03:48 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. 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-right">
    					<a href="#"><la:message key="labels.footer_back_to_top" /></a>
    				</div>
    			</c:when>
    			<c:otherwise>
    				<jsp:include page="searchNoResult.jsp" />
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 26 01:07:52 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. 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-right">
    					<a href="#"><la:message key="labels.footer_back_to_top" /></a>
    				</div>
    			</c:when>
    			<c:otherwise>
    				<jsp:include page="searchNoResult.jsp" />
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 26 01:07:52 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. 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 Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  5. 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 Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 132.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java

    import org.codelibs.fess.util.FacetResponse;
    
    public class SearchResult {
    
        protected final List<Map<String, Object>> documentList;
        protected final long allRecordCount;
        protected final String allRecordCountRelation;
        protected final long queryTime;
        protected final boolean partialResults;
        protected final FacetResponse facetResponse;
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. 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 Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java

            return processResponse(searchResponseOpt);
        }
    
        protected SearchResult processResponse(final OptionalEntity<SearchResponse> searchResponseOpt) {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final SearchResultBuilder builder = SearchResult.create();
            searchResponseOpt.ifPresent(searchResponse -> {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jul 22 06:56:21 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                }
            });
        }
    
        protected void processSearchRoles(final List<SearchResult> result, final Consumer<String> consumer) throws NamingException {
            for (final SearchResult srcrslt : result) {
                final Attributes attrs = srcrslt.getAttributes();
    
                //get group attr
                final Attribute attr = attrs.get(fessConfig.getLdapMemberofAttribute());
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorTest.java

            }
    
            @Override
            protected SearchResult search(String query, SearchRequestParams params, OptionalThing<FessUserBean> userBean) {
                int start = params.getStartPosition();
                int size = params.getPageSize();
                SearchResultBuilder builder = SearchResult.create();
                for (int i = start; i < start + size && i < allRecordCount; i++) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 25.6K bytes
    - Viewed (0)
Back to top