- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 153 for pagination (0.06 sec)
-
src/main/webapp/WEB-INF/view/admin/badword/admin_badword.jsp
<c:set var="pager" value="${badWordPager}" scope="request"/> <c:import url="/WEB-INF/view/common/admin/crud/pagination.jsp"/> <c:if test="${pager.currentPageNumber > pager.allPageCount}"> <script>location.href = "${contextPath}/admin/badword/list/${pager.allPageCount}";</script>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Wed Feb 12 20:25:27 UTC 2020 - 6.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlist/ListForm.java
/** The sort field and direction. */ public String sort; /** The start position for search results. */ @ValidateTypeFailure public Integer start; /** The offset for pagination. */ @ValidateTypeFailure public Integer offset; /** The page number. */ @ValidateTypeFailure public Integer pn; /** The number of results to display. */ @ValidateTypeFailure
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/boostdoc/admin_boostdoc.jsp
<c:set var="pager" value="${boostDocPager}" scope="request"/> <c:import url="/WEB-INF/view/common/admin/crud/pagination.jsp"/> <c:if test="${pager.currentPageNumber > pager.allPageCount}"> <script>location.href = "${contextPath}/admin/boostdoc/list/${pager.allPageCount}";</script>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Mar 31 05:47:05 UTC 2020 - 7.5K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/duplicatehost/admin_duplicatehost.jsp
<c:set var="pager" value="${duplicateHostPager}" scope="request"/> <c:import url="/WEB-INF/view/common/admin/crud/pagination.jsp"/> <c:if test="${pager.currentPageNumber > pager.allPageCount}">
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Mar 31 05:47:05 UTC 2020 - 7.7K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/relatedquery/admin_relatedquery.jsp
<c:set var="pager" value="${relatedQueryPager}" scope="request"/> <c:import url="/WEB-INF/view/common/admin/crud/pagination.jsp"/> <c:if test="${pager.currentPageNumber > pager.allPageCount}"> <script>location.href = "${contextPath}/admin/relatedquery/list/${pager.allPageCount}";</script>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Mar 31 05:47:05 UTC 2020 - 7.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/StopwordsService.java
} /** * Retrieves a list of stopwords for a given dictionary and pager. * * @param dictId The ID of the dictionary. * @param stopwordsPager The pager for controlling pagination. * @return A list of stopwords. */ public List<StopwordsItem> getStopwordsList(final String dictId, final StopwordsPager stopwordsPager) { return getStopwordsFile(dictId).map(file -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/SynonymService.java
} /** * Retrieves a list of synonyms for a given dictionary and pager. * * @param dictId The ID of the dictionary. * @param synonymPager The pager for controlling pagination. * @return A list of synonyms. */ public List<SynonymItem> getSynonymList(final String dictId, final SynonymPager synonymPager) { return getSynonymFile(dictId).map(file -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/searchlog/admin_searchlog.jsp
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 16K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/failureurl/ApiAdminFailureurlAction.java
// ============== // GET /api/admin/failureurl/logs // PUT /api/admin/failureurl/logs /** * Retrieves failure URL logs with pagination. * * @param body the search criteria * @return JSON response containing the failure URL logs */ @Execute public JsonResponse<ApiResult> logs(final SearchBody body) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RequestHeaderService.java
// Default constructor } /** * Retrieves a paginated list of request headers based on the provided pager criteria. * * @param requestHeaderPager the pager containing pagination and search criteria * @return a list of request headers matching the specified criteria */ public List<RequestHeader> getRequestHeaderList(final ReqHeaderPager requestHeaderPager) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.2K bytes - Viewed (0)