Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for allPageCount (0.19 sec)

  1. src/main/java/org/codelibs/fess/util/QueryResponseList.java

            int startWithOffset = start - offset;
            if (startWithOffset < 0) {
                startWithOffset = 0;
            }
            allPageCount = (int) ((allRecordCount - 1) / pageSize) + 1;
            existPrevPage = startWithOffset > 0;
            existNextPage = startWithOffset < (long) (allPageCount - 1) * (long) pageSize;
            currentPageNumber = start / pageSize + 1;
            if (existNextPage && size() < pageSize) {
                // collapsing
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/dict/DictionaryFile.java

            }
    
            public int getAllPageCount() {
                return allPageCount;
            }
    
            public boolean isExistPrePage() {
                return currentPageNumber != 1;
            }
    
            public boolean isExistNextPage() {
                return currentPageNumber != allPageCount;
            }
    
            public void setPageRangeSize(final int pageRangeSize) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java

                RenderDataUtil.register(data, "allRecordCount", allRecordCount);
                RenderDataUtil.register(data, "allRecordCountRelation", allRecordCountRelation);
                RenderDataUtil.register(data, "allPageCount", allPageCount);
                RenderDataUtil.register(data, "existNextPage", existNextPage);
                RenderDataUtil.register(data, "existPrevPage", existPrevPage);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Wed Jul 24 09:03:45 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                final String allRecordCount = Long.toString(data.getAllRecordCount());
                final String allRecordCountRelation = data.getAllRecordCountRelation();
                final String allPageCount = Integer.toString(data.getAllPageCount());
                final List<Map<String, Object>> documentItems = data.getDocumentItems();
                final FacetResponse facetResponse = data.getFacetResponse();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 12 01:54:46 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/Constants.java

        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";
    
        public static final String FILE_CRAWLER_TYPE = "file_crawling";
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Aug 22 12:43:18 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top