- Sort Score
- Result 10 results
- Languages All
Results 201 - 210 of 507 for isobject (0.04 sec)
-
ScoreBooster.java
"painless"; L49: L50: protected String scriptCode = null; L51: L52: protected Function<Map<String, Object>, String[]> idFinder = params -> { L53: final FessConfig fessConfig = ComponentUtil.getFessConfig(); L54: final SearchEngineClient client = ComponentUtil.getSearchEngineClient(); L55: final String index = fessConfig.getIndexDocumentUpdateIndex(); L56: final Object url = params.get("url"); L57: if (url == null) { L58: return StringUtil.EMPTY_STRINGS;...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 5K bytes -
es_status.dfmail
L1:/* L2: [Crawler Notification] L3:*/ L4:subject: [FESS] Status Change: /*pmb.hostname:orElse('Unknown')*/ L5:>>> L6:--- Server Info --- L7:Cluster Name: /*pmb.clustername:orElse('Unknown')*/ L8:Host Name: /*pmb.hostname:orElse('Unknown')*/ L9: L10:--- Status --- L11:Cluster Status: /*pmb.clusterstatus:orElse('Unknown')*/...github.com/codelibs/fess/src/main/resources/mai...Thu Oct 27 02:03:02 UTC 2016 291 bytes -
BsUserInfoCQ.java
setCreatedAt_GreaterThan(LocalDateTime createdAt) { L284: setCreatedAt_GreaterThan(createdAt, null); L285: } L286: L287: public void setCreatedAt_GreaterThan(LocalDateTime createdAt, ConditionOptionCall<RangeQueryBuilder> opLambda) { L288: final Object _value = toRangeLocalDateTimeString(createdAt, "date_optional_time"); L289: RangeQueryBuilder builder = regRangeQ("createdAt", ConditionKey.CK_GREATER_THAN, _value); L290: if (opLambda != null) { L291: opLambda.callback(builder);...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 20.1K bytes -
StopwordsTests.java
{ L64: return DICT_TYPE; L65: } L66: L67: @Override L68: protected Map<String, Object> createTestParam(int id) { L69: final Map<String, Object> requestBody = new HashMap<>(); L70: final String keyProp = NAME_PREFIX + id; L71: requestBody.put(KEY_PROPERTY, keyProp); L72: return requestBody; L73: } L74: L75: @Override L76: protected Map<String, Object> getUpdateMap() { L77: fail(); // Unreachable L78: return null; L79: } L80: L81:...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2.3K bytes -
SystemInfoTests.java
ITEM_ENDPOINT_SUFFIX; L64: } L65: L66: @Override L67: protected Map<String, Object> createTestParam(int id) { L68: fail(); // Unreachable L69: return null; L70: } L71: L72: @Override L73: protected Map<String, Object> getUpdateMap() { L74: fail(); // Unreachable L75: return null; L76: } L77: L78: @Override L79: protected void testRead() { L80: final Map<String, Object> searchBody = new HashMap<>(); L81: String response = checkGetMethod(searchBody,...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2.8K bytes -
DocBoostMatcher.java
= rule.getBoostExpr(); L39: scriptType = ComponentUtil.getFessConfig().getCrawlerDefaultScript(); L40: } L41: L42: public boolean match(final Map<String, Object> map) { L43: L44: if (map == null || map.isEmpty() || matchExpression == null) { L45: return false; L46: } L47: L48: final Object value = ComponentUtil.getScriptEngineFactory().getScriptEngine(scriptType).evaluate(matchExpression, map); L49: if (value instanceof Boolean) { L50: ...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 2.8K bytes -
BsWebConfig.java
Source L126: // ====== L127: @Override L128: public Map<String, Object> toSource() { L129: Map<String, Object> sourceMap = new HashMap<>(); L130: if (available != null) { L131: addFieldToSource(sourceMap, "available", available); L132: } L133: if (boost != null) { L134: addFieldToSource(sourceMap,...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 14.1K bytes -
DocumentUtil.java
{ L36: } L37: L38: public static <T> T getValue(final Map<String, Object> doc, final String key, final Class<T> clazz, final T defaultValue) { L39: final T value = getValue(doc, key, clazz); L40: if (value == null) { L41: return defaultValue; L42: } L43: return value; L44: } L45: L46: @SuppressWarnings("unchecked") L47: public static <T> T getValue(final Map<String, Object> doc, final String key, final Class<T> clazz) { L48: if (doc == null...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 5K bytes -
SearchRenderData.java
License. L15: */ L16:package org.codelibs.fess.entity; L17: L18:import java.util.List; L19:import java.util.Map; L20: L21:import org.codelibs.fess.util.FacetResponse; L22: L23:public class SearchRenderData { L24: L25: protected List<Map<String, Object>> documentItems; L26: L27: protected FacetResponse facetResponse; L28: L29: protected String appendHighlightParams; L30: L31: protected String execTime; L32: L33: protected int pageSize; L34: L35: protected int currentPageNumber; L36:...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 6.1K bytes -
AdminLogAction.java
messages.addErrorsCouldNotFindLogFile(GLOBAL, filename), this::asIndexHtml); L84: return redirect(getClass()); // no-op L85: } L86: L87: public static List<Map<String, Object>> getLogFileItems() { L88: final SystemHelper systemHelper = ComponentUtil.getSystemHelper(); L89: final List<Map<String, Object>> logFileItems = new ArrayList<>(); L90: final String logFilePath = systemHelper.getLogFilePath(); L91: if (StringUtil.isNotBlank(logFilePath)) { L92: ...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 4.7K bytes