Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for Long (0.02 sec)

  1. IndexingHelper.java

    protected int defaultRowSize = 100; L46: L47: protected long requestInterval = 500; L48: L49: public void sendDocuments(final SearchEngineClient searchEngineClient, final DocList docList) { L50: if (docList.isEmpty()) { L51: return; L52: } L53: final FessConfig fessConfig = ComponentUtil.getFessConfig(); L54: final SystemHelper systemHelper = ComponentUtil.getSystemHelper(); L55: final long execTime = systemHelper.getCurrentTimeAsLong(); L56: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      16.8K bytes
  2. IndexUpdater.java

    favoriteLogBhv; L86: L87: @Resource L88: protected SystemHelper systemHelper; L89: L90: @Resource L91: protected IndexingHelper indexingHelper; L92: L93: protected boolean finishCrawling = false; L94: L95: protected long executeTime; L96: L97: protected long documentSize; L98: L99: protected int maxIndexerErrorCount = 0; L100: L101: protected int maxErrorCount = 2; L102: L103: protected List<String> finishedSessionIdList = new ArrayList<>(); L104: L105: private final List<DocBoostMatcher>...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      24.2K bytes
  3. SuggestHelper.java

    ry(ComponentUtil.getSearchEngineClient(), suggester.settings(), suggester.getIndex(), boolQueryBuilder); L271: } L272: L273: public long getAllWordsNum() { L274: return suggester.getAllWordsNum(); L275: } L276: L277: public long getDocumentWordsNum() { L278: return suggester.getDocumentWordsNum(); L279: } L280: L281: public long getQueryWordsNum() { L282: return suggester.getQueryWordsNum(); L283: } L284: L285: public boolean deleteAllWords() { L286: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      18.1K bytes
  4. ApiResult.java

    protected int pageNumber; L159: protected long recordCount; L160: protected String recordCountRelation; L161: protected int pageCount; L162: protected boolean nextPage; L163: protected boolean prevPage; L164: protected long startRecordNumber; L165: protected long endRecordNumber; L166: protected List<String> pageNumbers; L167: protected boolean partial; L168: protected long queryTime; L169: protected String searchQuery;...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      12.5K bytes
  5. WebFsIndexHelper.java

    WebFsIndexHelper { L49: L50: private static final Logger logger = LogManager.getLogger(WebFsIndexHelper.class); L51: L52: private static final String DISABLE_URL_ENCODE = "#DISABLE_URL_ENCODE"; L53: L54: protected long maxAccessCount = Long.MAX_VALUE; L55: L56: protected long crawlingExecutionInterval = Constants.DEFAULT_CRAWLING_EXECUTION_INTERVAL; L57: L58: protected int indexUpdaterPriority = Thread.MAX_PRIORITY; L59: L60: protected int crawlerPriority = Thread.NORM_PRIORITY; L61:...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      22.6K bytes
  6. AdminBackupAction.java

    toString(), e.getValue(), tempBuf); L433: return tempBuf.toString(); L434: }).collect(Collectors.joining(",")); L435: buf.append(json); L436: buf.append('}'); L437: } else if (value instanceof Long || value instanceof Integer) { L438: buf.append(((Number) value).longValue()); L439: } else if (value instanceof Number) { L440: buf.append(((Number) value).doubleValue()); L441: } else { L442: buf.ap...
    github.com/codelibs/fess/src/main/java/org/code...
    Sat Oct 12 01:54:46 UTC 2024
      28.5K bytes
  7. IndexingHelperTest.java

    IndexingHelperTest extends UnitFessTestCase { L48: private IndexingHelper indexingHelper; L49: L50: private long documentSizeByQuery = 0L; L51: L52: @Override L53: public void setUp() throws Exception { L54: super.setUp(); L55: ComponentUtil.register(new SystemHelper(), "systemHelper"); L56: indexingHelper = new IndexingHelper() { L57: @Override L58: protected long getDocumentSizeByQuery(final SearchEngineClient searchEngineClient, final QueryBuilder queryBuilder,...
    github.com/codelibs/fess/src/test/java/org/code...
    Wed Jul 24 08:54:24 UTC 2024
      23.4K bytes
  8. FessMultipartRequestHandler.java

    limitSize) { L174: final ExceptionMessageBuilder br = new ExceptionMessageBuilder(); L175: br.addNotice("Too long boundary size so treats it as 404."); L176: br.addItem("Advice"); L177: br.addElement("Against for CVE-2014-0050 (JVN14876762)."); L178: br.addElement("Boundary size is limited by Framework."); L179: br.addElement("Too long boundary is treated as 404 because it's thought of as attack."); L180: br.addElement(""); L181: br.addElement("While,...
    github.com/codelibs/fess/src/main/java/org/code...
    Wed Oct 23 13:27:21 UTC 2024
      18.6K bytes
  9. RoleQueryHelper.java

    } L250: L251: if (valueSeparator.length() > 0) { L252: final String[] values = rolesStr.split(valueSeparator); L253: if (maxAge > 0) { L254: try { L255: final long time = getCurrentTime() / 1000 - Long.parseLong(values[0]); L256: if (time > maxAge || time < 0) { L257: if (logger.isDebugEnabled()) { L258: logger.debug("role info is expired: {} > {}", time, maxAge);...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Jul 25 01:48:41 UTC 2024
      11.5K bytes
  10. ThumbnailManager.java

    protected String imageExtention = "png"; L79: L80: protected int splitSize = 10; L81: L82: protected int thumbnailTaskQueueSize = 10000; L83: L84: protected int thumbnailTaskBulkSize = 100; L85: L86: protected long thumbnailTaskQueueTimeout = 10 * 1000L; L87: L88: protected long noImageExpired = 24 * 60 * 60 * 1000L; // 24 hours L89: L90: protected int splitHashSize = 10; L91: L92: @PostConstruct L93: public void init() { L94: if (logger.isDebugEnabled()) { L95: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      21.5K bytes
Back to top