Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for selectList (0.14 sec)

  1. src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java

        public void test_getAllWebConfigList() {
            final WebConfigCB cb = new WebConfigCB();
            ComponentUtil.register(new WebConfigBhv() {
                @Override
                public ListResultBean<WebConfig> selectList(final CBCall<WebConfigCB> cbLambda) {
                    cbLambda.callback(cb);
                    final ListResultBean<WebConfig> list = new ListResultBean<>();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java

        public List<WebConfig> getAllWebConfigList(final boolean withLabelType, final boolean withRoleType, final boolean available,
                final List<String> idList) {
            return ComponentUtil.getComponent(WebConfigBhv.class).selectList(cb -> {
                if (available) {
                    cb.query().setAvailable_Equal(Constants.T);
                }
                if (idList != null) {
                    cb.query().setId_InScope(idList);
                }
    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. test-site/public/javascripts/suggestor.js

                        e.preventDefault();
                    }
                    suggestor.selectlist("up");
                } else if(e.keyCode == 40) {
                    if($boxElement.css("display") == "none") {
                        suggestor.suggest();
                    } else {
                        suggestor.selectlist("down");
                    }
                } else if(e.keyCode == 13) {
                    if(isFocusList) {
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 14.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java

        }
    
        public void deleteSessionIdsBefore(final String activeSessionId, final String name, final long date) {
            final List<CrawlingInfo> crawlingInfoList = crawlingInfoBhv.selectList(cb -> {
                cb.query().filtered((cq, cf) -> {
                    cq.setExpiredTime_LessEqual(date);
                    if (StringUtil.isNotBlank(name)) {
                        cf.setName_Equal(name);
                    }
    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/app/service/ElevateWordService.java

        }
    
        public OptionalEntity<ElevateWord> getElevateWord(final String id) {
            return elevateWordBhv.selectByPK(id).map(entity -> {
    
                final List<ElevateWordToLabel> wctltmList = elevateWordToLabelBhv.selectList(wctltmCb -> {
                    wctltmCb.query().setElevateWordId_Equal(entity.getId());
                    wctltmCb.fetchFirst(fessConfig.getPageLabeltypeMaxFetchSizeAsInteger());
                });
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

            return true;
        }
    
        public void storeAllElevateWords(final boolean apply) {
            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/webapp/js/suggestor.js

            if ($boxElement.css("display") !== "none") {
              e.preventDefault();
            }
            suggestor.selectlist("up");
          } else if (e.keyCode === 40) {
            if ($boxElement.css("display") === "none") {
              suggestor.suggest();
            } else {
              suggestor.selectlist("down");
            }
          } else if (e.keyCode === 13) {
            if (isFocusList) {
              suggestor.fixList();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Mar 30 05:45:24 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/bsbhv/BsThumbnailQueueBhv.java

        }
    
        @Override
        protected Class<ThumbnailQueueCB> typeOfHandlingConditionBean() {
            return ThumbnailQueueCB.class;
        }
    
        public ListResultBean<ThumbnailQueue> selectList(CBCall<ThumbnailQueueCB> cbLambda) {
            return facadeSelectList(createCB(cbLambda));
        }
    
        public PagingResultBean<ThumbnailQueue> selectPage(CBCall<ThumbnailQueueCB> cbLambda) {
            // #pending same?
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/bsbhv/BsFileAuthenticationBhv.java

        }
    
        @Override
        protected Class<FileAuthenticationCB> typeOfHandlingConditionBean() {
            return FileAuthenticationCB.class;
        }
    
        public ListResultBean<FileAuthentication> selectList(CBCall<FileAuthenticationCB> cbLambda) {
            return facadeSelectList(createCB(cbLambda));
        }
    
        public PagingResultBean<FileAuthentication> selectPage(CBCall<FileAuthenticationCB> cbLambda) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

                    return OptionalEntity.of(mappingItem);
                }
            }
            return OptionalEntity.empty();
        }
    
        @Override
        public synchronized PagingList<CharMappingItem> selectList(final int offset, final int size) {
            if (mappingItemList == null) {
                reload(null);
            }
    
            if (offset >= mappingItemList.size() || offset < 0) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top