Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Shan (0.04 sec)

  1. RankFusionProcessor.java

    ger(); L79: final int windowSize = fessConfig.getRankFusionWindowSizeAsInteger(); L80: if (maxPageSize * 2 < windowSize) { L81: logger.warn("rank.fusion.window_size is lower than paging.search.page.max.size. " L82: + "The window size should be 2x more than the page size. ({} * 2 <= {})", maxPageSize, windowSize); L83: this.windowSize = 2 * maxPageSize; L84: } else { L85: this.windowSize = windowSize; L86: } L87: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      18.3K bytes
  2. SystemHelper.java

    ) { L626: logger.info("Cpu Load {}% is greater than {}%. {} waiting thread(s). {} thread is timed out.", current, percent, L627: waitingThreadNames.size(), threadName); L628: } L629: return false; L630: } L631: if (logger.isInfoEnabled()) { L632: logger.info("Cpu Load {}% is greater than {}%. {} waiting thread(s).", current, percent, waitingThreadNames.size());...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Oct 17 12:10:08 UTC 2024
      27.2K bytes
  3. FessMultipartRequestHandler.java

    pe); L151: checkBoundarySize(contentType, boundary); L152: return boundary; L153: } L154: }; L155: } L156: L157: // #for_now jflute to suppress CVE-2014-0050 even if commons-fileupload is older than safety version (2024/09/08) L158: // but if you use safety version, this extension is basically unneeded (or you can use it as double check) L159: protected void checkBoundarySize(final String contentType, final byte[] boundary) { L160: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Wed Oct 23 13:27:21 UTC 2024
      18.6K bytes
  4. SynonymFile.java

    L140: L141: final List<String> sides = split(line, "=>"); L142: if (sides.size() > 1) { // explicit mapping L143: if (sides.size() != 2) { L144: throw new DictionaryException("more than one explicit mapping specified on the same line"); L145: } L146: final List<String> inputStrings = split(sides.get(0), ","); L147: inputs = new String[inputStrings.size()]; L148: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      12.5K bytes
Back to top