- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 1,077 for numKey (0.06 sec)
-
src/main/java/org/codelibs/fess/app/pager/CharMappingPager.java
return ComponentUtil.getFessConfig().getPagingPageSizeAsInteger(); } /** * Gets the default current page number. * @return The default current page number. */ protected int getDefaultCurrentPageNumber() { return 1; } /** * Gets the total number of records. * @return The total record count. */ public int getAllRecordCount() { return allRecordCount;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaStatistics.java
* * @param bytes number of bytes sent * @param durationNanos operation duration in nanoseconds */ public void recordRdmaSend(int bytes, long durationNanos) { rdmaSends.incrementAndGet(); bytesTransferred.addAndGet(bytes); totalSendTime.addAndGet(durationNanos); } /** * Record an RDMA receive operation * * @param bytes number of bytes received
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 10.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/QueryResponseList.java
/** The offset value used for pagination calculations. */ protected final int offset; /** The number of records per page. */ protected final int pageSize; /** The current page number (1-based). */ protected int currentPageNumber; /** The total number of records in the search result set. */ protected long allRecordCount;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/FileAuthPager.java
} /** The default number of records to display per page. */ public static final int DEFAULT_PAGE_SIZE = 20; /** The default current page number (1-based). */ public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1; /** The total number of records in the result set. */ private int allRecordCount; /** The total number of pages in the result set. */ private int allPageCount;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/WebAuthPager.java
*/ public static final int DEFAULT_PAGE_SIZE = 20; /** * Default current page number. */ public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1; /** * Total number of records. */ private int allRecordCount; /** * Total number of pages. */ private int allPageCount; /** * Flag indicating if a previous page exists.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/KeyMatchPager.java
} /** * Returns the default current page number. * * @return The default current page number. */ protected int getDefaultCurrentPageNumber() { return DEFAULT_CURRENT_PAGE_NUMBER; } /** * Returns the total number of records. * * @return The total number of records. */ public int getAllRecordCount() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/ReqHeaderPager.java
private static final long serialVersionUID = 1L; /** * Default number of records to display per page. */ public static final int DEFAULT_PAGE_SIZE = 20; /** * Default current page number for pagination. */ public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1; /** * The total number of records in the result set. */ private int allRecordCount; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/WebConfigPager.java
*/ public static final int DEFAULT_PAGE_SIZE = 20; /** * Default current page number. */ public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1; /** * Total number of records. */ private int allRecordCount; /** * Total number of pages. */ private int allPageCount; /** * Flag indicating if a previous page exists.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/StemmerOverridePager.java
* Gets the default page size from configuration. * * @return The default number of records per page */ protected int getDefaultPageSize() { return ComponentUtil.getFessConfig().getPagingPageSizeAsInteger(); } /** * Gets the default current page number. * * @return The default current page number (1) */ protected int getDefaultCurrentPageNumber() { return 1;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/SearchRenderData.java
} /** * Gets the starting record number for the current page. * * @return The starting record number */ public long getCurrentStartRecordNumber() { return currentStartRecordNumber; } /** * Gets the ending record number for the current page. * * @return The ending record number */ public long getCurrentEndRecordNumber() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.5K bytes - Viewed (0)