- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 24 for related (0.05 sec)
-
EsAbstractBehavior.java
client.prepareClearScroll().addScrollId(scrollId).execute(ActionListener.wrap(() -> {})); L264: } L265: } L266: L267: @Override L268: protected Number doReadNextVal() { L269: final String msg = "This table is NOT related to sequence: " + asEsIndexType(); L270: throw new UnsupportedOperationException(msg); L271: } L272: L273: @Override L274: protected <RESULT extends Entity> ListResultBean<RESULT> createListResultBean(final ConditionBean cb, final List<RESULT>...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 26.4K bytes -
EsAbstractBehavior.java
client.prepareClearScroll().addScrollId(scrollId).execute(ActionListener.wrap(() -> {})); L264: } L265: } L266: L267: @Override L268: protected Number doReadNextVal() { L269: final String msg = "This table is NOT related to sequence: " + asEsIndexType(); L270: throw new UnsupportedOperationException(msg); L271: } L272: L273: @Override L274: protected <RESULT extends Entity> ListResultBean<RESULT> createListResultBean(final ConditionBean cb, final List<RESULT>...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 26.4K bytes -
EsAbstractBehavior.java
client.prepareClearScroll().addScrollId(scrollId).execute(ActionListener.wrap(() -> {})); L264: } L265: } L266: L267: @Override L268: protected Number doReadNextVal() { L269: final String msg = "This table is NOT related to sequence: " + asEsIndexType(); L270: throw new UnsupportedOperationException(msg); L271: } L272: L273: @Override L274: protected <RESULT extends Entity> ListResultBean<RESULT> createListResultBean(final ConditionBean cb, final List<RESULT>...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 26.4K bytes -
CrawlerPostcard.java
parameter comment. <br> L105: * Even if empty string, treated as empty plainly. So "IF pmb != null" is false if empty. L106: * @param hostname The parameter value of hostname. (NotNull) L107: */ L108: public void setHostname(String hostname) { L109: registerVariable("hostname", hostname); L110: } L111: L112: /** L113: * Set the value of jobname, used in parameter comment. <br> L114: * Even if empty string, treated as empty plainly. So "IF pmb != null" is false if empty....github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 10K bytes -
FessMultipartRequestHandler.java
L43: L44:import jakarta.servlet.ServletContext; L45:import jakarta.servlet.ServletException; L46:import jakarta.servlet.http.HttpServletRequest; L47: L48:/** L49: * The handler of multipart request (fileupload request). <br> L50: * This instance is created per one multipart request. L51: * @author modified by jflute (originated in Seasar) L52: */ L53:public class FessMultipartRequestHandler implements MultipartRequestHandler { L54: L55: // ========================================================...github.com/codelibs/fess/src/main/java/org/code...Wed Oct 23 13:27:21 UTC 2024 18.6K bytes -
ApiResult.java
public static class ApiUpdateResponse extends ApiResponse { L70: protected String id; L71: protected boolean created; L72: L73: public ApiUpdateResponse id(final String id) { L74: this.id = id; L75: return this; L76: } L77: L78: public ApiUpdateResponse created(final boolean created) { L79: this.created = created; L80: return this; L81: } L82: L83: @Override L84: public ApiResult result() { L85: ...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 12.5K bytes -
FileListIndexUpdateCallbackImpl.java
ntType)) { L111: // updated file L112: addDocument(localParams, dataMap); L113: } else if (getParamValue(localParams, "event.delete", "delete").equals(eventType)) { L114: // deleted file L115: deleteDocument(localParams, dataMap); L116: } else { L117: logger.warn("unknown event: {}, data: {}", eventType, dataMap); L118: } L119: } finally { L120: ...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 16.8K bytes -
SuggestCreator.java
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: } catch (final Exception e) { L177: ...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 10K bytes -
SearchLogService.java
logType)) { L488: return userInfoBhv.selectByPK(id).map(e -> { L489: final Map<String, String> params = new LinkedHashMap<>(); L490: params.put("User Info ID", e.getId()); L491: params.put("Created Time", FessFunctions.formatDate(e.getCreatedAt())); L492: params.put("Updated Time", FessFunctions.formatDate(e.getUpdatedAt())); L493: return params; L494: }).get(); L495: } L496: if (Search...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 28.4K bytes -
DataIndexHelper.java
dex(); L252: searchEngineClient.admin().indices().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:...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 12K bytes