- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 793 for deleteMe (0.04 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/failureurl/ApiAdminFailureurlAction.java
return null; })).status(Status.OK).result()); } // DELETE /api/admin/failureurl/log/{id} /** * Deletes a failure URL log by ID. * * @param id the failure URL log ID to delete * @return JSON response with result status */ @Execute public JsonResponse<ApiResult> delete$log(final String id) { failureUrlService.getFailureUrl(id).ifPresent(entity -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/crawlinginfo/ApiAdminCrawlinginfoAction.java
})).status(Status.OK).result()); } /** * Deletes a specific crawling info log by ID. * * @param id the ID of the crawling info log to delete * @return JSON response indicating the deletion status */ // DELETE /api/admin/crawlinginfo/log/{id} @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 - 6.1K bytes - Viewed (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(() -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComDeleteDirectory.java
import jcifs.Configuration; import jcifs.internal.smb1.ServerMessageBlock; /** * SMB1 Delete Directory request message. * * This command is used to delete a directory on the server. * The directory must be empty before it can be deleted. */ public class SmbComDeleteDirectory extends ServerMessageBlock { /** * Creates a new SMB1 delete directory request. * * @param config the CIFS configuration
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/JobLogService.java
op.setRefreshPolicy(Constants.TRUE); }); } /** * Deletes a specific job log from the database. * * @param jobLog the job log to delete */ public void delete(final JobLog jobLog) { jobLogBhv.delete(jobLog, op -> { op.setRefreshPolicy(Constants.TRUE); }); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/plugin/AdminPluginAction.java
saveToken(); return asListHtml(); } /** * Deletes the specified plugin. * * @param form the delete form containing plugin information * @return HTML response redirecting to the plugin list */ @Execute @Secured({ ROLE }) public HtmlResponse delete(final DeleteForm form) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 11.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/relatedquery/ApiAdminRelatedqueryAction.java
} /** * Deletes a related query setting by ID. * * @param id the ID of the related query to delete * @return JSON response confirming deletion status */ // DELETE /api/admin/relatedquery/setting/{id} @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/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java
@Override public long purge(long expiry) { // Just count files that would be deleted return 1L; } }; testManager.baseDir = tempDir; long result = testManager.purge(1L); assertTrue(result >= 0); // Count of deleted files } // Test FilePurgeVisitor public void test_FilePurgeVisitor() throws IOException {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComDelete.java
import jcifs.internal.util.SMBUtil; import jcifs.util.Hexdump; /** * SMB1 Delete file request message. * * This command is used to delete a file on the server. * The file must not be in use before it can be deleted. */ public class SmbComDelete extends ServerMessageBlock { private final int searchAttributes; /** * Creates a new SMB1 delete file request. * * @param config the CIFS configuration
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/FilesTest.java
assertTrue("ByteBuffers should be equal.", expected.equals(actual)); } public void testMap_noSuchFile() throws IOException { // Setup File file = createTempFile(); boolean deleted = file.delete(); assertTrue(deleted); // Test assertThrows(FileNotFoundException.class, () -> Files.map(file)); } public void testMap_readWrite() throws IOException { // Test data int size = 1024;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Jul 14 14:44:08 UTC 2025 - 22.1K bytes - Viewed (0)