- Sort Score
- Result 10 results
- Languages All
Results 361 - 370 of 963 for delete2 (0.09 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/keymatch/AdminKeymatchAction.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; keyMatchService.getKeyMatch(id).ifPresent(entity -> { try { keyMatchService.delete(entity);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 13.5K bytes - Viewed (0) -
cmd/bootstrap-peer-server_gen.go
err = msgp.WrapError(err, "MinioEnv") return } if z.MinioEnv == nil { z.MinioEnv = make(map[string]string, zb0003) } else if len(z.MinioEnv) > 0 { for key := range z.MinioEnv { delete(z.MinioEnv, key) } } for zb0003 > 0 { zb0003-- var za0002 string var za0003 string za0002, err = dc.ReadString() if err != nil { err = msgp.WrapError(err, "MinioEnv")
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Jun 21 14:49:49 UTC 2024 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsbhv/BsFailureUrlBhv.java
entity.asDocMeta().indexOption(opLambda); doInsertOrUpdate(entity, null, null); } public void delete(FailureUrl entity) { doDelete(entity, null); } public void delete(FailureUrl 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 - 9.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsbhv/BsRelatedQueryBhv.java
entity.asDocMeta().indexOption(opLambda); doInsertOrUpdate(entity, null, null); } public void delete(RelatedQuery entity) { doDelete(entity, null); } public void delete(RelatedQuery 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 - 9.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/bsbhv/BsUserInfoBhv.java
entity.asDocMeta().indexOption(opLambda); doInsertOrUpdate(entity, null, null); } public void delete(UserInfo entity) { doDelete(entity, null); } public void delete(UserInfo 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 - 9K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/FileBackedOutputStreamAndroidIncompatibleTest.java
write(out, data, 0, 100, true); final File file = out.getFile(); assertEquals(100, file.length()); assertTrue(file.exists()); out.close(); // Make sure that finalize deletes the file out = null; // times out and throws RuntimeException on failure GcFinalization.awaitDone( new GcFinalization.FinalizationPredicate() { @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Jun 08 21:20:23 UTC 2023 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/ElevateWordService.java
op.setRefreshPolicy(Constants.TRUE); }); } } } public void delete(final ElevateWord elevateWord) { elevateWordBhv.delete(elevateWord, op -> { op.setRefreshPolicy(Constants.TRUE); }); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 15.5K bytes - Viewed (0) -
.github/ISSUE_TEMPLATE/02-pkgsite-removal.yml
It does not affect the behaviour of proxy.golang.org or the go command. Instead we recommend using the retract directive which will be processed by all 3 of the above. If you have deleted your repo, please recreate it and publish a retraction. Retracting a module version involves adding a retract directive to your go.mod file and publishing a new version.
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Jan 04 23:31:17 UTC 2024 - 1.9K 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)