- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 398 for basedir (0.07 sec)
-
src/main/java/org/codelibs/fess/entity/SearchRenderData.java
protected long allRecordCount; /** Relation type for the record count (e.g., "eq", "gte"). */ protected String allRecordCountRelation; /** Total number of pages based on record count and page size. */ protected int allPageCount; /** Flag indicating whether a next page exists. */ protected boolean existNextPage; /** Flag indicating whether a previous page exists. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessFileTransformer.java
import org.codelibs.fess.util.ComponentUtil; import jakarta.annotation.PostConstruct; /** * File transformer implementation for the Fess search engine. * This transformer handles file-based document transformation and content extraction * using the Fess file transformation process with support for various file types. * * <p>It extends AbstractFessFileTransformer to provide specialized file processing
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/java/org/codelibs/fess/app/web/admin/suggest/AdminSuggestAction.java
verifyToken(() -> asHtml(path_AdminSuggest_AdminSuggestJsp).useForm(SuggestForm.class)); return redirect(getClass()); } /** * Deletes document-based suggest words from the suggest index. * * @return HTML response redirecting to the index page */ @Execute @Secured({ ROLE }) public HtmlResponse deleteDocumentWords() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RequestHeaderService.java
* Initializes the service with dependency injection. */ public RequestHeaderService() { // 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 */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.2K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java
* (In other words, this method must allocate a new array). The caller is thus free to modify the * returned array. * * <p>This method acts as bridge between array-based and collection-based APIs. * * @return an array containing all of the elements in this queue */ @CanIgnoreReturnValue @Override public Object[] toArray() { E[] items = this.items;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 22.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/GroupService.java
/** * Default constructor for GroupService. */ public GroupService() { // Default constructor } /** * Retrieves a paginated list of groups based on the provided pager criteria. * Updates the pager with pagination information including page numbers and ranges. * * @param groupPager the pager containing pagination and search criteria
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java
/** * Removes a stored crawling configuration from the session-based storage. * * @param sessionCountId the session count ID of the configuration to remove */ public void remove(final String sessionCountId) { crawlingConfigMap.remove(sessionCountId); } /** * Retrieves a stored crawling configuration from the session-based storage. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/FileAuthPager.java
// Default constructor } /** 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. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/AbstractFutureState.java
// getDeclaredField to throw a NoSuchFieldException when the field is definitely there. // For these users fallback to a suboptimal implementation, based on synchronized. This // will be a definite performance hit to those users. thrownAtomicReferenceFieldUpdaterFailure = atomicReferenceFieldUpdaterFailure; helper = new SynchronizedHelper();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 34.8K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/EnumHashBiMap.java
stream.defaultReadObject(); keyTypeOrObjectUnderJ2cl = (Class<K>) requireNonNull(stream.readObject()); /* * TODO: cpovirk - Pre-size the HashMap based on the number of enum values? (But *not* based on * the number of entries in the map, as that makes it easy for hostile inputs to trigger lots of * allocation—not that any program should be deserializing hostile inputs to begin with!) */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 5.2K bytes - Viewed (0)