Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 61 for pageSize (0.18 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java

                RenderDataUtil.register(data, "appendHighlightParams", appendHighlightParams);
                RenderDataUtil.register(data, "execTime", execTime);
                RenderDataUtil.register(data, "pageSize", pageSize);
                RenderDataUtil.register(data, "currentPageNumber", currentPageNumber);
                RenderDataUtil.register(data, "allRecordCount", allRecordCount);
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/searchlog/AdminSearchlogAction.java

        public static final String ROLE = "admin-searchlog";
    
        private static final String[] CONDITION_FIELDS =
                { "logType", "queryId", "userSessionId", "accessType", "requestedTimeRange", "pageSize" };
    
        // ===================================================================================
        //                                                                           Attribute
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.2K bytes
    - Viewed (0)
  3. src/test/java/jcifs/tests/EnumTest.java

        }
    
    
    
    
        private void testListCount ( final int pageSize, int numFiles ) throws CIFSException {
            CIFSContext ctx = getContext();
            ctx = withConfig(ctx, new DelegatingConfiguration(ctx.getConfig()) {
    
                @Override
                public int getListCount () {
                    return pageSize;
                }
            });
            ctx = withTestNTLMCredentials(ctx);
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:09:03 GMT 2023
    - 25.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

            protected String queryId;
            protected List<Map<String, Object>> docs;
            protected String highlightParams;
            protected String execTime;
            protected int pageSize;
            protected int pageNumber;
            protected long recordCount;
            protected String recordCountRelation;
            protected int pageCount;
            protected boolean nextPage;
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.2K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist.jsp

                                                                                       href="prev?q=${f:u(q)}&pn=${f:u(currentPageNumber)}&num=${f:u(pageSize)}&labelTypeValue=${f:u(labelTypeValue)}">
                                                            <la:message key="labels.prev_page"/>
                                                        </la:link></li>
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Sep 24 13:09:22 GMT 2020
    - 20K bytes
    - Viewed (1)
  6. src/main/java/org/codelibs/fess/helper/SearchHelper.java

                request.setAttribute(Constants.REQUEST_LANGUAGES, params.getLanguages());
                request.setAttribute(Constants.REQUEST_QUERIES, params.getQuery());
            });
    
            final int pageSize = params.getPageSize();
            final String query = ComponentUtil.getQueryStringBuilder().params(params).sortField(params.getSort()).build();
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.8K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/orig/view/searchResults.jsp

    				</li>
    			</c:forEach>
    			<c:if test="${existNextPage}">
    				<li class="page-item"><la:link styleClass="page-link" aria-label="Next"
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Jun 09 04:29:42 GMT 2022
    - 9K bytes
    - Viewed (1)
  8. src/main/webapp/WEB-INF/view/searchResults.jsp

    				</li>
    			</c:forEach>
    			<c:if test="${existNextPage}">
    				<li class="page-item"><la:link styleClass="page-link" aria-label="Next"
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Jun 09 04:29:42 GMT 2022
    - 9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

        }
    
        public void addSearchLog(final SearchRequestParams params, final LocalDateTime requestedTime, final String queryId, final String query,
                final int pageStart, final int pageSize, final QueryResponseList queryResponseList) {
    
            final RoleQueryHelper roleQueryHelper = ComponentUtil.getRoleQueryHelper();
            final UserInfoHelper userInfoHelper = ComponentUtil.getUserInfoHelper();
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 20.8K bytes
    - Viewed (1)
  10. src/main/java/org/codelibs/fess/Constants.java

        public static final long ONE_DAY_IN_MILLIS = 24L * 60L * 60L * 1000L;
    
        public static final String GUEST_USER = "guest";
    
        public static final String[] PAGER_CONVERSION_RULE =
                { "allRecordCount", "pageSize", "currentPageNumber", "allPageCount", "existPrePage", "existNextPage" };
    
        // crawler types
        public static final String WEB_CRAWLER_TYPE = "web_crawling";
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.4K bytes
    - Viewed (0)
Back to top