Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 445 for isobject (0.04 sec)

  1. ScriptEngine.java

    License for the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.script; L17: L18:import java.util.Map; L19: L20:public interface ScriptEngine { L21: Object evaluate(final String template, final Map<String, Object> paramMap); L22:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      793 bytes
  2. BsBoostDocumentRuleCQ.java

    setBoostExpr_GreaterThan(String boostExpr) { L334: setBoostExpr_GreaterThan(boostExpr, null); L335: } L336: L337: public void setBoostExpr_GreaterThan(String boostExpr, ConditionOptionCall<RangeQueryBuilder> opLambda) { L338: final Object _value = boostExpr; L339: RangeQueryBuilder builder = regRangeQ("boostExpr", ConditionKey.CK_GREATER_THAN, _value); L340: if (opLambda != null) { L341: opLambda.callback(builder); L342: } L343: } L344: L345: public...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      56.7K bytes
  3. BsElevateWord.java

    Source L81: // ====== L82: @Override L83: public Map<String, Object> toSource() { L84: Map<String, Object> sourceMap = new HashMap<>(); L85: if (boost != null) { L86: addFieldToSource(sourceMap, "boost", boost); L87: } L88: if (createdBy != null) { L89: addFieldToSource(sourceMap, "createdBy",...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      7.1K bytes
  4. BsClickLog.java

    Source L81: // ====== L82: @Override L83: public Map<String, Object> toSource() { L84: Map<String, Object> sourceMap = new HashMap<>(); L85: if (urlId != null) { L86: addFieldToSource(sourceMap, "urlId", urlId); L87: } L88: if (docId != null) { L89: addFieldToSource(sourceMap, "docId", docId);...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      7K bytes
  5. 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
  6. crawler.dfmail

    L1:/* L2: [Crawler Notification] L3: Crawler notification mail. L4:*/ L5:subject: [FESS] Crawler completed: /*pmb.hostname*/ L6:>>> L7:--- Server Info --- L8:Host Name: /*pmb.hostname:orElse('Unknown')*/ L9:Job Name: /*pmb.jobname:orElse('Unknown')*/ L10: L11:--- Web/FileSystem Crawler --- L12:Start Time: /*pmb.webFsCrawlStartTime:orElse('-')*/ L13:End Time: /*pmb.webFsCrawlEndTime:orElse('-')*/ L14:Exec Time: /*pmb.webFsCrawlExecTime:orElse('-')*/ ms L15: L16:--- Web/FileSystem Indexer --- L17:Exec...
    github.com/codelibs/fess/src/main/resources/mai...
    Wed Jan 15 22:05:20 UTC 2020
      1K bytes
  7. adminlte.min.js

    Licensed under MIT (https://github.com/ColorlibHQ/AdminLTE/blob/master/LICENSE) L5: */ L6:!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("jquery")):"function"==typeof define&&define.amd?define(["exports","jquery"],t):t((e="undefined"!=typeof globalThis?globalThis:e||self).adminlte={},e.jQuery)}(this,(function(e,t){"use strict";function a(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}var n=a(t),i="CardRefresh",o="lte.cardrefresh",l=n.default.fn[i...
    github.com/codelibs/fess/src/main/webapp/js/adm...
    Sat Oct 26 01:49:09 UTC 2024
      45.3K bytes
  8. DefaultSearcher.java

    pe()) L138: .trackTotalHits(params.getTrackTotalHits()).minScore(params.getMinScore()).build(); L139: }; L140: } L141: L142: protected Map<String, Object> parseSearchHit(final FessConfig fessConfig, final String hlPrefix, final SearchHit searchHit) { L143: final Map<String, Object> docMap = new HashMap<>(32); L144: if (searchHit.getSourceAsMap() == null) { L145: searchHit.getFields().forEach((key, value) -> { L146: docMap.put(key,...
    github.com/codelibs/fess/src/main/java/org/code...
    Mon Jul 22 06:56:21 UTC 2024
      10.2K bytes
  9. ProtwordsTests.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
  10. EsAbstractBehavior.java

    ; L541: if (str == null) { L542: return null; L543: } L544: return new String[] { str }; L545: } L546: L547: protected LocalDateTime toLocalDateTime(Object value) { L548: return DfTypeUtil.toLocalDateTime(value); L549: } L550: L551: protected Date toDate(Object value) { L552: return DfTypeUtil.toDate(value); L553: } L554: L555: protected SearchHits getSearchHits(final SearchResponse response) { L556: SearchHits hits = response.getHits();...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      26.4K bytes
Back to top