Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for sizi (0.03 sec)

  1. CharMappingFile.java

    PagingList<CharMappingItem> selectList(final int offset, final int size) { L83: if (mappingItemList == null) { L84: reload(null); L85: } L86: L87: if (offset >= mappingItemList.size() || offset < 0) { L88: return new PagingList<>(Collections.<CharMappingItem> emptyList(), offset, size, mappingItemList.size()); L89: } L90: L91: int toIndex = offset + size; L92: if (toIndex > mappingItemList.size()) { L93: toIndex = mappingItemList.size();...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      10.2K bytes
  2. FessConfig.java

    H_SIZE = "page.roletype.max.fetch.size"; L1283: L1284: /** The key of the configuration. e.g. 1000 */ L1285: String PAGE_USER_MAX_FETCH_SIZE = "page.user.max.fetch.size"; L1286: L1287: /** The key of the configuration. e.g. 1000 */ L1288: String PAGE_ROLE_MAX_FETCH_SIZE = "page.role.max.fetch.size"; L1289: L1290: /** The key of the configuration. e.g. 1000 */ L1291: String PAGE_GROUP_MAX_FETCH_SIZE = "page.group.max.fetch.size"; L1292: L1293: /** The key of the configuration....
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      468.5K bytes
  3. FessMultipartRequestHandler.java

    you can override the boundary limit size"); L182: br.addElement(" in " + getClass().getSimpleName() + "."); L183: br.addItem("Content Type"); L184: br.addElement(contentType); L185: br.addItem("Boundary Size"); L186: br.addElement(boundarySize); L187: br.addItem("Limit Size"); L188: br.addElement(limitSize); L189: final String msg = br.buildExceptionMessage(); L190: throw new Forced404NotFoundException(msg, UserMessages.empty()); // heavy...
    github.com/codelibs/fess/src/main/java/org/code...
    Wed Oct 23 13:27:21 UTC 2024
      18.6K bytes
  4. SearchBody.java

    onversion.ValidateTypeFailure; L20: L21:public class SearchBody extends ListForm { L22: L23: // `size` is an alias of `num`. L24: // `size` is prepared to be compatible with other Admin APIs L25: @ValidateTypeFailure L26: public Integer size; L27: L28: @Override L29: public void initialize() { L30: if (size != null) { L31: num = num == null || num < size ? size : num; L32: } L33: super.initialize(); L34: } L35: L36:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      1.2K bytes
  5. fess_config.properties

    L691:page.user.max.fetch.size=1000 L692:page.role.max.fetch.size=1000 L693:page.group.max.fetch.size=1000 L694:page.crawling.info.param.max.fetch.size=100 L695:page.crawling.info.max.fetch.size=1000 L696:page.data.config.max.fetch.size=100 L697:page.web.config.max.fetch.size=100 L698:page.file.config.max.fetch.size=100 L699:page.duplicate.host.max.fetch.size=1000 L700:page.failure.url.max.fetch.size=1000 L701:page.favorite.log.max.fetch.size=100 L702:page.file.auth.max.fetch.size=100 L703:page.web.auth.max.fetch.size=100...
    github.com/codelibs/fess/src/main/resources/fes...
    Tue Oct 01 14:13:38 UTC 2024
      30.9K bytes
  6. RankFusionProcessor.java

    final int pageSize, final int startPosition) { L277: final int size = docs.size(); L278: if (size == 0) { L279: return docs; // empty L280: } L281: int fromIndex = startPosition; L282: if (fromIndex >= size) { L283: fromIndex = size - 1; L284: } L285: int toIndex = startPosition + pageSize; L286: if (toIndex >= size) { L287: toIndex = size; L288: } L289: return docs.subList(fromIndex, toIndex);...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      18.3K bytes
  7. IndexingHelper.java

    logger.info("Sent {} docs (Doc:{process {}ms, send {}ms, size {}}, {})", docList.size(), docList.getProcessingTime(), L104: systemHelper.getCurrentTimeAsLong() - execTime, MemoryUtil.byteCountToDisplaySize(docList.getContentSize()), L105: MemoryUtil.getMemoryUsageLog()); L106: } else { L107: logger.info("Sent {} docs (Doc:{send {}ms}, {})", docList.size(), systemHelper.getCurrentTimeAsLong() - execTime, L108:...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      16.8K bytes
  8. SuggestHelper.java

    stream.forEach(role -> roles.add(role))); L207: if (fessConfig.isValidSearchLogPermissions(roles.toArray(new String[roles.size()]))) { L208: suggester.indexer().indexFromSearchWord(sb.toString(), fields.toArray(new String[fields.size()]), L209: tags.toArray(new String[tags.size()]), roles.toArray(new String[roles.size()]), 1, langs); L210: duplicateSessionMap.put(sessionId, requestedAt); L211: } L212: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      18.1K bytes
  9. ProtwordsFile.java

    PagingList<ProtwordsItem> selectList(final int offset, final int size) { L77: if (protwordsItemList == null) { L78: reload(null); L79: } L80: L81: if (offset >= protwordsItemList.size() || offset < 0) { L82: return new PagingList<>(Collections.<ProtwordsItem> emptyList(), offset, size, protwordsItemList.size()); L83: } L84: L85: int toIndex = offset + size; L86: if (toIndex > protwordsItemList.size()) { L87: toIndex = protwordsItemList.size();...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      9.6K bytes
  10. StopwordsFile.java

    PagingList<StopwordsItem> selectList(final int offset, final int size) { L77: if (stopwordsItemList == null) { L78: reload(null); L79: } L80: L81: if (offset >= stopwordsItemList.size() || offset < 0) { L82: return new PagingList<>(Collections.<StopwordsItem> emptyList(), offset, size, stopwordsItemList.size()); L83: } L84: L85: int toIndex = offset + size; L86: if (toIndex > stopwordsItemList.size()) { L87: toIndex = stopwordsItemList.size();...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      9.6K bytes
Back to top