- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 410 for doDelete (0.07 sec)
-
android/guava-tests/test/com/google/common/io/FilesTest.java
} @Override public boolean renameTo(File to) { return canRename && super.renameTo(to); } @Override public boolean delete() { return canDelete && super.delete(); } private static final long serialVersionUID = 0; } public void testLineReading() throws IOException { File temp = createTempFile();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Jul 14 14:44:08 UTC 2025 - 22.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/reqheader/ApiAdminReqheaderAction.java
* @param id the ID of the request header setting to delete * @return JSON response indicating success or failure */ // DELETE /api/admin/reqheader/setting/{id} @Execute public JsonResponse<ApiResult> delete$setting(final String id) { reqHeaderService.getRequestHeader(id).ifPresent(entity -> { try { reqHeaderService.delete(entity);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/webauth/ApiAdminWebauthAction.java
* @param id the ID of the web authentication setting to delete * @return JSON response indicating success or failure */ // DELETE /api/admin/webauth/setting/{id} @Execute public JsonResponse<ApiResult> delete$setting(final String id) { webAuthService.getWebAuthentication(id).ifPresent(entity -> { try { webAuthService.delete(entity);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/accesstoken/ApiAdminAccesstokenAction.java
} // DELETE /api/admin/accesstoken/setting/{id} /** * Deletes an access token setting by ID. * * @param id the access token ID to delete * @return JSON response confirming deletion */ @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) -
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
* * @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) { crawlingInfoService.getCrawlingInfo(id).ifPresent(entity -> { try { crawlingInfoService.delete(entity);
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/fileconfig/ApiAdminFileconfigAction.java
} // DELETE /api/admin/fileconfig/setting/{id} /** * Deletes a specific file configuration setting. * * @param id the file configuration 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 - 9.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java
// updated file addDocument(localParams, dataMap); } else if (getParamValue(localParams, "event.delete", "delete").equals(eventType)) { // deleted file deleteDocument(localParams, dataMap); } else {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 28.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/AccessTokenService.java
accessTokenBhv.insertOrUpdate(accessToken, op -> op.setRefreshPolicy(Constants.TRUE)); } /** * Delete the access token. * @param accessToken The access token. */ public void delete(final AccessToken accessToken) { accessTokenBhv.delete(accessToken, op -> op.setRefreshPolicy(Constants.TRUE)); } /** * Set up the list condition.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/stopwords/ApiAdminDictStopwordsAction.java
* @param id the ID of the stopwords item to delete * @return JSON response indicating the deletion status */ // DELETE /api/admin/dict/stopwords/setting/{dictId}/{id} @Execute public JsonResponse<ApiResult> delete$setting(final String dictId, final long id) { stopwordsService.getStopwordsItem(dictId, id).ifPresent(entity -> { stopwordsService.delete(dictId, entity);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.3K bytes - Viewed (0)