- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 410 for doDelete (0.06 sec)
-
src/main/java/org/codelibs/fess/app/service/BoostDocumentRuleService.java
} /** * Deletes a boost document rule. * @param boostDocumentRule The boost document rule to delete. */ public void delete(final BoostDocumentRule boostDocumentRule) { boostDocumentRuleBhv.delete(boostDocumentRule, op -> op.setRefreshPolicy(Constants.TRUE)); } /** * Sets up search conditions for boost document rule list queries.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/PathMappingService.java
ComponentUtil.getPathMappingHelper().init(); } /** * Deletes a path mapping. * * @param pathMapping the path mapping to delete */ public void delete(final PathMapping pathMapping) { pathMappingBhv.delete(pathMapping, op -> { op.setRefreshPolicy(Constants.TRUE); }); ComponentUtil.getPathMappingHelper().init(); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/pathmap/ApiAdminPathmapAction.java
} // DELETE /api/admin/pathmap/setting/{id} /** * Deletes a specific path mapping setting. * * @param id the path mapping 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 - 7.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/relatedcontent/ApiAdminRelatedcontentAction.java
} // DELETE /api/admin/relatedcontent/setting/{id} /** * Deletes a specific related content setting. * * @param id the related content 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.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/storage/ApiAdminStorageAction.java
} }); } // DELETE /api/admin/storage/delete/{id}/ /** * Deletes a file from storage. * @param id The ID of the file to delete. * @return A JSON response indicating the success or failure of the operation. */ @Execute public JsonResponse<ApiResult> delete$delete(final String id) { final PathInfo pi = convertToItem(id);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/IoTestCase.java
@CanIgnoreReturnValue private boolean delete(File file) { if (file.isDirectory()) { File[] files = file.listFiles(); if (files != null) { for (File f : files) { if (!delete(f)) { return false; } } } } if (!file.delete()) { logger.log(Level.WARNING, "couldn't delete file: {0}", new Object[] {file}); return false;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 5.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/WebAuthenticationService.java
} /** * Deletes a web authentication configuration. * * @param webAuthentication The web authentication configuration to delete */ public void delete(final WebAuthentication webAuthentication) { webAuthenticationBhv.delete(webAuthentication, 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) -
module.xml
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/webconfig/ApiAdminWebconfigAction.java
* @param id the ID of the web configuration setting to delete * @return JSON response indicating success or failure */ // DELETE /api/admin/webconfig/setting/{id} @Execute public JsonResponse<ApiResult> delete$setting(final String id) { webConfigService.getWebConfig(id).ifPresent(entity -> { try { webConfigService.delete(entity);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/plugin/DeleteForm.java
// Default constructor with explicit documentation } /** * The name of the plugin to delete. * Required field with maximum length of 100 characters. */ @Required @Size(max = 100) public String name; /** * The version of the plugin to delete. * Optional field with maximum length of 100 characters. */ @Size(max = 100) public String version;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.6K bytes - Viewed (0)