- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 408 for Vong (0.03 sec)
-
BsJobLogCQ.java
L185: regOBD("_id"); L186: return this; L187: } L188: L189: public void setEndTime_Equal(Long endTime) { L190: setEndTime_Term(endTime, null); L191: } L192: L193: public void setEndTime_Equal(Long endTime, ConditionOptionCall<TermQueryBuilder> opLambda) { L194: setEndTime_Term(endTime, opLambda); L195: } L196: L197: public void setEndTime_Term(Long endTime) { L198: setEndTime_Term(endTime, null); L199: } L200: L201: public void setEndTime_Term(Long...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 71.3K bytes -
BsGroupCQ.java
regOBD("_id"); L186: return this; L187: } L188: L189: public void setGidNumber_Equal(Long gidNumber) { L190: setGidNumber_Term(gidNumber, null); L191: } L192: L193: public void setGidNumber_Equal(Long gidNumber, ConditionOptionCall<TermQueryBuilder> opLambda) { L194: setGidNumber_Term(gidNumber, opLambda); L195: } L196: L197: public void setGidNumber_Term(Long gidNumber) { L198: setGidNumber_Term(gidNumber, null); L199: } L200: L201: public void...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 20K bytes -
BsBadWordCQ.java
regOBD("createdBy"); L410: return this; L411: } L412: L413: public void setCreatedTime_Equal(Long createdTime) { L414: setCreatedTime_Term(createdTime, null); L415: } L416: L417: public void setCreatedTime_Equal(Long createdTime, ConditionOptionCall<TermQueryBuilder> opLambda) { L418: setCreatedTime_Term(createdTime, opLambda); L419: } L420: L421: public void setCreatedTime_Term(Long createdTime) { L422: setCreatedTime_Term(createdTime, null); L423: } L424: L425:...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 58.8K bytes -
SearchRenderData.java
L32: L33: protected int pageSize; L34: L35: protected int currentPageNumber; L36: L37: protected long allRecordCount; L38: L39: protected String allRecordCountRelation; L40: L41: protected int allPageCount; L42: L43: protected boolean existNextPage; L44: L45: protected boolean existPrevPage; L46: L47: protected long currentStartRecordNumber; L48: L49: protected long currentEndRecordNumber; L50: L51: protected List<String> pageNumberList; L52: L53: protected boolean...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 6.1K bytes -
FessIntervalController.java
setDelayMillisAtNoUrlInQueue(final long delayMillisAtNoUrlInQueue) { L37: this.delayMillisAtNoUrlInQueue = delayMillisAtNoUrlInQueue; L38: } L39: L40: public long getDelayMillisBeforeProcessing() { L41: return delayMillisBeforeProcessing; L42: } L43: L44: public void setDelayMillisBeforeProcessing(final long delayMillisBeforeProcessing) { L45: this.delayMillisBeforeProcessing = delayMillisBeforeProcessing; L46: } L47: L48: public long getDelayMillisForWaitingNewUrl()...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2.4K bytes -
SearchResult.java
List<Map<String, Object>> documentList; L28: protected final long allRecordCount; L29: protected final String allRecordCountRelation; L30: protected final long queryTime; L31: protected final boolean partialResults; L32: protected final FacetResponse facetResponse; L33: L34: SearchResult(final List<Map<String, Object>> documentList, final long allRecordCount, final String allRecordCountRelation, L35: final long queryTime, final boolean partialResults, final FacetResponse...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 4.2K bytes -
EsAbstractEntity.java
============ L237: public class DocMeta implements Serializable { L238: L239: private static final long serialVersionUID = 1L; L240: L241: protected String id; L242: L243: protected Long version; L244: L245: protected Long seqNo; L246: L247: protected Long primaryTerm; L248: L249: private transient RequestOptionCall<IndexRequestBuilder> indexOption; L250: L251: private transient RequestOptionCall<...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 10.9K bytes -
MemoryUtil.java
private MemoryUtil() { L36: } L37: L38: public static String getMemoryUsageLog() { L39: final Runtime runtime = Runtime.getRuntime(); L40: final long freeBytes = runtime.freeMemory(); L41: final long maxBytes = runtime.maxMemory(); L42: final long totalBytes = runtime.totalMemory(); L43: final long usedBytes = totalBytes - freeBytes; L44: return "Mem:{used " + byteCountToDisplaySize(usedBytes) + ", heap " + byteCountToDisplaySize(totalBytes) + ", max "...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 4.6K bytes -
DocList.java
L21: L22:public class DocList extends ArrayList<Map<String, Object>> { L23: L24: private static final long serialVersionUID = 1L; L25: L26: private long contentSize = 0; L27: L28: private long processingTime = 0; L29: L30: @Override L31: public void clear() { L32: super.clear(); L33: contentSize = 0; L34: processingTime = 0; L35: } L36: L37: public long getContentSize() { L38: return contentSize; L39: } L40: L41: public void addContentSize(final...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 1.6K bytes -
BsSearchLog.java
protected Integer queryOffset; L60: L61: /** queryPageSize */ L62: protected Integer queryPageSize; L63: L64: /** queryTime */ L65: protected Long queryTime; L66: L67: /** referer */ L68: protected String referer; L69: L70: /** requestedAt */ L71: protected LocalDateTime requestedAt; L72: L73: /** responseTime */ L74: protected Long responseTime; L75: L76: /** roles */ L77: protected String[] roles; L78: L79: /** searchWord */ L80: protected String searchWord; L81:...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 12.2K bytes