- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 36 for maxsize (0.04 seconds)
-
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsKeyMatch.java
this.createdTime = value; } public Integer getMaxSize() { checkSpecifiedProperty("maxSize"); return maxSize; } public void setMaxSize(Integer value) { registerModifiedProperty("maxSize"); this.maxSize = value; } public String getQuery() { checkSpecifiedProperty("query"); return convertEmptyToNull(query);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 7.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/KeyMatchDbm.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 27 07:01:25 GMT 2025 - 11.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/ca/bs/BsKeyMatchCA.java
} public void setMaxSize_Avg(ConditionOptionCall<AvgAggregationBuilder> opLambda) { setMaxSize_Avg("maxSize", opLambda); } public void setMaxSize_Avg(String name, ConditionOptionCall<AvgAggregationBuilder> opLambda) { AvgAggregationBuilder builder = regAvgA(name, "maxSize"); if (opLambda != null) { opLambda.callback(builder); } }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 61.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsKeyMatchCQ.java
} public void setMaxSize_Equal(Integer maxSize) { setMaxSize_Term(maxSize, null); } public void setMaxSize_Equal(Integer maxSize, ConditionOptionCall<TermQueryBuilder> opLambda) { setMaxSize_Term(maxSize, opLambda); } public void setMaxSize_Term(Integer maxSize) { setMaxSize_Term(maxSize, null); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 68.6K bytes - Click Count (0) -
src/main/webapp/WEB-INF/view/admin/keymatch/admin_keymatch_edit.jsp
<label for="maxSize" class="col-sm-3 text-sm-right col-form-label"><la:message key="labels.key_match_size"/></label> <div class="form-inline col-sm-9"> <la:errors property="maxSize"/> <input type="number" name="maxSize" id="maxSize"Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 23 08:03:44 GMT 2026 - 6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/KeyMatch.java
asDocMeta().version(version); } @Override public String toString() { return "KeyMatch [boost=" + boost + ", createdBy=" + createdBy + ", createdTime=" + createdTime + ", maxSize=" + maxSize + ", query=" + query + ", term=" + term + ", updatedBy=" + updatedBy + ", updatedTime=" + updatedTime + ", docMeta=" + docMeta + "]"; }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 1.5K bytes - Click Count (0) -
src/main/webapp/WEB-INF/view/admin/keymatch/admin_keymatch_details.jsp
<tr> <th><la:message key="labels.key_match_size"/></th> <td>${f:h(maxSize)}<la:hidden property="maxSize"/></td> </tr> <tr> <th><la:message key="labels.key_match_boost"/></th>
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 23 08:03:44 GMT 2026 - 5.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/chat/ChatSessionManager.java
protected void enforceMaxSize() { final int maxSize = getMaxSessionSize(); synchronized (sessionCache) { if (sessionCache.size() <= maxSize) { return; } final int toRemove = sessionCache.size() - maxSize; logger.warn("Session cache reached maximum size. Removing oldest sessions. currentSize={}, maxSize={}, removing={}",
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 07 13:27:59 GMT 2026 - 13.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/keymatch/CreateForm.java
public String query; /** * The maximum number of results to return. */ @Required @Min(value = 0) @Max(value = 2147483647) @ValidateTypeFailure public Integer maxSize; /** * The boost score for matched results. */ @Required @ValidateTypeFailure public Float boost; /** * The virtual host for the key match. */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/pager/KeyMatchPager.java
/** The term of the key match. */ public String term; /** The query of the key match. */ public String query; /** The max size of the key match. */ public String maxSize; /** The boost of the key match. */ public String boost; /** The creator of the key match. */ public String createdBy; /** The created time of the key match. */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 6.1K bytes - Click Count (0)