- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 633 for Member (0.04 sec)
-
CHANGELOG/CHANGELOG-1.22.md
- The new flag `--chunk-size=SIZE` has been added to `kubectl describe`. This flag may be used to alter the number of items or disable this feature when `0` is passed. ([#101171](https://github.com/kubernetes/kubernetes/pull/101171),...
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Tue Dec 13 12:43:45 UTC 2022 - 454.1K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/Striped.java
* bulkGet(keys)} with a relative large number of keys can cause an excessive number of shared * stripes (much like the birthday paradox, where much fewer than anticipated birthdays are needed * for a pair of them to match). Please consider carefully the implications of the number of * stripes, the intended concurrency level, and the typical number of keys used in a {@code
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 20.6K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/AtomicDouble.java
/* * Written by Doug Lea and Martin Buchholz with assistance from * members of JCP JSR-166 Expert Group and released to the public * domain, as explained at * http://creativecommons.org/publicdomain/zero/1.0/ */ /* * Source: * http://gee.cs.oswego.edu/cgi-bin/viewcvs.cgi/jsr166/src/jsr166e/extra/AtomicDouble.java?revision=1.13 * (Modified to adapt to guava coding conventions and * to use AtomicLongFieldUpdater instead of sun.misc.Unsafe) */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 9.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/RoleTypePager.java
versionNo = null; } /** * Gets the default current page number. * @return The default current page number. */ protected int getDefaultCurrentPageNumber() { return DEFAULT_CURRENT_PAGE_NUMBER; } /** * Gets the total number of records. * @return The total number of records. */ public int getAllRecordCount() { return allRecordCount;
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/RelatedContentPager.java
public void setPageSize(final int pageSize) { this.pageSize = pageSize; } /** * Gets the current page number being displayed. * If current page number is not set or is invalid, returns the default current page number. * * @return current page number */ public int getCurrentPageNumber() { if (currentPageNumber <= 0) {
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
*/ public void setPageSize(final int pageSize) { this.pageSize = pageSize; } /** * Gets the current page number. * If current page number is not set or is invalid, returns the default current page number. * * @return the current page number */ public int getCurrentPageNumber() { if (currentPageNumber <= 0) {
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/RelatedQueryPager.java
private static final long serialVersionUID = 1L; /** * Default current page number for pagination. */ public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1; /** * Total number of records in the result set. */ private int allRecordCount; /** * Total number of pages available for pagination. */ private int allPageCount; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/DataConfigPager.java
} /** * Sets the number of records to display per page. * * @param pageSize the page size */ public void setPageSize(final int pageSize) { this.pageSize = pageSize; } /** * Gets the current page number being displayed. * If the current page number is not set or is invalid, returns the default page number. * * @return the current page number
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/SynonymPager.java
*/ public class SynonymPager implements Serializable { /** * Constructs a new pager for synonyms. */ public SynonymPager() { // do nothing } private static final long serialVersionUID = 1L; /** The total number of records. */ private int allRecordCount; /** The total number of pages. */ private int allPageCount;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.6K 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)