- Sort Score
- Result 10 results
- Languages All
Results 481 - 490 of 1,121 for deletes (0.08 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/plugin/ApiAdminPluginAction.java
} installArtifact(artifact); return asJson(new ApiResult.ApiResponse().status(ApiResult.Status.OK).result()); } // DELETE /api/admin/plugin @Execute public JsonResponse<ApiResult> delete$index(final DeleteBody body) { validateApi(body, messages -> {}); deleteArtifact(new Artifact(body.name, body.version));
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.9K bytes - Viewed (0) -
internal/config/api/help.go
Optional: true, Type: "duration", }, config.HelpKV{ Key: apiDeleteCleanupInterval, Description: `set to change intervals when deleted objects are permanently deleted from ".trash" folder` + defaultHelpPostfix(apiDeleteCleanupInterval), Optional: true, Type: "duration", }, config.HelpKV{ Key: apiODirect,
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Aug 16 08:43:49 UTC 2024 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/JobLogService.java
public void store(final JobLog jobLog) { jobLogBhv.insertOrUpdate(jobLog, op -> { op.setRefreshPolicy(Constants.TRUE); }); } public void delete(final JobLog jobLog) { jobLogBhv.delete(jobLog, op -> { op.setRefreshPolicy(Constants.TRUE); }); } protected void setupListCondition(final JobLogCB cb, final JobLogPager jobLogPager) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 4.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/ScheduledJobService.java
}); } public OptionalEntity<ScheduledJob> getScheduledJob(final String id) { return scheduledJobBhv.selectByPK(id); } public void delete(final ScheduledJob scheduledJob) { scheduledJobBhv.delete(scheduledJob, op -> { op.setRefreshPolicy(Constants.TRUE); }); ComponentUtil.getJobHelper().remove(scheduledJob); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 4.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/role/AdminRoleAction.java
@Secured({ ROLE }) public HtmlResponse delete(final EditForm form) { verifyCrudMode(form.crudMode, CrudMode.DETAILS); validate(form, messages -> {}, this::asDetailsHtml); verifyToken(this::asDetailsHtml); final String id = form.id; roleService.getRole(id).ifPresent(entity -> { try { roleService.delete(entity);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 10.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/PurgeDocJob.java
try { searchEngineClient.deleteByQuery(fessConfig.getIndexDocumentUpdateIndex(), queryBuilder); } catch (final Exception e) { logger.error("Could not delete expired documents: {}", queryBuilder, e); resultBuf.append(e.getMessage()).append("\n"); } return resultBuf.toString(); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/user/bsbhv/BsUserBhv.java
entity.asDocMeta().indexOption(opLambda); doInsertOrUpdate(entity, null, null); } public void delete(User entity) { doDelete(entity, null); } public void delete(User entity, RequestOptionCall<DeleteRequestBuilder> opLambda) { entity.asDocMeta().deleteOption(opLambda); doDelete(entity, null); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 12K bytes - Viewed (0) -
docs/ru/docs/tutorial/first-steps.md
При создании API, "путь" является основным способом разделения "задач" и "ресурсов". #### Операция (operation) "Операция" это один из "методов" HTTP. Таких, как: * `POST` * `GET` * `PUT` * `DELETE` ...и более экзотических: * `OPTIONS` * `HEAD` * `PATCH` * `TRACE` По протоколу HTTP можно обращаться к каждому пути, используя один (или несколько) из этих "методов". ---
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 13.1K bytes - Viewed (0) -
internal/dsync/dsync-server_test.go
} if reply = locksHeld == WriteLock; !reply { // Unless it is a write lock return false, fmt.Errorf("Unlock attempted on a read locked entity: %s (%d read locks active)", args.Resources[0], locksHeld) } delete(l.lockMap, args.Resources[0]) // Remove the write lock return true, nil } const ReadLock = 1 func (l *lockServer) RLock(args *LockArgs) (reply bool, err error) {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Jan 23 16:46:37 UTC 2023 - 8.3K bytes - Viewed (0) -
cni/pkg/ipset/ipset.go
} return m.Deps.addIP(m.V4Name, ipToInsert, ipProto, comment, replace) } func (m *IPSet) DeleteIP(ip netip.Addr, ipProto uint8) error { ipToDel := ip.Unmap() // We have already Unmap'd, so we can do a simple IsV6 y/n check now if ipToDel.Is6() { return m.Deps.deleteIP(m.V6Name, ipToDel, ipProto) } return m.Deps.deleteIP(m.V4Name, ipToDel, ipProto) } func (m *IPSet) Flush() error { var err error
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Apr 30 22:24:38 UTC 2024 - 3.9K bytes - Viewed (0)