Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 319 for Docstring (0.09 sec)

  1. SearchRenderData.java

    queryTime; L205: } L206: L207: public long getRequestedTime() { L208: return requestedTime; L209: } L210: L211: public String getQueryId() { L212: return queryId; L213: } L214: L215: @Override L216: public String toString() { L217: return "SearchRenderData [documentItems=" + documentItems + ", facetResponse=" + facetResponse + ", appendHighlightParams=" L218: + appendHighlightParams + ", execTime=" + execTime + ", pageSize=" + pageSize + ", currentPageNumber="...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      6.1K bytes
  2. FacetQueryView.java

    public Map<String, String> getQueryMap() { L75: return queryMap; L76: } L77: L78: public void addQuery(final String key, final String query) { L79: queryMap.put(key, query); L80: } L81: L82: @Override L83: public String toString() { L84: return "FacetQueryView [title=" + title + ", queryMap=" + queryMap + "]"; L85: } L86: L87:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      3K bytes
  3. UserInfo.java

    super.addFieldToSource(sourceMap, field, DateTimeFormatter.ISO_INSTANT.format(zdt)); L80: } else { L81: super.addFieldToSource(sourceMap, field, value); L82: } L83: } L84: L85: @Override L86: public String toString() { L87: return "UserInfo [createdAt=" + createdAt + ", updatedAt=" + updatedAt + ", docMeta=" + docMeta + "]"; L88: } L89: L90: @Override L91: public String getEventType() { L92: return "user"; L93: } L94:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      2.6K bytes
  4. WebConfigTest.java

    +http://fess.codelibs.org/bot.html)", initParamMap.get("userAgent")); L104: assertEquals(0, ((Authentication[]) initParamMap.get(HcHttpClient.AUTHENTICATIONS_PROPERTY)).length); L105: assertTrue(Boolean.valueOf(initParamMap.get("robotsTxtEnabled").toString()).booleanValue()); L106: } L107: L108: public void test_initializeClientFactoryWithConfigParameter() { L109: final Map<String, String> systemPropMap = new HashMap<>(); L110: FessProp.propMap.clear(); L111: FessConfig fessConfig...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu May 09 09:48:04 UTC 2024
      7.6K bytes
  5. CrawlingInfoParam.java

    essage(locale, "labels.crawling_info_" + getKey()); L63: if (message == null || message.startsWith("???")) { L64: return getKey(); L65: } L66: return message; L67: } L68: L69: @Override L70: public String toString() { L71: return "CrawlingInfoParam [crawlingInfo=" + crawlingInfo + ", crawlingInfoId=" + crawlingInfoId + ", createdTime=" + createdTime L72: + ", key=" + key + ", value=" + value + ", docMeta=" + docMeta + "]"; L73: } L74:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      2.4K bytes
  6. FileAuthentication.java

    } catch (final Exception e) { L57: logger.warn("File Config {} does not exist.", getFileConfigId(), e); L58: } L59: } L60: return fileConfig; L61: } L62: L63: @Override L64: public String toString() { L65: return "FileAuthentication [fileConfig=" + fileConfig + ", createdBy=" + createdBy + ", createdTime=" + createdTime L66: + ", fileConfigId=" + fileConfigId + ", hostname=" + hostname + ", parameters=" + parameters +...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      2.4K bytes
  7. GroupBhv.java

    protected <RESULT extends Group> RESULT createEntity(final Map<String, Object> source, final Class<? extends RESULT> entityType) { L46: try { L47: final RESULT result = entityType.newInstance(); L48: result.setName(DfTypeUtil.toString(source.get("name"))); L49: result.setAttributes(source.entrySet().stream().filter(e -> !"name".equals(e.getKey())) L50: .map(e -> new Pair<>(e.getKey(), (String) e.getValue())).collect(Collectors.toMap(Pair::getFirst,...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      2.2K bytes
  8. CrawlingConfig.java

    getTypePrefix() { L87: return typePrefix; L88: } L89: L90: String getConfigId(final String id) { L91: if (id == null) { L92: return null; L93: } L94: return typePrefix + id.toString(); L95: } L96: } L97: L98: public enum ConfigName { L99: CLIENT, XPATH, META, VALUE, SCRIPT, FIELD, CONFIG; L100: } L101: L102: public static class Param { L103: // client.* L104: public static class Client...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Oct 24 13:01:38 UTC 2024
      5.5K bytes
  9. FailureUrlService.java

    Helper(); L168: try (final StringWriter sw = new StringWriter(); final PrintWriter pw = new PrintWriter(sw)) { L169: t.printStackTrace(pw); L170: pw.flush(); L171: return systemHelper.abbreviateLongText(sw.toString()); L172: } catch (final IOException e) { L173: logger.warn("Failed to print the stack trace {}", t.getMessage(), e); L174: } L175: return StringUtil.EMPTY; L176: } L177:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Mon Jun 24 01:20:42 UTC 2024
      6.3K bytes
  10. GoAction.java

    Constants.UTF_8)); L122: } catch (final UnsupportedEncodingException e) { L123: // NOP L124: } L125: } L126: } L127: hash = buf.toString(); L128: } else { L129: hash = StringUtil.EMPTY; L130: } L131: } else { L132: hash = StringUtil.EMPTY; L133: } L134: L135: if (!isFileSystemPath(targetUrl)) { L136: return...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      6.9K bytes
Back to top