- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 615 for numer (0.03 sec)
-
src/main/java/org/codelibs/fess/helper/IndexingHelper.java
*/ public class IndexingHelper { /** Logger for this class */ private static final Logger logger = LogManager.getLogger(IndexingHelper.class); /** Maximum number of retry attempts for failed operations */ protected int maxRetryCount = 5; /** Default number of rows to process in a single batch */ protected int defaultRowSize = 100; /** * Default constructor for indexing helper.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 26.1K 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/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/crawler/util/FessCrawlerConfig.java
} /** * Gets the number of shards for the queue index. * * @return the number of queue shards */ @Override public int getQueueShards() { return ComponentUtil.getFessConfig().getIndexDocumentCrawlerQueueNumberOfShardsAsInteger(); } /** * Gets the number of shards for the data index. * * @return the number of data shards */ @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/assemblies/extension/kibana/fess_log.ndjson
regatable\":true,\"readFromDocValues\":true},{\"name\":\"order\",\"type\":\"number\",\"esTypes\":[\"integer\"],\"count\":0,\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"name\":\"queryId\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"count\":0,\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"name\":\"queryOffset\",\"type\":\"number\",\"esTypes\":[\"integer\"],\"count\":0,\"scripted\":false,\"searchable\":t...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Aug 12 01:26:21 UTC 2019 - 18.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/SearchLogPager.java
public static final int DEFAULT_PAGE_SIZE = 20; /** Default current page number for pagination. */ public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1; /** Total number of records matching the search criteria. */ private int allRecordCount; /** Total number of pages based on record count and page size. */ private int allPageCount;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/BoostDocPager.java
*/ public class BoostDocPager implements Serializable { private static final long serialVersionUID = 1L; /** 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; /** Indicates if 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.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/ProtwordsPager.java
return ComponentUtil.getFessConfig().getPagingPageSizeAsInteger(); } /** * Gets the default current page number. * @return the default current page number (1) */ 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.3K bytes - Viewed (0) -
guava/src/com/google/common/collect/Serialization.java
* Reads a count corresponding to a serialized map, multiset, or multimap. It returns the size of * a map serialized by {@link #writeMap(Map, ObjectOutputStream)}, the number of distinct elements * in a multiset serialized by {@link #writeMultiset(Multiset, ObjectOutputStream)}, or the number * of distinct keys in a multimap serialized by {@link #writeMultimap(Multimap, * ObjectOutputStream)}. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 8.5K bytes - Viewed (0)