Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 40 for MatchAll (0.34 sec)

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

            cb.query().addOrderBy_Name_Asc();
    
            // search
    
        }
    
        public List<Role> getAvailableRoleList() {
            return roleBhv.selectList(cb -> {
                cb.query().matchAll();
                cb.query().addOrderBy_Name_Asc();
                cb.paging(fessConfig.getPageRoleMaxFetchSizeAsInteger(), 1);
            });
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractConditionQuery.java

            regQ(queryStringQuery);
            if (opLambda != null) {
                opLambda.callback(queryStringQuery);
            }
        }
    
        public void matchAll() {
            doMatchAll(null);
        }
    
        public void matchAll(ConditionOptionCall<MatchAllQueryBuilder> opLambda) {
            assertObjectNotNull("opLambda", opLambda);
            doMatchAll(opLambda);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/UserService.java

            cb.query().addOrderBy_Name_Asc();
    
            // search
    
        }
    
        public List<User> getAvailableUserList() {
            return userBhv.selectList(cb -> {
                cb.query().matchAll();
                cb.fetchFirst(fessConfig.getPageUserMaxFetchSizeAsInteger());
            });
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/RelatedContentHelper.java

            }
            load();
        }
    
        public List<RelatedContent> getAvailableRelatedContentList() {
            return ComponentUtil.getComponent(RelatedContentBhv.class).selectList(cb -> {
                cb.query().matchAll();
                cb.query().addOrderBy_SortOrder_Asc();
                cb.query().addOrderBy_Term_Asc();
                cb.fetchFirst(ComponentUtil.getFessConfig().getPageRelatedcontentMaxFetchSizeAsInteger());
            });
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/service/BadWordService.java

            try {
                final List<String> list = new ArrayList<>();
                list.add("BadWord");
                csvWriter.writeValues(list);
    
                badWordBhv.selectCursor(cb -> cb.query().matchAll(), new EntityRowHandler<BadWord>() {
                    @Override
                    public void handle(final BadWord entity) {
                        final List<String> list = new ArrayList<>();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractConditionQuery.java

            regQ(queryStringQuery);
            if (opLambda != null) {
                opLambda.callback(queryStringQuery);
            }
        }
    
        public void matchAll() {
            doMatchAll(null);
        }
    
        public void matchAll(ConditionOptionCall<MatchAllQueryBuilder> opLambda) {
            assertObjectNotNull("opLambda", opLambda);
            doMatchAll(opLambda);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractConditionQuery.java

            regQ(queryStringQuery);
            if (opLambda != null) {
                opLambda.callback(queryStringQuery);
            }
        }
    
        public void matchAll() {
            doMatchAll(null);
        }
    
        public void matchAll(ConditionOptionCall<MatchAllQueryBuilder> opLambda) {
            assertObjectNotNull("opLambda", opLambda);
            doMatchAll(opLambda);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. pkg/proxy/healthcheck/service_health.go

    	// It doesn't matter whether we listen on "0.0.0.0", "::", or ""; go
    	// treats them all the same.
    	nodeIPs := []net.IP{net.IPv4zero}
    
    	if !nodePortAddresses.MatchAll() {
    		ips, err := nodePortAddresses.GetNodeIPs(proxyutil.RealNetwork{})
    		if err == nil {
    			nodeIPs = ips
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 30 09:25:48 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

            }
        }
    
        protected List<BoostDocumentRule> getAvailableBoostDocumentRuleList() {
            return ComponentUtil.getComponent(BoostDocumentRuleBhv.class).selectList(cb -> {
                cb.query().matchAll();
                cb.query().addOrderBy_SortOrder_Asc();
                cb.fetchFirst(ComponentUtil.getFessConfig().getPageDocboostMaxFetchSizeAsInteger());
            });
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/service/ElevateWordService.java

                list.add("Permissions");
                list.add("Labels");
                list.add("Boost");
                csvWriter.writeValues(list);
    
                elevateWordBhv.selectCursor(cb -> cb.query().matchAll(), new EntityRowHandler<ElevateWord>() {
                    @Override
                    public void handle(final ElevateWord entity) {
                        final List<String> list = new ArrayList<>();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top