- Sort Score
- Num 10 results
- Language All
Results 31 - 40 of 326 for doDelete (0.04 seconds)
-
src/main/java/org/codelibs/fess/opensearch/user/bsbhv/BsUserBhv.java
doInsertOrUpdate(entity, null, null); } public void delete(User entity) { doDelete(entity, null); } public void delete(User entity, RequestOptionCall<DeleteRequestBuilder> opLambda) { entity.asDocMeta().deleteOption(opLambda); doDelete(entity, null); } public int queryDelete(CBCall<UserCB> cbLambda) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 12K bytes - Click Count (0) -
src/main/resources/fess_label_en.properties
labels.popular_word_word_enabled=Popular Word Response labels.supported_search_web=Web labels.supported_search_none=Unavailable labels.purge_search_log_day=Delete old search logs labels.purge_job_log_day=Delete old job logs labels.purge_user_info_day=Delete old user logs labels.purge_by_bots=Bot names to delete logs labels.log_level=Log Level labels.csv_file_encoding=CSV File Encoding labels.notification_to=Notification Mail
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:54:13 GMT 2026 - 48.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java
// Create an item for deletion ProtwordsItem item = new ProtwordsItem(1, "toDelete"); item.setNewInput(""); // empty means delete ProtwordsFile.ProtwordsUpdater updater = protwordsFile.new ProtwordsUpdater(item); // Write the same item (should delete) ProtwordsItem result = updater.write(item); assertNull(result); updater.close();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 21.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/user/ApiAdminUserAction.java
} /** * Deletes a user setting by ID. * * @param id the ID of the user setting to delete * @return JSON response indicating success or failure */ // DELETE /api/admin/user/setting/{id} @Execute public JsonResponse<ApiResult> delete$setting(final String id) { final User entity = userService.getUser(id).orElseGet(() -> {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Nov 24 02:07:40 GMT 2025 - 7.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/RoleService.java
op.setRefreshPolicy(Constants.TRUE); }); } /** * Deletes a role. * @param role The role to delete. */ public void delete(final Role role) { ComponentUtil.getLdapManager().delete(role); roleBhv.delete(role, op -> { op.setRefreshPolicy(Constants.TRUE); });
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 4.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java
for (File file : files) { if (file.isDirectory()) { deleteDirectory(file); } else { file.delete(); } } } dir.delete(); } // Test initialization @Test public void test_init() { assertNotNull(thumbnailManager.baseDir);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 20.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/ApiAdminDictProtwordsAction.java
} /** * Delete a protected words entry by ID from the specified dictionary. * * @param dictId identifier of the dictionary * @param id identifier of the entry to delete * @return JSON response containing deletion result and entry ID */ // DELETE /api/admin/dict/protwords/setting/{dictId}/{id} @ExecuteCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 9.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/GroupService.java
* association from all users that belong to this group. * * @param group the group entity to delete */ public void delete(final Group group) { ComponentUtil.getLdapManager().delete(group); groupBhv.delete(group, op -> { op.setRefreshPolicy(Constants.TRUE); });Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 5.7K bytes - Click Count (0) -
build-logic/cleanup/src/main/kotlin/gradlebuild/cleanup/Cleanup.kt
continue } if (shouldDelete(cacheVersion)) { logger.lifecycle("Removing old cache directory : $cacheDir") delete { delete(cacheDir) } } } } } fun FileSystemOperations.removeCachedScripts(cachesDir: File) { if (cachesDir.isDirectory) { cachesDir.listFiles()Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Jun 28 08:29:28 GMT 2024 - 4.4K bytes - Click Count (0) -
plugin.xml
<property name="maven.release.repo.url" value="https://repo1.maven.org/maven2" /> <target name="install.plugins"> <mkdir dir="${target.dir}" /> <delete dir="${plugins.dir}" /> <mkdir dir="${plugins.dir}" /> <!-- analysis-extension --> <antcall target="install.plugin"> <param name="repo.url" value="${maven.release.repo.url}" />
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Feb 12 06:33:24 GMT 2026 - 3.5K bytes - Click Count (0)