- Sort Score
- Result 10 results
- Languages All
Results 151 - 160 of 793 for deleteMe (0.05 sec)
-
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
} } /** * Deletes a single file and any empty parent directories. * * @param path the file path to delete */ protected void deleteFile(final Path path) { try { Files.delete(path); if (logger.isDebugEnabled()) { logger.debug("Delete {}", path); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java
try { dictionaryManager.store(StemmerOverrideFile.this, newFile); } finally { newFile.delete(); } } else { newFile.delete(); } } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/keymatch/ApiAdminKeymatchAction.java
} /** * Deletes a key match setting by ID. * * @param id the ID of the key match setting to delete * @return JSON response indicating success or failure */ // DELETE /api/admin/keymatch/setting/{id} @Execute public JsonResponse<ApiResult> delete$setting(final String id) { keyMatchService.getKeyMatch(id).ifPresent(entity -> {
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/admin/searchlist/AdminSearchlistAction.java
// Confirm // ------- /** * Deletes a single document from the search index. * * @param form the delete form containing document ID * @return HTML response redirecting to the list page */ @Execute @Secured({ ROLE }) public HtmlResponse delete(final DeleteForm form) { validate(form, messages -> {}, this::asListHtml);
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/main/java/org/codelibs/fess/app/web/api/admin/elevateword/ApiAdminElevatewordAction.java
} // DELETE /api/admin/elevateword/setting/{id} /** * Deletes a specific elevate word setting. * Also removes the elevate word from the suggest helper. * * @param id the elevate word setting ID to delete * @return JSON response with deletion status */ @Execute public JsonResponse<ApiResult> delete$setting(final String id) { try {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 12.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/pathmap/AdminPathmapAction.java
return redirect(getClass()); } /** * Deletes a path mapping based on the provided form data. * * @param form the edit form containing the path mapping ID to delete * @return HTML response redirecting to the path mapping list page */ @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 - 16K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/labeltype/ApiAdminLabeltypeAction.java
} /** * Deletes a label type setting by ID. * * @param id the ID of the label type setting to delete * @return JSON response indicating success or failure */ // DELETE /api/admin/labeltype/setting/{id} @Execute public JsonResponse<ApiResult> delete$setting(final String id) { labelTypeService.getLabelType(id).ifPresent(entity -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.5K bytes - Viewed (0) -
cmd/batch-handlers.go
continue } // Bucket not found proceed to delete such a job. } } else { if err := job.Replicate.Start(job.ctx, j.objLayer, *job); err != nil { if !isErrBucketNotFound(err) { batchLogIf(j.ctx, err) j.canceler(job.ID, false) continue } // Bucket not found proceed to delete such a job. } } case job.KeyRotate != nil:
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 63.5K bytes - Viewed (0) -
cmd/erasure-server-pool-decom.go
// if all versions were decommissioned, then we can delete the object versions. if decommissioned == len(fivs.Versions) { stopFn := globalDecommissionMetrics.log(decomMetricDecommissionRemoveObject, idx, bi.Name, entry.name) _, err := set.DeleteObject(ctx, bi.Name, encodeDirObject(entry.name), ObjectOptions{ DeletePrefix: true, // use prefix delete to delete all versions at once.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 42.1K bytes - Viewed (1) -
cmd/erasure-server-pool.go
} return bucketInfo, nil } // ClearUploadID deletes given uploadID from cache func (z *erasureServerPools) ClearUploadID(uploadID string) error { z.mpCache.Delete(uploadID) return nil } // DeleteBucket - deletes a bucket on all serverPools simultaneously, // even if one of the serverPools fail to delete buckets, we proceed to // undo a successful operation.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 89.1K bytes - Viewed (0)