Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 288 for delete (0.03 sec)

  1. PluginTests.java

    } L103: L104: protected String getDeleteEndpointSuffix() { L105: return DELETE_ENDPOINT_SUFFIX; L106: } L107: L108: protected Response checkDeleteMethod(final Map<String, Object> body) { L109: return checkMethodBase(body).delete(getApiPath() + "/"); L110: } L111: L112: @Test L113: void testInstalled_ok() { L114: checkGetMethod(Collections.emptyMap(), getInstalledEndpointSuffix() + "/").then().body("response.status", equalTo(0)); L115: } L116: L117: @Test...
    github.com/codelibs/fess/src/test/java/org/code...
    Mon Jul 01 02:20:48 UTC 2024
      6.3K bytes
  2. 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
  3. 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
  4. 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
  5. BsScheduledJob.java

    L161: sb.append(dm).append(sortOrder); L162: sb.append(dm).append(target); L163: sb.append(dm).append(updatedBy); L164: sb.append(dm).append(updatedTime); L165: if (sb.length() > dm.length()) { L166: sb.delete(0, dm.length()); L167: } L168: sb.insert(0, "{").append("}"); L169: return sb.toString(); L170: } L171: L172: // =================================================================================== L173: // ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9.3K bytes
  6. DictionaryFile.java

    abstract PagingList<T> selectList(int offset, int size); L74: L75: public abstract OptionalEntity<T> get(long id); L76: L77: public abstract void insert(T item); L78: L79: public abstract void update(T item); L80: L81: public abstract void delete(T item); L82: L83: public static class PagingList<E> implements List<E> { L84: private final List<E> parent; L85: L86: protected int allPageCount; L87: L88: protected int allRecordCount; L89: L90: protected int pageSize;...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      6.8K bytes
  7. AdminFileauthAction.java

    throwValidationError(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, form.id), this::asEditHtml); L234: }); L235: return redirect(getClass()); L236: } L237: L238: @Execute L239: @Secured({ ROLE }) L240: public HtmlResponse delete(final EditForm form) { L241: verifyCrudMode(form.crudMode, CrudMode.DETAILS); L242: validate(form, messages -> {}, this::asDetailsHtml); L243: verifyToken(this::asDetailsHtml); L244: final String id = form.id; L245: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      15.5K bytes
  8. AdminReqheaderAction.java

    L237: @Secured({ ROLE }) L238: public HtmlResponse delete(final EditForm form) { L239: verifyCrudMode(form.crudMode, CrudMode.DETAILS); L240: validate(form, messages -> {}, this::asDetailsHtml); L241: verifyToken(this::asDetailsHtml); L242: final String id = form.id; L243: requestHeaderService.getRequestHeader(id).ifPresent(entity -> { L244: try { L245: requestHeaderService.delete(entity); L246: saveInfo(messages -> me...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      14.6K bytes
  9. admin_storage.jsp

    action="${contextPath}/admin/storage/delete/${f:h(data.id)}/"> L250: <button type="submit" L251: class="btn btn-outline-light" L252: name="delete" L253: ...
    github.com/codelibs/fess/src/main/webapp/WEB-IN...
    Thu May 26 01:48:41 UTC 2022
      20.4K bytes
  10. DataIndexHelper.java

    .prepareRefresh(index).execute().actionGet(); L253: final long numOfDeleted = searchEngineClient.deleteByQuery(index, queryBuilder); L254: logger.info("Deleted {} old docs.", numOfDeleted); L255: } catch (final Exception e) { L256: logger.error("Could not delete old docs at {}", dataConfig, e); L257: } L258: } L259: L260: public boolean isFinished() { L261: return finished; L262: } L263: L264: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      12K bytes
Back to top