Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 443 for Paging (0.1 sec)

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

        protected FessConfig fessConfig;
    
        public List<RoleType> getRoleTypeList(final RoleTypePager roleTypePager) {
    
            final PagingResultBean<RoleType> roleTypeList = roleTypeBhv.selectPage(cb -> {
                cb.paging(roleTypePager.getPageSize(), roleTypePager.getCurrentPageNumber());
                setupListCondition(cb, roleTypePager);
            });
    
            // update pager
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractConditionBean.java

    import org.dbflute.cbean.dream.SpecifiedColumn;
    import org.dbflute.cbean.exception.ConditionBeanExceptionThrower;
    import org.dbflute.cbean.ordering.OrderByBean;
    import org.dbflute.cbean.paging.PagingBean;
    import org.dbflute.cbean.paging.PagingInvoker;
    import org.dbflute.cbean.scoping.AndQuery;
    import org.dbflute.cbean.scoping.ModeQuery;
    import org.dbflute.cbean.scoping.OrQuery;
    import org.dbflute.cbean.scoping.UnionQuery;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/LabelTypeService.java

        protected FessConfig fessConfig;
    
        public List<LabelType> getLabelTypeList(final LabelTypePager labelTypePager) {
    
            final PagingResultBean<LabelType> labelTypeList = labelTypeBhv.selectPage(cb -> {
                cb.paging(labelTypePager.getPageSize(), labelTypePager.getCurrentPageNumber());
                setupListCondition(cb, labelTypePager);
            });
    
            // update pager
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/etcd3/errors.go

    		"modified, or deleted between the time the first chunk was returned " +
    		"and now may show up in the list."
    )
    
    func interpretListError(err error, paging bool, continueKey, keyPrefix string) error {
    	switch {
    	case err == etcdrpc.ErrCompacted:
    		if paging {
    			return handleCompactedErrorForPaging(continueKey, keyPrefix)
    		}
    		return errors.NewResourceExpired(expired)
    	}
    	return err
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 11 15:59:41 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractConditionBean.java

    import org.dbflute.cbean.dream.SpecifiedColumn;
    import org.dbflute.cbean.exception.ConditionBeanExceptionThrower;
    import org.dbflute.cbean.ordering.OrderByBean;
    import org.dbflute.cbean.paging.PagingBean;
    import org.dbflute.cbean.paging.PagingInvoker;
    import org.dbflute.cbean.scoping.AndQuery;
    import org.dbflute.cbean.scoping.ModeQuery;
    import org.dbflute.cbean.scoping.OrQuery;
    import org.dbflute.cbean.scoping.UnionQuery;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractConditionBean.java

    import org.dbflute.cbean.dream.SpecifiedColumn;
    import org.dbflute.cbean.exception.ConditionBeanExceptionThrower;
    import org.dbflute.cbean.ordering.OrderByBean;
    import org.dbflute.cbean.paging.PagingBean;
    import org.dbflute.cbean.paging.PagingInvoker;
    import org.dbflute.cbean.scoping.AndQuery;
    import org.dbflute.cbean.scoping.ModeQuery;
    import org.dbflute.cbean.scoping.OrQuery;
    import org.dbflute.cbean.scoping.UnionQuery;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/service/GroupService.java

        @Resource
        protected UserBhv userBhv;
    
        public List<Group> getGroupList(final GroupPager groupPager) {
    
            final PagingResultBean<Group> groupList = groupBhv.selectPage(cb -> {
                cb.paging(groupPager.getPageSize(), groupPager.getCurrentPageNumber());
                setupListCondition(cb, groupPager);
            });
    
            // update pager
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/RoleService.java

        @Resource
        protected UserBhv userBhv;
    
        public List<Role> getRoleList(final RolePager rolePager) {
    
            final PagingResultBean<Role> roleList = roleBhv.selectPage(cb -> {
                cb.paging(rolePager.getPageSize(), rolePager.getCurrentPageNumber());
                setupListCondition(cb, rolePager);
            });
    
            // update pager
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/service/FileAuthenticationService.java

            final PagingResultBean<FileAuthentication> fileAuthenticationList = fileAuthenticationBhv.selectPage(cb -> {
                cb.paging(fileAuthenticationPager.getPageSize(), fileAuthenticationPager.getCurrentPageNumber());
                setupListCondition(cb, fileAuthenticationPager);
            });
    
            // update pager
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. src/main/resources/fess_config.properties

    #                                                     Paging
    #                                                     ------
    # The size of one page for paging
    paging.page.size = 25
    
    # The size of page range for paging
    paging.page.range.size = 5
    
    # The option 'fillLimit' of page range for paging
    paging.page.range.fill.limit = true
    
    # fetch page size
    page.docboost.max.fetch.size=1000
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 30.6K bytes
    - Viewed (0)
Back to top