- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 201 for retrieve (0.04 sec)
-
src/main/java/org/codelibs/fess/util/ResourceUtil.java
import org.lastaflute.web.util.LaServletContextUtil; import jakarta.servlet.ServletContext; /** * Utility class for accessing various resource paths and files in the Fess application. * This class provides methods to retrieve paths for configuration files, templates, dictionaries, * thumbnails, plugins, and other resources required by the Fess search engine. * It supports both regular deployment and Docker container environments. * */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerAction.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/keymatch/ApiAdminKeymatchAction.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/labeltype/ApiAdminLabeltypeAction.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchHelper.java
} } } return StringUtil.EMPTY_STRINGS; } /** * Retrieves a single document by its document ID. * * @param docId The document ID to retrieve * @param fields Array of field names to include in the result * @param userBean Optional user information for permission checking
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 35.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/taglib/FessFunctions.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 25.3K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Throwables.java
* * <ul> * <li>{@code getStackTrace} takes {@code stackSize} time to return but then negligible time to * retrieve each element of the returned list. * <li>{@code lazyStackTrace} takes negligible time to return but then {@code 1/stackSize} time * to retrieve each element of the returned list (probably slightly more than {@code * 1/stackSize}). * </ul> *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 20.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/stemmeroverride/ApiAdminDictStemmeroverrideAction.java
.collect(Collectors.toList())).status(ApiResult.Status.OK).result()); } /** * Retrieves a specific stemmer override dictionary item by ID. * * @param dictId the dictionary ID * @param id the ID of the stemmer override item to retrieve * @return JSON response containing the stemmer override dictionary item */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/elevateword/ApiAdminElevatewordAction.java
.status(ApiResult.Status.OK) .result()); } // GET /api/admin/elevateword/{id} /** * Retrieves a specific elevate word setting by ID. * * @param id the ID of the elevate word to retrieve * @return JSON response containing the elevate word configuration */ @Execute public JsonResponse<ApiResult> get$setting(final String id) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 12.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryFile.java
public abstract String getType(); /** * Retrieves a paginated list of dictionary items. * * @param offset the starting offset for pagination * @param size the number of items to retrieve * @return a paginated list of dictionary items */ public abstract PagingList<T> selectList(int offset, int size); /** * Retrieves a dictionary item by its ID. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.2K bytes - Viewed (0)