Search Options

Results per page
Sort
Preferred Languages
Advance

Results 251 - 260 of 507 for isobject (0.04 sec)

  1. FessFunctions.java

    ComponentUtil.getDocumentHelper().encodeSimilarDocHash(input); L362: } L363: L364: public static String join(final Object input) { L365: String[] values = null; L366: if (input instanceof String[]) { L367: values = (String[]) input; L368: } else if (input instanceof List) { L369: values = ((List<?>) input).stream().filter(Objects::nonNull).map(Object::toString).toArray(n -> new String[n]); L370: } else if (input instanceof String) { L371: return...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      16.9K bytes
  2. PathMappingHelper.java

    ment); L166: } L167: final String template = replacement.substring(GROOVY_MATCHER.length()); L168: return (u, m) -> { L169: final Map<String, Object> paramMap = new HashMap<>(); L170: paramMap.put("url", u); L171: paramMap.put("matcher", m); L172: final Object value = L173: ComponentUtil.getScriptEngineFactory().getScriptEngine(Constants.DEFAULT_SCRIPT).evaluate(template, paramMap); L174: if (value == null)...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      7.6K bytes
  3. littleAdjustmentMap.dfprop

    L138: #; quoteColumnNameList = list:{} L139: # - - - - - - - - - -/ L140: L141: # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - L142: # o columnNullObjectMap: (NotRequired - Default map:{}) L143: # You can get a null object when the column is null. L144: # L145: #; columnNullObjectMap = map:{ L146: # ; providerPackage = $$packageBase$$.nogen.cache L147: # ; isGearedToSpecify = true L148: # ; columnMap = map:{ L149: # ; MEMBER_STATUS...
    github.com/codelibs/fess/dbflute_fess/dfprop/li...
    Sat Jul 25 06:04:16 UTC 2015
      8.8K bytes
  4. UserInfoHelper.java

    storeQueryId(final String queryId, final List<Map<String, Object>> documentItems) { L173: LaRequestUtil.getOptionalRequest().map(req -> req.getSession(false)).ifPresent(session -> { L174: final FessConfig fessConfig = ComponentUtil.getFessConfig(); L175: L176: final List<String> docIdList = new ArrayList<>(); L177: for (final Map<String, Object> map : documentItems) { L178: final Object docId = map.get(fessConfig.getIndexFieldDocId()); L179: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      8.5K bytes
  5. KeyMatchHelper.java

    logger.warn("Cannot load {}", keyMatch, e); L115: } L116: }); L117: this.keyMatchQueryMap = keyMatchQueryMap; L118: return keyMatchQueryMap.size(); L119: } L120: L121: protected List<Map<String, Object>> getDocumentList(final KeyMatch keyMatch) { L122: final SearchEngineClient searchEngineClient = ComponentUtil.getSearchEngineClient(); L123: final FessConfig fessConfig = ComponentUtil.getFessConfig(); L124: return searchEng...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      8.2K bytes
  6. LICENSE

    the Software without restriction, including without limitation the rights L8:to use, copy, modify, merge, publish, distribute, sublicense, and/or sell L9:copies of the Software, and to permit persons to whom the Software is L10:furnished to do so, subject to the following conditions: L11: L12:The above copyright notice and this permission notice shall be included in all L13:copies or substantial portions of the Software. L14: L15:THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS...
    github.com/kubernetes/kubernetes/LICENSES/third...
    Wed Feb 01 21:34:23 UTC 2023
      1.1K bytes
  7. LICENSE

    the Software without restriction, including without limitation the rights L8:to use, copy, modify, merge, publish, distribute, sublicense, and/or sell L9:copies of the Software, and to permit persons to whom the Software is L10:furnished to do so, subject to the following conditions: L11: L12:The above copyright notice and this permission notice shall be included in all L13:copies or substantial portions of the Software. L14: L15:THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS...
    github.com/kubernetes/kubernetes/LICENSES/third...
    Thu Jul 08 11:48:19 UTC 2021
      1.1K bytes
  8. NOTICE

    L1:runc L2: L3:Copyright 2012-2015 Docker, Inc. L4: L5:This product includes software developed at Docker, Inc. (http://www.docker.com). L6: L7:The following is courtesy of our legal counsel: L8: L9: L10:Use and transfer of Docker may be subject to certain restrictions by the L11:United States and other governments. L12:It is your responsibility to ensure that your use and/or transfer does not L13:violate applicable laws. L14: L15:For more information, please see http://www.bis.doc.gov L16: L17:See...
    github.com/kubernetes/kubernetes/LICENSES/third...
    Tue Oct 22 13:56:22 UTC 2024
      518 bytes
  9. BsCrawlingInfoBhv.java

    "crawling_info"; L65: } L66: L67: @Override L68: public CrawlingInfoDbm asDBMeta() { L69: return CrawlingInfoDbm.getInstance(); L70: } L71: L72: @Override L73: protected <RESULT extends CrawlingInfo> RESULT createEntity(Map<String, Object> source, Class<? extends RESULT> entityType) { L74: try { L75: final RESULT result = entityType.newInstance(); L76: result.setCreatedTime(DfTypeUtil.toLong(source.get("createdTime"))); L77: result.setExpire...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9.5K bytes
  10. BsElevateWordToLabelBhv.java

    L66: L67: @Override L68: public ElevateWordToLabelDbm asDBMeta() { L69: return ElevateWordToLabelDbm.getInstance(); L70: } L71: L72: @Override L73: protected <RESULT extends ElevateWordToLabel> RESULT createEntity(Map<String, Object> source, Class<? extends RESULT> entityType) { L74: try { L75: final RESULT result = entityType.newInstance(); L76: result.setElevateWordId(DfTypeUtil.toString(source.get("elevateWordId"))); L77: result.set...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9.7K bytes
Back to top