- Sort Score
- Result 10 results
- Languages All
Results 211 - 220 of 336 for Retrieve (0.09 sec)
-
src/test/java/org/codelibs/fess/ds/DataStoreFactoryTest.java
DataStore retrieved = dataStoreFactory.getDataStore("myStore"); assertNotNull(retrieved); assertSame(dataStore, retrieved); } // Test getDataStore with non-existing name public void test_getDataStore_nonExistingName() { DataStore retrieved = dataStoreFactory.getDataStore("nonExisting"); assertNull(retrieved); }Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/Sitemap.java
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 1.2K bytes - Viewed (0) -
guava/src/com/google/common/cache/CacheLoader.java
import com.google.common.util.concurrent.ListenableFutureTask; import java.io.Serializable; import java.util.Map; import java.util.concurrent.Executor; /** * Computes or retrieves values, based on a key, for use in populating a {@link LoadingCache}. * * <p>Most implementations will only need to implement {@link #load}. Other methods may be * overridden as desired. * * <p>Usage example: *Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 9.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/UserService.java
@Resource protected FessLoginAssist fessLoginAssist; /** Fess configuration for system settings */ @Resource protected FessConfig fessConfig; /** * Retrieves a paginated list of users based on the provided pager criteria. * Updates the pager with pagination information including total count and page navigation. *Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.7K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.17.md
- The resource version option, when passed to a list call, is now consistently interpreted as the minimum allowed resource version. Previously when listing resources that had the watch cache disabled clients could retrieve a snapshot at that exact resource version. If the client requests a resource version newer than the current state, a TimeoutError is returned suggesting the client retry in a few seconds. This behavior is now consistent for both single item retrieval...
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu Jan 28 10:44:33 UTC 2021 - 346.2K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/app/web/api/admin/plugin/ApiAdminPluginAction.java
// Search Execute // ============== /** * Retrieves the list of installed plugins. * * @return JSON response containing installed plugin list */ // GET /api/admin/plugin/installed @Execute public JsonResponse<ApiResult> get$installed() {Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.3K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerContextTest.java
startLatch.await(); crawlerContext.addSitemaps(thread1Sitemaps); String[] retrieved = crawlerContext.removeSitemaps(); if (retrieved != null && retrieved.length == 1 && "http://thread1.com/sitemap.xml".equals(retrieved[0])) { successCount.incrementAndGet(); } } catch (InterruptedException e) {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 25.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/PropertyDesc.java
* * @return whether the property has a setter method */ boolean hasWriteMethod(); /** * Returns whether the property value can be retrieved. * * @return whether the property value can be retrieved */ boolean isReadable(); /** * Returns whether the property value can be set. * * @return whether the property value can be set */Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RequestHeaderService.java
* Default constructor for RequestHeaderService. * 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 criteriaRegistered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/UserInfoHelper.java
protected Boolean cookieSecure; /** Whether the user identification cookie should be HTTP-only */ protected boolean httpOnly = true; /** * Retrieves the user code for the current request. * The user code is used to uniquely identify users across sessions and requests.Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.9K bytes - Viewed (0)