Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for fetchFirst (0.13 sec)

  1. src/main/java/org/codelibs/fess/app/service/ScheduledJobService.java

            return scheduledJobList;
        }
    
        public List<ScheduledJob> getScheduledJobListAfter(final long updateTime) {
            return scheduledJobBhv.selectPage(cb -> {
                cb.fetchFirst(fessConfig.getPageScheduledJobMaxFetchSizeAsInteger());
                cb.query().setAvailable_Equal(Boolean.TRUE);
                cb.query().setUpdatedTime_GreaterThan(updateTime);
            });
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java

    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/SearchLogService.java

                });
            } else if (SearchLogPager.LOG_TYPE_CLICK_COUNT.equalsIgnoreCase(pager.logType)) {
                list = (EsPagingResultBean<?>) clickLogBhv.selectPage(cb -> {
                    cb.fetchFirst(0);
                    createClickLogCondition(pager, cb);
                    cb.aggregation().setUrl_Terms(SearchLogPager.LOG_TYPE_CLICK_COUNT, op -> {
                        op.size(pager.getPageSize());
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java

                    }
                    if (activeSessionId != null) {
                        cf.setSessionId_NotEqual(activeSessionId);
                    }
    
                });
    
                cb.fetchFirst(fessConfig.getPageCrawlingInfoMaxFetchSizeAsInteger());
                cb.specify().columnId();
            });
            if (!crawlingInfoList.isEmpty()) {
                final List<String> crawlingInfoIdList = new ArrayList<>();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractConditionBean.java

            // nothing
        }
    
        @Override
        public void disablePagingReSelect() {
            // nothing
        }
    
        @Override
        public PagingBean fetchFirst(int fetchSize) {
            getSqlClause().fetchFirst(fetchSize);
            return this;
        }
    
        @Override
        public PagingBean xfetchScope(int fetchStartIndex, int fetchSize) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

            deleteAllElevateWord(apply);
    
            final List<ElevateWord> list = ComponentUtil.getComponent(ElevateWordBhv.class).selectList(cb -> {
                cb.query().matchAll();
                cb.fetchFirst(ComponentUtil.getFessConfig().getPageElevateWordMaxFetchSizeAsInteger());
            });
    
            for (final ElevateWord elevateWord : list) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractConditionBean.java

            // nothing
        }
    
        @Override
        public void disablePagingReSelect() {
            // nothing
        }
    
        @Override
        public PagingBean fetchFirst(int fetchSize) {
            getSqlClause().fetchFirst(fetchSize);
            return this;
        }
    
        @Override
        public PagingBean xfetchScope(int fetchStartIndex, int fetchSize) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java

            return ComponentUtil.getComponent(RelatedQueryBhv.class).selectList(cb -> {
                cb.query().matchAll();
                cb.query().addOrderBy_Term_Asc();
                cb.fetchFirst(ComponentUtil.getFessConfig().getPageRelatedqueryMaxFetchSizeAsInteger());
            });
        }
    
        @Override
        public int load() {
            final Map<String, Map<String, String[]>> relatedQueryMap = new HashMap<>();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/service/RelatedContentService.java

        public List<RelatedContent> getAvailableRelatedContentList() {
            return relatedContentBhv.selectList(cb -> {
                cb.query().matchAll();
                cb.query().addOrderBy_Term_Asc();
                cb.fetchFirst(fessConfig.getPageDocboostMaxFetchSizeAsInteger());
            });
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractConditionBean.java

            // nothing
        }
    
        @Override
        public void disablePagingReSelect() {
            // nothing
        }
    
        @Override
        public PagingBean fetchFirst(int fetchSize) {
            getSqlClause().fetchFirst(fetchSize);
            return this;
        }
    
        @Override
        public PagingBean xfetchScope(int fetchStartIndex, int fetchSize) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 17.8K bytes
    - Viewed (0)
Back to top