- Sort Score
- Result 10 results
- Languages All
Results 71 - 75 of 75 for getAllRecordCount (0.26 sec)
-
src/main/java/org/codelibs/fess/dict/DictionaryFile.java
} @Override public List<E> subList(final int fromIndex, final int toIndex) { return parent.subList(fromIndex, toIndex); } public int getAllRecordCount() { return allRecordCount; } public int getPageSize() { return pageSize; } public int getCurrentPageNumber() {
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/app/web/api/admin/elevateword/ApiAdminElevatewordAction.java
return asJson( new ApiResult.ApiConfigsResponse<EditBody>().settings(list.stream().map(this::createEditBody).collect(Collectors.toList())) .total(pager.getAllRecordCount()).status(ApiResult.Status.OK).result()); } // GET /api/admin/elevateword/{id} @Execute public JsonResponse<ApiResult> get$setting(final String id) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 9.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/ApiResult.java
execTime = data.getExecTime(); pageSize = data.getPageSize(); pageNumber = data.getCurrentPageNumber(); recordCount = data.getAllRecordCount(); recordCountRelation = data.getAllRecordCountRelation(); pageCount = data.getAllPageCount(); nextPage = data.isExistNextPage(); prevPage = data.isExistPrevPage();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 12.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchLogHelper.java
} searchLog.setRoles(roleQueryHelper.build(params.getType()).stream().toArray(n -> new String[n])); searchLog.setQueryId(queryId); searchLog.setHitCount(queryResponseList.getAllRecordCount()); searchLog.setHitCountRelation(queryResponseList.getAllRecordCountRelation()); searchLog.setResponseTime(queryResponseList.getExecTime()); searchLog.setQueryTime(queryResponseList.getQueryTime());
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jul 22 02:07:37 UTC 2024 - 21.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
final String pageSize = Integer.toString(data.getPageSize()); final String currentPageNumber = Integer.toString(data.getCurrentPageNumber()); final String allRecordCount = Long.toString(data.getAllRecordCount()); final String allRecordCountRelation = data.getAllRecordCountRelation(); final String allPageCount = Integer.toString(data.getAllPageCount());
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:46 UTC 2024 - 50.3K bytes - Viewed (0)