Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for cbP2 (0.02 sec)

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

            }
    
            return userInfoBhv.selectByPK(userCode).map(userInfo -> {
                final ListResultBean<FavoriteLog> list = favoriteLogBhv.selectList(cb2 -> {
                    cb2.query().setUserInfoId_Equal(userInfo.getId());
                    cb2.query().setUrl_InScope(urlList);
                    cb2.fetchFirst(fessConfig.getPageFavoriteLogMaxFetchSizeAsInteger());
                });
                if (!list.isEmpty()) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java

                for (final CrawlingInfo cs : crawlingInfoList) {
                    crawlingInfoIdList.add(cs.getId());
                }
                crawlingInfoParamBhv.queryDelete(cb2 -> cb2.query().setCrawlingInfoId_InScope(crawlingInfoIdList));
                crawlingInfoBhv.batchDelete(crawlingInfoList, op -> op.setRefreshPolicy(Constants.TRUE));
            }
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top