- Sort Score
- Result 10 results
- Languages All
Results 191 - 200 of 315 for delete (0.04 sec)
-
BsElevateWordToLabel.java
String doBuildColumnString(String dm) { L85: StringBuilder sb = new StringBuilder(); L86: sb.append(dm).append(elevateWordId); L87: sb.append(dm).append(labelTypeId); L88: if (sb.length() > dm.length()) { L89: sb.delete(0, dm.length()); L90: } L91: sb.insert(0, "{").append("}"); L92: return sb.toString(); L93: } L94: L95: // =================================================================================== L96: // ...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 4.5K bytes -
BsGroup.java
protected String doBuildColumnString(String dm) { L85: StringBuilder sb = new StringBuilder(); L86: sb.append(dm).append(gidNumber); L87: sb.append(dm).append(name); L88: if (sb.length() > dm.length()) { L89: sb.delete(0, dm.length()); L90: } L91: sb.insert(0, "{").append("}"); L92: return sb.toString(); L93: } L94: L95: // =================================================================================== L96: // ...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 4.3K bytes -
AdminWebauthAction.java
throwValidationError(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, form.id), this::asEditHtml); L235: }); L236: return redirect(getClass()); L237: } L238: L239: @Execute L240: @Secured({ ROLE }) L241: public HtmlResponse delete(final EditForm form) { L242: verifyCrudMode(form.crudMode, CrudMode.DETAILS); L243: validate(form, messages -> {}, this::asDetailsHtml); L244: verifyToken(this::asDetailsHtml); L245: final String id = form.id; L246: ...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 15.7K bytes -
CHANGELOG-1.18.md
ataQiu)) [SIG Cluster Lifecycle] L2368:- Kubectl/drain: add disable-eviction option.Force drain to use delete, even if eviction is supported. This will bypass checking PodDisruptionBudgets, and should be used with caution. ([#85571](https://github.com/kubernetes/kubernetes/pull/85571), [@michaelgugino](https://github.com/michaelgugino)) [SIG CLI] L2369:- Kubectl/drain: add skip-wait-for-delete-timeout option. If a pod’s `DeletionTimestamp` is older than N seconds, skip waiting for the pod. Seconds...github.com/kubernetes/kubernetes/CHANGELOG/CHAN...Wed Jun 16 17:18:28 UTC 2021 373.2K bytes -
AdminRelatedcontentAction.java
L224: @Secured({ ROLE }) L225: public HtmlResponse delete(final EditForm form) { L226: verifyCrudMode(form.crudMode, CrudMode.DETAILS); L227: validate(form, messages -> {}, this::asDetailsHtml); L228: verifyToken(this::asDetailsHtml); L229: final String id = form.id; L230: relatedContentService.getRelatedContent(id).ifPresent(entity -> { L231: try { L232: relatedContentService.delete(entity); L233: saveInfo(messages -> ...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 13.2K bytes -
AdminBoostdocAction.java
throwValidationError(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, form.id), this::asEditHtml); L219: }); L220: return redirect(getClass()); L221: } L222: L223: @Execute L224: @Secured({ ROLE }) L225: public HtmlResponse delete(final EditForm form) { L226: verifyCrudMode(form.crudMode, CrudMode.DETAILS); L227: validate(form, messages -> {}, this::asDetailsHtml); L228: verifyToken(this::asDetailsHtml); L229: final String id = form.id; L230: ...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 13.1K bytes -
ContentCache.java
L39: L40: public ContentCache(final File file) { L41: this.data = null; L42: this.file = file; L43: } L44: L45: @Override L46: public void close() throws IOException { L47: if (file != null) { L48: Files.delete(file.toPath()); L49: } L50: } L51: L52: public InputStream getInputStream() throws IOException { L53: if (file != null) { L54: return new FileInputStream(file); L55: } L56: return new ByteArrayInputStream(data);...github.com/codelibs/curl4j/src/main/java/org/co...Mon Nov 14 21:05:19 UTC 2022 1.6K bytes -
SuggestCreator.java
iesPath); L168: } else { L169: try { L170: final File propFile = ComponentUtil.getSystemHelper().createTempFile("suggest_", ".properties"); L171: if (propFile.delete() && logger.isDebugEnabled()) { L172: logger.debug("Deleted a temp file: {}", propFile.getAbsolutePath()); L173: } L174: systemProperties.reload(propFile.getAbsolutePath()); L175: propFile.deleteOnExit(); L176: }...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 10K 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 -
CrawlTestBase.java
logger.info("itemList: {}", itemList); L172: return itemList; L173: } L174: L175: protected static Response deleteMethod(final String path) { L176: return given().contentType("application/json").header("Authorization", getTestToken()).delete(path); L177: } L178: L179: protected static void deleteDocuments(final String queryString) { L180: List<String> docIds = new ArrayList<>(); L181: Response response = given().contentType("application/json").param("scroll", "1m").param("q",...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 9.9K bytes