- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 892 for deletes (0.04 sec)
-
src/main/java/org/codelibs/fess/app/service/DuplicateHostService.java
*/ public void delete(final DuplicateHost duplicateHost) { duplicateHostBhv.delete(duplicateHost, op -> { op.setRefreshPolicy(Constants.TRUE); }); } /** * Retrieves all duplicate host configurations without pagination. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/keymatch/AdminKeymatchAction.java
}); return redirect(getClass()); } /** * Deletes a key match. * * @param form the edit form * @return HTML response after deletion */ @Execute @Secured({ ROLE }) public HtmlResponse delete(final EditForm form) { verifyCrudMode(form.crudMode, CrudMode.DETAILS);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 16.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/joblog/ApiAdminJoblogAction.java
})).status(Status.OK).result()); } // DELETE /api/admin/joblog/log/{id} /** * Deletes a specific job log. * Useful for cleaning up old job execution records. * * @param id the job log ID to delete * @return JSON response with deletion status */ @Execute public JsonResponse<ApiResult> delete$log(final String id) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/ProtwordsService.java
} }); } /** * Deletes a protected words item. * @param dictId the dictionary ID * @param protwordsItem the item to delete */ public void delete(final String dictId, final ProtwordsItem protwordsItem) { getProtwordsFile(dictId).ifPresent(file -> { file.delete(protwordsItem); }); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RequestHeaderService.java
op.setRefreshPolicy(Constants.TRUE); }); } /** * Deletes a request header configuration from the database. * * @param requestHeader the request header configuration to delete */ public void delete(final RequestHeader requestHeader) { requestHeaderBhv.delete(requestHeader, op -> { op.setRefreshPolicy(Constants.TRUE); }); }
Registered: 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/ThemeHelper.java
} try { Files.delete(f); } catch (final IOException e) { logger.warn("Failed to delete {}", f, e); } }); Files.deleteIfExists(dir); } catch (final IOException e) { logger.warn("Failed to delete {}", dir, e); } } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RoleTypeService.java
op.setRefreshPolicy(Constants.TRUE); }); } /** * Deletes a role type. * @param roleType The role type to delete. */ public void delete(final RoleType roleType) { roleTypeBhv.delete(roleType, op -> { op.setRefreshPolicy(Constants.TRUE); }); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/ExecJob.java
.forEach(k -> addSystemProperty(cmdList, k.toString(), null, null)); } } /** * Deletes the specified temporary directory. * Logs a warning if the directory cannot be deleted. * * @param ownTmpDir the temporary directory to delete */ protected void deleteTempDir(final File ownTmpDir) { if (ownTmpDir == null) { return; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.2K bytes - Viewed (0) -
src/main/java/org/codelibs/curl/io/ContentOutputStream.java
* </ul> * * <p>Methods:</p> * <ul> * <li>{@code getFile()} - Marks the file as retrieved and returns the file.</li> * <li>{@code close()} - Closes the stream and deletes the temporary file if it is not needed.</li> * </ul> */ public class ContentOutputStream extends DeferredFileOutputStream { /** * The logger for this class. */
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Sat Jul 05 01:38:18 UTC 2025 - 3.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/duplicatehost/ApiAdminDuplicatehostAction.java
} // DELETE /api/admin/duplicatehost/setting/{id} /** * Deletes a specific duplicate host setting. * * @param id the duplicate host setting ID to delete * @return JSON response with deletion status */ @Execute public JsonResponse<ApiResult> delete$setting(final String id) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.3K bytes - Viewed (0)