Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 319 for Docstring (0.07 sec)

  1. UserBhv.java

    createEntity(final Map<String, Object> source, final Class<? extends RESULT> entityType) { L52: try { L53: final RESULT result = entityType.newInstance(); L54: result.setName(DfTypeUtil.toString(source.get(NAME))); L55: result.setPassword(DfTypeUtil.toString(source.get(PASSWORD))); L56: result.setGroups(toStringArray(source.get(GROUPS))); L57: result.setRoles(toStringArray(source.get(ROLES))); L58: result.setAttributes(source.entr...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      2.7K bytes
  2. EsAbstractEntity.java

    return super.hashCode(); L215: } L216: L217: @Override L218: public String toString() { L219: return getClass().getSimpleName() + ":" + doBuildColumnString(", ") + "@" + Integer.toHexString(hashCode()); L220: } L221: L222: protected abstract String doBuildColumnString(String dm); L223: L224: @Override L225: public String toStringWithRelation() { // #pending L226: return toString(); L227: } L228: L229: @Override L230: public String buildDisplayString(String...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      10.9K bytes
  3. JobLogDbm.java

    ((JobLog) et).getScriptData(), (et, vl) -> ((JobLog) et).setScriptData(DfTypeUtil.toString(vl)), L88: "scriptData"); L89: setupEpg(_epgMap, et -> ((JobLog) et).getScriptResult(), (et, vl) -> ((JobLog) et).setScriptResult(DfTypeUtil.toString(vl)), L90: "scriptResult"); L91: setupEpg(_epgMap, et -> ((JobLog) et).getScriptType(), (et, vl) -> ((JobLog) et).setScriptType(DfTypeUtil.toString(vl)), L92: "scriptType"); L93: setupEpg(_epgMap, et ->...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      11K bytes
  4. PathMappingDbm.java

    et).getCreatedBy(), (et, vl) -> ((PathMapping) et).setCreatedBy(DfTypeUtil.toString(vl)), L83: "createdBy"); L84: setupEpg(_epgMap, et -> ((PathMapping) et).getCreatedTime(), (et, vl) -> ((PathMapping) et).setCreatedTime(DfTypeUtil.toLong(vl)), L85: "createdTime"); L86: setupEpg(_epgMap, et -> ((PathMapping) et).getProcessType(), (et, vl) -> ((PathMapping) et).setProcessType(DfTypeUtil.toString(vl)), L87: "processType"); L88: setupEpg(_epgMap,...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      11.3K bytes
  5. RelatedQuery.java

    setVersionNo(final Long version) { L42: asDocMeta().version(version); L43: } L44: L45: @Override L46: public String toString() { L47: return "RelatedQuery [createdBy=" + createdBy + ", createdTime=" + createdTime + ", updatedBy=" + updatedBy + ", updatedTime=" L48: + updatedTime + ", term=" + term + ", queries=" + Arrays.toString(queries) + "]"; L49: } L50:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      1.5K bytes
  6. DocList.java

    public void addProcessingTime(final long processingTime) { L50: this.processingTime += processingTime; L51: } L52: L53: @Override L54: public String toString() { L55: return "DocList [contentSize=" + contentSize + ", processingTime=" + processingTime + ", elementData=" L56: + Arrays.toString(toArray(new Map[size()])) + "]"; L57: } L58: L59:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      1.6K bytes
  7. BsBoostDocumentRuleBhv.java

    result = entityType.newInstance(); L76: result.setBoostExpr(DfTypeUtil.toString(source.get("boostExpr"))); L77: result.setCreatedBy(DfTypeUtil.toString(source.get("createdBy"))); L78: result.setCreatedTime(DfTypeUtil.toLong(source.get("createdTime"))); L79: result.setSortOrder(DfTypeUtil.toInteger(source.get("sortOrder"))); L80: result.setUpdatedBy(DfTypeUtil.toString(source.get("updatedBy"))); L81: result.setUpdatedTime(DfTypeUtil.to...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      10.1K bytes
  8. FileConfig.java

    configParameterMap; L50: L51: protected CrawlerClientFactory crawlerClientFactory = null; L52: L53: public FileConfig() { L54: setBoost(1.0f); L55: } L56: L57: @Override L58: public String getDocumentBoost() { L59: return getBoost().toString(); L60: } L61: L62: @Override L63: public String getIndexingTarget(final String input) { L64: if (includedDocPathPatterns == null || excludedDocPathPatterns == null) { L65: initDocPathPattern(); L66: } L67: L68:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9.8K bytes
  9. SearchLogBhv.java

    L52: L53: @Override L54: protected LocalDateTime toLocalDateTime(final Object value) { L55: if (value != null) { L56: try { L57: final Instant instant = Instant.from(DateTimeFormatter.ISO_INSTANT.parse(value.toString())); L58: return LocalDateTime.ofInstant(instant, ZoneId.systemDefault()); L59: } catch (final DateTimeParseException e) { L60: logger.debug("Invalid date format: {}", value, e); L61: } L62: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      4.8K bytes
  10. FessApiFailureHook.java

    pw.flush(); L112: sb.append(" [ ").append(sw.toString()).append(" ]"); L113: } catch (final IOException ignore) {} L114: return sb.toString(); L115: }; L116: L117: if (Constants.TRUE.equalsIgnoreCase(ComponentUtil.getFessConfig().getApiJsonResponseExceptionIncluded())) { L118: return stacktraceString.get(); L119: } L120: L121: final String errorCode = UUID.randomUUID().toString(); L122: if (logger.isDebugEnabled()) { L123:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      5.8K bytes
Back to top