- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 17 for availability (0.05 sec)
-
src/main/java/org/codelibs/fess/app/service/GroupService.java
return g; }); } /** * Stores a group by inserting or updating it in both LDAP and the database. * Uses refresh policy to ensure immediate availability of the stored data. * * @param group the group entity to store */ public void store(final Group group) { ComponentUtil.getLdapManager().insert(group);
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/test/java/org/codelibs/fess/thumbnail/impl/EmptyGeneratorTest.java
emptyGenerator = new EmptyGenerator(); // Test that isAvailable returns true for EmptyGenerator assertTrue(emptyGenerator.isAvailable()); // Test cached availability assertTrue(emptyGenerator.isAvailable()); } public void test_isTarget() { // Initialize without container emptyGenerator = new EmptyGenerator();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/WebConfigPager.java
* Search criteria: interval time. */ public String intervalTime; /** * Search criteria: boost value. */ public String boost; /** * Search criteria: availability status. */ public String available; /** * Search criteria: sort order. */ public String sortOrder; /** * Search criteria: creator user. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/ThumbnailGeneratorTest.java
Map<String, Object> docMap = new HashMap<>(); docMap.put("mimetype", null); assertFalse(thumbnailGenerator.isTarget(docMap)); } public void test_isAvailable() { // Test availability check assertTrue(thumbnailGenerator.isAvailable()); } public void test_destroy() { // Test destroy method - should not throw exception thumbnailGenerator.destroy();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessCurtainFinallyHookTest.java
customHook.hook(assistantDirector); // Verify that exception was handled assertTrue(exceptionHandled.get()); } // Test with a custom ClassLoader to simulate class availability public void test_hook_withCustomClassLoader() throws Exception { // Create a custom ClassLoader that can control class loading behavior ClassLoader customClassLoader = new URLClassLoader(new URL[0], null) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/FileConfigPager.java
public String numOfThread; /** Interval time between crawling operations */ public String intervalTime; /** Boost value for search ranking */ public String boost; /** Availability status of the configuration */ public String available; /** Sort order for the configuration */ public String sortOrder; /** User who created the configuration */ public String createdBy;
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/DataConfigPager.java
public String handlerName; /** Search/filter parameter for data configuration boost value. */ public String boost; /** Search/filter parameter for data configuration availability status. */ public String available; /** Search/filter parameter for data configuration sort order. */ public String sortOrder; /** Search/filter parameter for data configuration creator. */
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/thumbnail/impl/BaseThumbnailGenerator.java
/** The name of this thumbnail generator. */ protected String name; /** Maximum number of redirects to follow. */ protected int maxRedirectCount = 10; /** Availability status of this generator. */ protected Boolean available = null; /** * Registers this thumbnail generator with the thumbnail manager. */ public void register() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 13.3K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Throwables.java
* available for all platforms and configurations. If that implementation is unavailable, this * method falls back to {@code getStackTrace}. Callers that require the special implementation can * check its availability with {@link #lazyStackTraceIsLazy()}. * * <p>The expected (but not guaranteed) performance of the special implementation differs from
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/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java
public void test_run_componentNotAvailable() throws Exception { final List<String> sessionIdList = Arrays.asList("session1"); indexUpdater.setSessionIdList(sessionIdList); // Set component availability to false after some time new Thread(() -> { ThreadUtil.sleep(200); ((TestSystemHelper) systemHelper).setComponentAvailable(false); }).start();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 33K bytes - Viewed (0)