- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 100 for evicting (0.05 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/relatedquery/ApiAdminRelatedqueryAction.java
return null; }); return asJson(new ApiUpdateResponse().id(relatedQuery.getId()).created(true).status(Status.OK).result()); } /** * Updates an existing related query setting. * * @param body the related query configuration data to update * @return JSON response containing the updated related query ID and status */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/webconfig/AdminWebconfigAction.java
form.name = null; }); form.crudMode = CrudMode.CREATE; }); }); } /** * Displays the form for editing an existing web crawler configuration. * * @param form the edit form containing web config ID * @return HTML response for the web config edit form */ @Execute @Secured({ ROLE })
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 21K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/elevateword/AdminElevatewordAction.java
form.crudMode = CrudMode.CREATE; }); }).renderWith(data -> { registerLabels(data); }); } /** * Shows the form for editing an existing elevate word. * * @param form edit form containing the elevate word ID * @return HTML response for the edit elevate word form */ @Execute @Secured({ ROLE })
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 22.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/user/AdminUserAction.java
form.crudMode = CrudMode.CREATE; }); }).renderWith(data -> { registerForms(data); }); } /** * Displays the form for editing an existing user. * * @param form the edit form containing user ID * @return HTML response for the user edit form */ @Execute @Secured({ ROLE })
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 19.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/AdminDictSynonymAction.java
form.initialize(); form.crudMode = CrudMode.CREATE; form.dictId = dictId; }); }); } /** * Displays the form for editing an existing synonym item. * * @param form the edit form containing synonym item data * @return HTML response for the edit synonym form */ @Execute @Secured({ ROLE })
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 23.7K bytes - Viewed (1) -
src/test/java/org/codelibs/fess/entity/QueryContextTest.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java
getDoc(form).ifPresent(entity -> { form.doc = fessConfig.convertToEditableDoc(entity); }); return asEditHtml(); } /** * Displays the form for editing an existing document. * * @param form the edit form containing document ID * @return HTML response for the document edit form */ @Execute @Secured({ ROLE })
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 23.1K bytes - Viewed (1) -
src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java
Map<String, Object> dataMap = new HashMap<>(); dataMap.put("url", "http://example.com/test"); dataMap.put("doc_id", "existing-doc-id"); indexUpdateCallback.store(paramMap, dataMap); // Should keep existing doc_id assertEquals("existing-doc-id", dataMap.get("doc_id")); } public void test_concurrentStore() throws Exception { // Test thread safety
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 24.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/mapping/CharMappingFileTest.java
public void test_update() throws Exception { writeTestFile("a,b => c\nd,e => f\n"); // Get existing item OptionalEntity<CharMappingItem> existing = charMappingFile.get(1L); assertTrue(existing.isPresent()); // Update the item CharMappingItem updateItem = existing.get(); updateItem.setNewInputs(new String[] { "m", "n" }); updateItem.setNewOutput("o");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.5K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/CacheBuilder.java
* granularity. For example, access queues and write queues are kept per segment when they are * required by the selected eviction algorithm. As such, when writing unit tests it is not * uncommon to specify {@code concurrencyLevel(1)} in order to achieve more deterministic eviction * behavior. * * <p>Note that future implementations may abandon segment locking in favor of more advanced * concurrency controls.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 51.7K bytes - Viewed (0)