Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 36 for MatchAll (0.2 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 (1)
  8. 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)
  9. 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)
  10. pkg/proxy/nftables/proxier.go

    	tx.Add(&knftables.Set{
    		Name:    nodePortIPsSet,
    		Type:    ipvX_addr,
    		Comment: ptr.To("IPs that accept NodePort traffic"),
    	})
    	if proxier.nodePortAddresses.MatchAll() {
    		tx.Delete(&knftables.Set{
    			Name: nodePortIPsSet,
    		})
    	} else {
    		tx.Flush(&knftables.Set{
    			Name: nodePortIPsSet,
    		})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
Back to top