- Sort Score
- Result 10 results
- Languages All
Results 221 - 230 of 288 for delete (0.08 sec)
-
BsCrawlingInfo.java
L98: sb.append(dm).append(createdTime); L99: sb.append(dm).append(expiredTime); L100: sb.append(dm).append(name); L101: sb.append(dm).append(sessionId); L102: if (sb.length() > dm.length()) { L103: sb.delete(0, dm.length()); L104: } L105: sb.insert(0, "{").append("}"); L106: return sb.toString(); L107: } L108: L109: // =================================================================================== L110: // ...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 5.3K bytes -
CrawlingInfoService.java
setupStoreCondition(crawlingInfo); L91: L92: crawlingInfoBhv.insertOrUpdate(crawlingInfo, op -> op.setRefreshPolicy(Constants.TRUE)); L93: L94: } L95: L96: public void delete(final CrawlingInfo crawlingInfo) { L97: setupDeleteCondition(crawlingInfo); L98: L99: crawlingInfoBhv.delete(crawlingInfo, op -> op.setRefreshPolicy(Constants.TRUE)); L100: L101: } L102: L103: protected void setupListCondition(final CrawlingInfoCB cb, final CrawlingInfoPager crawlingInfoPager)...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 13.4K bytes -
AdminAccesstokenAction.java
L244: @Secured({ ROLE }) L245: public HtmlResponse delete(final EditForm form) { L246: verifyCrudMode(form.crudMode, CrudMode.DETAILS); L247: validate(form, messages -> {}, this::asDetailsHtml); L248: verifyToken(this::asDetailsHtml); L249: final String id = form.id; L250: accessTokenService.getAccessToken(id).ifPresent(entity -> { L251: try { L252: accessTokenService.delete(entity); L253: saveInfo(messages -> messa...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 14.7K bytes -
AdminLabeltypeAction.java
@Execute L250: @Secured({ ROLE }) L251: public HtmlResponse delete(final EditForm form) { L252: verifyCrudMode(form.crudMode, CrudMode.DETAILS); L253: validate(form, messages -> {}, this::asDetailsHtml); L254: verifyToken(this::asDetailsHtml); L255: final String id = form.id; L256: labelTypeService.getLabelType(id).ifPresent(entity -> { L257: try { L258: labelTypeService.delete(entity); L259: saveInfo(messages -> messages...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 15.1K bytes -
FileAuthTests.java
@AfterEach L90: void deleteFileConfig() { L91: final Map<String, Object> searchBody = new HashMap<>(); L92: searchBody.put("size", NUM * 2); L93: final String fileConfigId = getFileConfigId(); L94: checkMethodBase(searchBody).delete("/api/admin/fileconfig/setting/" + fileConfigId).then().body("response.status", equalTo(0)); L95: } L96: L97: @Override L98: protected Map<String, Object> createTestParam(int id) { L99: final Map<String, Object> requestBody = new HashMap<>();...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 3.9K bytes -
AdminSearchlistAction.java
} L200: return doSearch(form); L201: } L202: L203: // ----------------------------------------------------- L204: // Confirm L205: // ------- L206: L207: @Execute L208: @Secured({ ROLE }) L209: public HtmlResponse delete(final DeleteForm form) { L210: validate(form, messages -> {}, this::asListHtml); L211: verifyToken(this::asListHtml); L212: final String docId = form.docId; L213: try { L214: final QueryBuilder query = Query...github.com/codelibs/fess/src/main/java/org/code...Wed Jul 24 09:03:45 UTC 2024 18.3K bytes -
AdminDictMappingAction.java
@Execute L327: @Secured({ ROLE }) L328: public HtmlResponse delete(final EditForm form) { L329: verifyCrudMode(form.crudMode, CrudMode.DETAILS, form.dictId); L330: validate(form, messages -> {}, this::asDetailsHtml); L331: verifyToken(this::asDetailsHtml); L332: charMappingService.getCharMappingItem(form.dictId, form.id).ifPresent(entity -> { L333: try { L334: charMappingService.delete(form.dictId, entity); L335: saveInfo(messages...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 19.5K bytes -
EsAbstractEntity.java
L23:import org.dbflute.FunCustodial; L24:import org.dbflute.dbmeta.accessory.EntityModifiedProperties; L25:import org.dbflute.dbmeta.accessory.EntityUniqueDrivenProperties; L26:import org.dbflute.util.DfCollectionUtil; L27:import org.opensearch.action.delete.DeleteRequestBuilder; L28:import org.opensearch.action.index.IndexRequestBuilder; L29: L30:/** L31: * @author ESFlute (using FreeGen) L32: */ L33:public abstract class EsAbstractEntity implements Entity, Serializable, Cloneable { L34: L35: // ...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 10.9K bytes -
ThumbnailGenerator.java
sPath); L181: } else { L182: try { L183: final File propFile = ComponentUtil.getSystemHelper().createTempFile("thumbnail_", ".properties"); L184: if (propFile.delete() && logger.isDebugEnabled()) { L185: logger.debug("Deleted a temp file: {}", propFile.getAbsolutePath()); L186: } L187: systemProperties.reload(propFile.getAbsolutePath()); L188: propFile.deleteOnExit(); L189: }...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 8.2K bytes -
EsAbstractBehavior.java
RefreshResponse; L44:import org.opensearch.action.bulk.BulkItemResponse; L45:import org.opensearch.action.bulk.BulkRequestBuilder; L46:import org.opensearch.action.bulk.BulkResponse; L47:import org.opensearch.action.delete.DeleteRequestBuilder; L48:import org.opensearch.action.delete.DeleteResponse; L49:import org.opensearch.action.index.IndexRequestBuilder; L50:import org.opensearch.action.index.IndexResponse; L51:import org.opensearch.action.search.SearchRequestBuilder; L52:import org.opensear...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 26.4K bytes