Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for searchResults (0.18 sec)

  1. src/main/webapp/WEB-INF/orig/view/searchResults.jsp

    Shinsuke Sugaya <******@****.***> 1654748982 +0900
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Jun 09 04:29:42 GMT 2022
    - 9K bytes
    - Viewed (1)
  2. src/main/webapp/WEB-INF/view/searchResults.jsp

    Shinsuke Sugaya <******@****.***> 1654748982 +0900
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Jun 09 04:29:42 GMT 2022
    - 9K 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>
    XML
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Jan 01 06:48:48 GMT 2022
    - 5.2K bytes
    - Viewed (0)
  4. 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" />
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Feb 17 12:13:41 GMT 2023
    - 6.6K bytes
    - Viewed (0)
  5. 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" />
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Feb 17 12:13:41 GMT 2023
    - 6.6K bytes
    - Viewed (0)
  6. 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");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 26.4K bytes
    - Viewed (2)
  7. 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;
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.2K bytes
    - Viewed (0)
  8. 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());
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 65.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

            final int pageSize = params.getPageSize();
            final SearchResult searchResult = searchers[0].search(query, params, userBean);
            return createResponseList(searchResult.getDocumentList(), searchResult.getAllRecordCount(),
                    searchResult.getAllRecordCountRelation(), searchResult.getQueryTime(), searchResult.isPartialResults(),
                    searchResult.getFacetResponse(), params.getStartPosition(), pageSize, 0);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.5K 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++) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 25.6K bytes
    - Viewed (0)
Back to top