Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 445 for isobject (0.06 sec)

  1. AbstractDataStore.java

    paramMap.getAsString(SCRIPT_TYPE); L128: if (StringUtil.isBlank(value)) { L129: return Constants.DEFAULT_SCRIPT; L130: } L131: return value; L132: } L133: L134: protected Object convertValue(final String scriptType, final String template, final Map<String, Object> paramMap) { L135: if (StringUtil.isEmpty(template)) { L136: return StringUtil.EMPTY; L137: } L138: L139: if (paramMap.containsKey(template)) { L140: return par...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      6.3K bytes
  2. FessCrawlerThread.java

    url = urlQueue.getUrl(); L83: ResponseData responseData = null; L84: try { L85: final CrawlingConfig crawlingConfig = crawlingConfigHelper.get(crawlerContext.getSessionId()); L86: final Map<String, Object> dataMap = new HashMap<>(); L87: dataMap.put(fessConfig.getIndexFieldUrl(), url); L88: final List<String> roleTypeList = new ArrayList<>(); L89: stream(crawlingConfig.getPermissions()).of(stream -> stream.forEach(p...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      14.6K bytes
  3. BsDataConfig.java

    Source L99: // ====== L100: @Override L101: public Map<String, Object> toSource() { L102: Map<String, Object> sourceMap = new HashMap<>(); L103: if (available != null) { L104: addFieldToSource(sourceMap, "available", available); L105: } L106: if (boost != null) { L107: addFieldToSource(sourceMap,...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9.9K bytes
  4. BackupTests.java

    ITEM_ENDPOINT_SUFFIX; L63: } L64: L65: @Override L66: protected Map<String, Object> createTestParam(int id) { L67: fail(); // Unreachable L68: return null; L69: } L70: L71: @Override L72: protected Map<String, Object> getUpdateMap() { L73: fail(); // Unreachable L74: return null; L75: } L76: L77: @Override L78: protected void testRead() { L79: final Map<String, Object> searchBody = new HashMap<>(); L80: final String response = checkMeth...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      2.5K bytes
  5. CrawlerLogHelper.java

    ; L35: L36: @Override L37: public void log(final LogType key, final Object... objs) { L38: if (!ComponentUtil.available()) { L39: if (logger.isDebugEnabled()) { L40: logger.debug("container was destroyed."); L41: } L42: return; L43: } L44: super.log(key, objs); L45: } L46: L47: @Override L48: protected void processStartCrawling(final Object... objs) { L49: super.processStartCrawling(objs); L50: if (objs.length...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      7.3K bytes
  6. RenderDataUtil.java

    org.codelibs.core.beans.util.BeanUtil; L23:import org.dbflute.Entity; L24:import org.lastaflute.web.response.render.RenderData; L25: L26:public class RenderDataUtil { L27: L28: public static void register(final RenderData data, final String key, final Object value) { L29: if (value == null) { L30: return; L31: } L32: L33: if (value instanceof Entity) { L34: data.register(key, BeanUtil.copyBeanToNewMap(value)); L35: } else { L36: if (value instanceof...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      1.7K bytes
  7. DocMapTest.java

    L20:import java.util.List; L21:import java.util.Map; L22:import java.util.Set; L23: L24:import org.codelibs.fess.unit.UnitFessTestCase; L25: L26:public class DocMapTest extends UnitFessTestCase { L27: public void test_DocList() { L28: Map<String, Object> value = new LinkedHashMap<>(); L29: DocMap docMap = new DocMap(value); L30: assertTrue(docMap.isEmpty()); L31: value.clear(); L32: L33: List<String> keys = Arrays.asList("test_2", "test_0", "lang", "test_1"); L34: ...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      1.5K bytes
  8. DictTests.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.7K bytes
  9. fess_env_web.properties

    Does it send mock mail? (true: no send actually, logging only) L28:mail.send.mock = false L29: L30:# SMTP server settings for main: host:port L31:mail.smtp.server.main.host.and.port = localhost:25 L32: L33:# The prefix of subject to show test environment or not L34:mail.subject.test.prefix = L35: L36:# The common return path of all mail L37:mail.return.path = root@localhost L38: L39:# ======================================================================================== L40:# ...
    github.com/codelibs/fess/src/main/resources/fes...
    Mon Jan 29 07:34:32 UTC 2018
      2.2K bytes
  10. 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
Back to top