Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 131 for cb (0.04 sec)

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

            final PagingResultBean<FileConfig> fileConfigList = fileConfigBhv.selectPage(cb -> {
                cb.paging(fileConfigPager.getPageSize(), fileConfigPager.getCurrentPageNumber());
                setupListCondition(cb, fileConfigPager);
            });
    
            // update pager
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. tests/callbacks_test.go

    	createCallback.Before("*").Register("c1", c1)
    	if cb := createCallback.Get("c1"); reflect.DeepEqual(cb, c1) {
    		t.Errorf("callbacks tests failed, got: %p, want: %p", cb, c1)
    	}
    
    	createCallback.Remove("c1")
    	if cb := createCallback.Get("c2"); cb != nil {
    		t.Errorf("callbacks test failed. got: %p, want: nil", cb)
    	}
    }
    
    func TestCallbacksRemove(t *testing.T) {
    	db, _ := gorm.Open(nil, nil)
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Tue Mar 26 03:33:36 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/LabelTypeService.java

            // setup condition
            cb.query().addOrderBy_SortOrder_Asc();
            cb.query().addOrderBy_Name_Asc();
            // search
    
        }
    
        public List<LabelType> getLabelTypeList() {
            return labelTypeBhv.selectList(cb -> {
                cb.query().addOrderBy_SortOrder_Asc();
                cb.query().addOrderBy_Name_Asc();
                cb.paging(fessConfig.getPageLabeltypeMaxFetchSizeAsInteger(), 1);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/service/RoleTypeService.java

        }
    
        protected void setupListCondition(final RoleTypeCB cb, final RoleTypePager roleTypePager) {
            if (roleTypePager.id != null) {
                cb.query().docMeta().setId_Equal(roleTypePager.id);
            }
            // TODO Long, Integer, String supported only.
    
            // setup condition
            cb.query().addOrderBy_SortOrder_Asc();
            cb.query().addOrderBy_Name_Asc();
            // search
    
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/user/bsbhv/BsUserBhv.java

        }
    
        protected OptionalEntity<User> facadeSelectEntity(UserCB cb) {
            return doSelectOptionalEntity(cb, typeOfSelectedEntity());
        }
    
        protected <ENTITY extends User> OptionalEntity<ENTITY> doSelectOptionalEntity(UserCB cb, Class<? extends ENTITY> tp) {
            return createOptionalEntity(doSelectEntity(cb, tp), cb);
        }
    
        @Override
        public UserCB newConditionBean() {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/bsbhv/BsFailureUrlBhv.java

        }
    
        protected OptionalEntity<FailureUrl> facadeSelectEntity(FailureUrlCB cb) {
            return doSelectOptionalEntity(cb, typeOfSelectedEntity());
        }
    
        protected <ENTITY extends FailureUrl> OptionalEntity<ENTITY> doSelectOptionalEntity(FailureUrlCB cb, Class<? extends ENTITY> tp) {
            return createOptionalEntity(doSelectEntity(cb, tp), cb);
        }
    
        @Override
        public FailureUrlCB newConditionBean() {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/bsbhv/BsRelatedQueryBhv.java

        }
    
        protected OptionalEntity<RelatedQuery> facadeSelectEntity(RelatedQueryCB cb) {
            return doSelectOptionalEntity(cb, typeOfSelectedEntity());
        }
    
        protected <ENTITY extends RelatedQuery> OptionalEntity<ENTITY> doSelectOptionalEntity(RelatedQueryCB cb, Class<? extends ENTITY> tp) {
            return createOptionalEntity(doSelectEntity(cb, tp), cb);
        }
    
        @Override
        public RelatedQueryCB newConditionBean() {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/log/bsbhv/BsUserInfoBhv.java

        }
    
        protected OptionalEntity<UserInfo> facadeSelectEntity(UserInfoCB cb) {
            return doSelectOptionalEntity(cb, typeOfSelectedEntity());
        }
    
        protected <ENTITY extends UserInfo> OptionalEntity<ENTITY> doSelectOptionalEntity(UserInfoCB cb, Class<? extends ENTITY> tp) {
            return createOptionalEntity(doSelectEntity(cb, tp), cb);
        }
    
        @Override
        public UserInfoCB newConditionBean() {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9K 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: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/bsbhv/BsDataConfigBhv.java

        }
    
        protected OptionalEntity<DataConfig> facadeSelectEntity(DataConfigCB cb) {
            return doSelectOptionalEntity(cb, typeOfSelectedEntity());
        }
    
        protected <ENTITY extends DataConfig> OptionalEntity<ENTITY> doSelectOptionalEntity(DataConfigCB cb, Class<? extends ENTITY> tp) {
            return createOptionalEntity(doSelectEntity(cb, tp), cb);
        }
    
        @Override
        public DataConfigCB newConditionBean() {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top