- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 75 for Pages (0.01 sec)
-
src/main/java/org/codelibs/fess/app/pager/KeyMatchPager.java
} /** * Returns the total number of pages. * * @return The total number of pages. */ public int getAllPageCount() { return allPageCount; } /** * Sets the total number of pages. * * @param allPageCount The total number of pages. */ public void setAllPageCount(final int allPageCount) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.1K bytes - Viewed (0) -
tests/soft_delete_test.go
t.Errorf("Count soft deleted record, expects: %v, got: %v", 1, count) } var pages uint if DB.Model(&SoftDeleteBook{}).Select("pages").Where("name = ?", book.Name).Scan(&pages).Error != nil || pages != book.Pages { t.Errorf("Pages soft deleted record, expects: %v, got: %v", 0, pages) } if err := DB.Delete(&book).Error; err != nil {
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Wed Feb 01 06:40:55 UTC 2023 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/RelatedContentPager.java
/** Default current page number constant. */ public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1; /** Total number of records across all pages. */ private int allRecordCount; /** Total number of pages calculated from record count and page size. */ private int allPageCount; /** Flag indicating whether a previous page exists. */ private boolean existPrePage;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/FileConfigPager.java
/** Default current page number for pagination */ public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1; /** Total number of records across all pages */ private int allRecordCount; /** Total number of pages */ private int allPageCount; /** Flag indicating if a previous page exists */ private boolean existPrePage; /** Flag indicating if a next page exists */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/DataConfigPager.java
/** Default current page number (first page). */ public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1; /** Total number of records across all pages. */ private int allRecordCount; /** Total number of pages. */ private int allPageCount; /** Flag indicating if there is a previous page. */ private boolean existPrePage; /** Flag indicating if there is a next page. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/RoleTypePager.java
this.allRecordCount = allRecordCount; } /** * Gets the total number of pages. * @return The total number of pages. */ public int getAllPageCount() { return allPageCount; } /** * Sets the total number of pages. * @param allPageCount The total number of pages. */ public void setAllPageCount(final int allPageCount) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/KuromojiPager.java
} /** * Returns the total number of pages. * * @return The total number of pages. */ public int getAllPageCount() { return allPageCount; } /** * Sets the total number of pages. * * @param allPageCount The total number of pages. */ public void setAllPageCount(final int allPageCount) {
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/java/org/codelibs/fess/app/web/error/ErrorAction.java
import org.codelibs.fess.app.web.base.FessSearchAction; import org.lastaflute.web.Execute; import org.lastaflute.web.response.HtmlResponse; /** * Action class for handling general error pages. * This action displays error pages when unhandled exceptions occur * during search operations or page navigation. */ public class ErrorAction extends FessSearchAction { /** * Default constructor for ErrorAction. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/error/ErrorSystemerrorAction.java
import org.codelibs.fess.app.web.base.FessSearchAction; import org.lastaflute.web.Execute; import org.lastaflute.web.response.HtmlResponse; /** * Action class for handling HTTP 500 Internal Server Error pages. * This action displays error pages when the server encounters * an unexpected condition that prevents it from fulfilling the request. */ public class ErrorSystemerrorAction extends FessSearchAction { /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/GroupPager.java
/** Default current page number when pagination starts. */ public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1; /** Total number of records available across all pages. */ private int allRecordCount; /** Total number of pages available for pagination. */ private int allPageCount; /** Flag indicating whether a previous page exists. */ private boolean existPrePage;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7K bytes - Viewed (0)