- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 60 for page_size (0.05 sec)
-
src/main/java/org/codelibs/fess/dict/DictionaryFile.java
protected int allPageCount; /** The total number of records across all pages. */ protected int allRecordCount; /** The number of records per page. */ protected int pageSize; /** The current page number (1-based). */ protected int currentPageNumber; /** The size of the page range for navigation. */ protected int pageRangeSize; /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 07:09:00 UTC 2025 - 11.2K bytes - Viewed (0) -
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"Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Jan 18 05:32:37 UTC 2025 - 9.1K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/app/web/search/SearchAction.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);
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchLogHelper.java
* @param pageStart The starting page number. * @param pageSize The size of the page. * @param queryResponseList The list of query responses. */ public void addSearchLog(final SearchRequestParams params, final LocalDateTime requestedTime, final String queryId, final String query, final int pageStart, final int pageSize, final QueryResponseList queryResponseList) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 26.4K bytes - Viewed (0) -
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);
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 13:56:35 UTC 2025 - 22.7K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/app/web/api/ApiResult.java
/** * The execution time of the search query. */ protected String execTime; /** * The page size of the search results. */ protected int pageSize; /** * The current page number of the search results. */ protected int pageNumber; /** * The total number of records found. */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.9K bytes - Viewed (0) -
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" }; // =================================================================================== // AttributeRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 13:56:35 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/storage/GcsStorageClient.java
final Page<Blob> blobs = storage.list(bucket, BlobListOption.prefix(searchPrefix), BlobListOption.currentDirectory(), BlobListOption.pageSize(maxItems)); for (final Blob blob : blobs.iterateAll()) { final String blobName = blob.getName(); // Skip the prefix itselfRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 10.3K bytes - Viewed (0) -
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();
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 05:56:45 UTC 2025 - 36.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/Constants.java
public static final String GUEST_USER = "guest"; /** Conversion rule array for pager components. */ public static final String[] PAGER_CONVERSION_RULE = { "allRecordCount", "pageSize", "currentPageNumber", "allPageCount", "existPrePage", "existNextPage" }; // ============================================================ // Crawler Types
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 35.2K bytes - Viewed (0)