Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 124 for cb (0.01 sec)

  1. src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsWebAuthenticationBhv.java

            return doSelectOptionalEntity(cb, typeOfSelectedEntity());
        }
    
        protected <ENTITY extends WebAuthentication> OptionalEntity<ENTITY> doSelectOptionalEntity(WebAuthenticationCB cb,
                Class<? extends ENTITY> tp) {
            return createOptionalEntity(doSelectEntity(cb, tp), cb);
        }
    
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractBehavior.java

            // #pending check response
            final SearchRequestBuilder builder = client.prepareSearch(asEsIndex());
            final int from;
            final int size;
            if (cb.isFetchScopeEffective()) {
                from = cb.getPageStartIndex();
                size = cb.getFetchSize();
            } else {
                from = 0;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 21 04:02:44 UTC 2025
    - 26.4K bytes
    - Viewed (0)
  3. 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 Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java

            return writer -> {
                final SearchLogBhv bhv = ComponentUtil.getComponent(SearchLogBhv.class);
                bhv.selectCursor(cb -> {
                    cb.query().matchAll();
                    cb.query().addOrderBy_RequestedAt_Asc();
                }, new LogEntityRowHandler<SearchLog>() {
                    @Override
                    public void handle(final SearchLog entity) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 29.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/job/AllJobScheduler.java

            final String myName = fessConfig.getSchedulerTargetName();
            if (StringUtil.isNotBlank(myName)) {
                ComponentUtil.getComponent(JobLogBhv.class).queryDelete(cb -> {
                    cb.query().setJobStatus_Equal(Constants.RUNNING);
                    cb.query().setTarget_Equal(myName);
                });
            }
    
            TimeoutManager.getInstance().addTimeoutTarget(() -> {
                if (logger.isDebugEnabled()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  6. 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 Sep 07 09:35:13 UTC 2025
    - Last Modified: Tue Mar 26 03:33:36 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/opensearch/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 Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsCrawlingInfoParamBhv.java

            return doSelectOptionalEntity(cb, typeOfSelectedEntity());
        }
    
        protected <ENTITY extends CrawlingInfoParam> OptionalEntity<ENTITY> doSelectOptionalEntity(CrawlingInfoParamCB cb,
                Class<? extends ENTITY> tp) {
            return createOptionalEntity(doSelectEntity(cb, tp), cb);
        }
    
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsRoleTypeBhv.java

        }
    
        protected OptionalEntity<RoleType> facadeSelectEntity(RoleTypeCB cb) {
            return doSelectOptionalEntity(cb, typeOfSelectedEntity());
        }
    
        protected <ENTITY extends RoleType> OptionalEntity<ENTITY> doSelectOptionalEntity(RoleTypeCB cb, Class<? extends ENTITY> tp) {
            return createOptionalEntity(doSelectEntity(cb, tp), cb);
        }
    
        @Override
        public RoleTypeCB newConditionBean() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

                final UserInfoBhv userInfoBhv = ComponentUtil.getComponent(UserInfoBhv.class);
                userInfoBhv.selectList(cb -> {
                    cb.query().setId_InScope(userInfoMap.keySet());
                    cb.fetchFirst(userInfoMap.size());
                }).forEach(userInfo -> {
                    final String code = userInfo.getId();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 26.3K bytes
    - Viewed (0)
Back to top