- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for allPageCount (0.12 sec)
-
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) -
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) -
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)