Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for setUrl_InScope (0.27 sec)

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

                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()) {
                    final List<String> newUrlList = new ArrayList<>(list.size());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/log/cbean/cq/bs/BsFavoriteLogCQ.java

            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setUrl_InScope(Collection<String> urlList) {
            setUrl_Terms(urlList, null);
        }
    
        public void setUrl_InScope(Collection<String> urlList, ConditionOptionCall<TermsQueryBuilder> opLambda) {
            setUrl_Terms(urlList, opLambda);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsFailureUrlCQ.java

            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setUrl_InScope(Collection<String> urlList) {
            setUrl_Terms(urlList, null);
        }
    
        public void setUrl_InScope(Collection<String> urlList, ConditionOptionCall<TermsQueryBuilder> opLambda) {
            setUrl_Terms(urlList, opLambda);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/log/cbean/cq/bs/BsClickLogCQ.java

            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setUrl_InScope(Collection<String> urlList) {
            setUrl_Terms(urlList, null);
        }
    
        public void setUrl_InScope(Collection<String> urlList, ConditionOptionCall<TermsQueryBuilder> opLambda) {
            setUrl_Terms(urlList, opLambda);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 63.5K bytes
    - Viewed (0)
Back to top