- Sort Score
- Result 10 results
- Languages All
Results 211 - 220 of 744 for doDelete (0.04 sec)
-
src/main/java/jcifs/ACE.java
/** * Permission to delete a file or directory */ int FILE_DELETE = 0x00000040; // 7 /** * Permission to read file attributes */ int FILE_READ_ATTRIBUTES = 0x00000080; // 8 /** * Permission to write file attributes */ int FILE_WRITE_ATTRIBUTES = 0x00000100; // 9 /** * Standard delete permission */ int DELETE = 0x00010000; // 16
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/synonym/ApiAdminDictSynonymAction.java
* @param id the ID of the synonym item to delete * @return JSON response indicating the deletion status */ // DELETE /api/admin/dict/synonym/setting/{dictId}/{id} @Execute public JsonResponse<ApiResult> delete$setting(final String dictId, final long id) { synonymService.getSynonymItem(dictId, id).ifPresent(entity -> { synonymService.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) -
src/main/java/org/codelibs/fess/app/service/StopwordsService.java
* * @param dictId The ID of the dictionary. * @param stopwordsItem The stopword item to delete. */ public void delete(final String dictId, final StopwordsItem stopwordsItem) { getStopwordsFile(dictId).ifPresent(file -> { file.delete(stopwordsItem); }); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/SynonymService.java
* * @param dictId The ID of the dictionary. * @param synonymItem The synonym item to delete. */ public void delete(final String dictId, final SynonymItem synonymItem) { getSynonymFile(dictId).ifPresent(file -> { file.delete(synonymItem); }); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/role/admin_role_details.jsp
</button> <c:if test="${editable}"> <button type="button" class="btn btn-danger" name="delete" data-toggle="modal" data-target="#confirmToDelete" value="<la:message key="labels.crud_button_delete" />">
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 6.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/ScheduledJobService.java
return scheduledJobBhv.selectByPK(id); } /** * Deletes a scheduled job. * @param scheduledJob The scheduled job to delete. */ public void delete(final ScheduledJob scheduledJob) { scheduledJobBhv.delete(scheduledJob, op -> { op.setRefreshPolicy(Constants.TRUE); }); ComponentUtil.getJobHelper().remove(scheduledJob); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/StemmerOverrideService.java
* * @param dictId The ID of the stemmer override dictionary * @param stemmerOvberrideItem The stemmer override item to delete */ public void delete(final String dictId, final StemmerOverrideItem stemmerOvberrideItem) { getStemmerOverrideFile(dictId).ifPresent(file -> { file.delete(stemmerOvberrideItem); }); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/WebConfigService.java
* This includes removing associated web authentications and request headers. * * @param webConfig The web configuration to delete */ public void delete(final WebConfig webConfig) { final String webConfigId = webConfig.getId(); webConfigBhv.delete(webConfig, op -> { op.setRefreshPolicy(Constants.TRUE); }); webAuthenticationBhv.queryDelete(cb -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0) -
docs/site-replication/run-multi-site-ldap.sh
exit_1 fi sleep 10 ./mc admin user svcacct info minio2 testsvc if [ $? -eq 0 ]; then echo "svc account found after delete, exiting.." exit_1 fi ./mc admin user svcacct info minio3 testsvc if [ $? -eq 0 ]; then echo "svc account found after delete, exiting.." exit_1 fi ./mc mb minio1/newbucket # copy large upload to newbucket on minio1 truncate -s 17M lrgfile
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Sep 24 08:03:58 UTC 2024 - 10.1K bytes - Viewed (0) -
cmd/batch-expire.go
// purge: // # retainVersions: 0 # (default) delete all versions of the object. This option is the fastest. // # retainVersions: 5 # keep the latest 5 versions of the object. // // - type: deleted # objects with delete marker as their latest version // name: NAME # match object names that satisfy the wildcard expression.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Apr 22 11:16:32 UTC 2025 - 23K bytes - Viewed (0)