Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 94 for getPageSize (0.06 sec)

  1. src/main/java/org/codelibs/fess/app/pager/RoleTypePager.java

            return existNextPage;
        }
    
        public void setExistNextPage(final boolean existNextPage) {
            this.existNextPage = existNextPage;
        }
    
        public int getPageSize() {
            if (pageSize <= 0) {
                pageSize = getDefaultPageSize();
            }
            return pageSize;
        }
    
        public void setPageSize(final int pageSize) {
            this.pageSize = pageSize;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/FileAuthenticationService.java

            final PagingResultBean<FileAuthentication> fileAuthenticationList = fileAuthenticationBhv.selectPage(cb -> {
                cb.paging(fileAuthenticationPager.getPageSize(), fileAuthenticationPager.getCurrentPageNumber());
                setupListCondition(cb, fileAuthenticationPager);
            });
    
            // update pager
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/RoleTypeService.java

        public List<RoleType> getRoleTypeList(final RoleTypePager roleTypePager) {
    
            final PagingResultBean<RoleType> roleTypeList = roleTypeBhv.selectPage(cb -> {
                cb.paging(roleTypePager.getPageSize(), roleTypePager.getCurrentPageNumber());
                setupListCondition(cb, roleTypePager);
            });
    
            // update pager
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/service/StopwordsService.java

        public List<StopwordsItem> getStopwordsList(final String dictId, final StopwordsPager stopwordsPager) {
            return getStopwordsFile(dictId).map(file -> {
                final int pageSize = stopwordsPager.getPageSize();
                final PagingList<StopwordsItem> stopwordsList =
                        file.selectList((stopwordsPager.getCurrentPageNumber() - 1) * pageSize, pageSize);
    
                // update pager
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/service/SynonymService.java

        public List<SynonymItem> getSynonymList(final String dictId, final SynonymPager synonymPager) {
            return getSynonymFile(dictId).map(file -> {
                final int pageSize = synonymPager.getPageSize();
                final PagingList<SynonymItem> synonymList = file.selectList((synonymPager.getCurrentPageNumber() - 1) * pageSize, pageSize);
    
                // update pager
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/pager/FileConfigPager.java

            return existNextPage;
        }
    
        public void setExistNextPage(final boolean existNextPage) {
            this.existNextPage = existNextPage;
        }
    
        public int getPageSize() {
            if (pageSize <= 0) {
                pageSize = getDefaultPageSize();
            }
            return pageSize;
        }
    
        public void setPageSize(final int pageSize) {
            this.pageSize = pageSize;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/service/LabelTypeService.java

        public List<LabelType> getLabelTypeList(final LabelTypePager labelTypePager) {
    
            final PagingResultBean<LabelType> labelTypeList = labelTypeBhv.selectPage(cb -> {
                cb.paging(labelTypePager.getPageSize(), labelTypePager.getCurrentPageNumber());
                setupListCondition(cb, labelTypePager);
            });
    
            // update pager
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

            if (logger.isDebugEnabled()) {
                logger.debug("Send {} to the searchers.", query);
            }
            final int pageSize = params.getPageSize();
            final int startPosition = params.getStartPosition();
            if (startPosition * 2 >= windowSize) {
                int offset = params.getOffset();
                if (offset < 0) {
                    offset = 0;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/service/AccessTokenService.java

        public List<AccessToken> getAccessTokenList(final AccessTokenPager accessTokenPager) {
    
            final PagingResultBean<AccessToken> accessTokenList = accessTokenBhv.selectPage(cb -> {
                cb.paging(accessTokenPager.getPageSize(), accessTokenPager.getCurrentPageNumber());
                setupListCondition(cb, accessTokenPager);
            });
    
            // update pager
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/pager/CrawlingInfoPager.java

        public boolean isExistNextPage() {
            return existNextPage;
        }
    
        public void setExistNextPage(final boolean existNextPage) {
            this.existNextPage = existNextPage;
        }
    
        public int getPageSize() {
            if (pageSize <= 0) {
                pageSize = getDefaultPageSize();
            }
            return pageSize;
        }
    
        public void setPageSize(final int pageSize) {
            this.pageSize = pageSize;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top