Search Options

Results per page
Sort
Preferred Languages
Advance

Results 241 - 250 of 445 for isobject (0.06 sec)

  1. fe.tld

    L257: L258: <function> L259: <description>Concatenate strings.</description> L260: <name>join</name> L261: <function-class>org.codelibs.fess.taglib.FessFunctions</function-class> L262: <function-signature>java.lang.String join(java.lang.Object)</function-signature> L263: <example>${fe:join(values)}</example> L264: </function> L265: L266: <function> L267: <description> L268: Returns a string resulting from replacing in an input string all occurrences L269: of a "before"...
    github.com/codelibs/fess/src/main/webapp/WEB-IN...
    Sat Dec 23 06:18:48 UTC 2023
      10K bytes
  2. BsFileConfig.java

    Source L123: // ====== L124: @Override L125: public Map<String, Object> toSource() { L126: Map<String, Object> sourceMap = new HashMap<>(); L127: if (available != null) { L128: addFieldToSource(sourceMap, "available", available); L129: } L130: if (boost != null) { L131: addFieldToSource(sourceMap,...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      13.7K bytes
  3. SearchLogEvent.java

    permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.entity; L17: L18:import java.util.Map; L19: L20:public interface SearchLogEvent { L21: String getId(); L22: L23: Long getVersionNo(); L24: L25: Map<String, Object> toSource(); L26: L27: String getEventType(); L28:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      826 bytes
  4. ViewHelperTest.java

    assertUrlLink(null, "#not-found-docId"); L174: assertUrlLink("", "#not-found-docId"); L175: assertUrlLink(" ", "#not-found-docId"); L176: } L177: L178: private void assertUrlLink(String url, String expected) { L179: Map<String, Object> doc = new HashMap<>(); L180: doc.put("doc_id", "docId"); L181: doc.put("url", url); L182: assertEquals(expected, viewHelper.getUrlLink(doc)); L183: } L184: L185: public void test_replaceHighlightQueries() { L186: ...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      15.1K bytes
  5. BsBoostDocumentRuleBhv.java

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

    "related_content"; L65: } L66: L67: @Override L68: public RelatedContentDbm asDBMeta() { L69: return RelatedContentDbm.getInstance(); L70: } L71: L72: @Override L73: protected <RESULT extends RelatedContent> RESULT createEntity(Map<String, Object> source, Class<? extends RESULT> entityType) { L74: try { L75: final RESULT result = entityType.newInstance(); L76: result.setContent(DfTypeUtil.toString(source.get("content"))); L77: result.setCreatedBy(Df...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9.9K bytes
  7. jsconf.js

    L4: * @version 2.3.77 L5: * @website http://formvalidator.net/ L6: * @author Victor Jonsson, http://victorjonsson.se L7: * @license MIT L8: */ L9:!function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){"use strict";a.formUtils.registerLoadedModule("jsconf"),a.setupValidation=function(b){var c=a(b.form||"form");a.each(b.validate||b.vali...
    github.com/codelibs/fess/src/main/webapp/js/adm...
    Mon Jan 01 05:12:47 UTC 2018
      867 bytes
  8. BsBadWordBhv.java

    return "bad_word"; L65: } L66: L67: @Override L68: public BadWordDbm asDBMeta() { L69: return BadWordDbm.getInstance(); L70: } L71: L72: @Override L73: protected <RESULT extends BadWord> RESULT createEntity(Map<String, Object> source, Class<? extends RESULT> entityType) { L74: try { L75: final RESULT result = entityType.newInstance(); L76: result.setCreatedBy(DfTypeUtil.toString(source.get("createdBy"))); L77: result.setCreatedT...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9.4K bytes
  9. BsCrawlingInfoParamBhv.java

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

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