Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,141 for Mccall (0.21 sec)

  1. src/main/java/org/codelibs/fess/es/config/bsbhv/BsPathMappingBhv.java

            return batchDelete(list, call, null);
        }
    
        public int[] batchDelete(List<PathMapping> list, RequestOptionCall<BulkRequestBuilder> call,
                RequestOptionCall<IndexRequestBuilder> entityCall) {
            return doBatchDelete(new BulkList<>(list, call, entityCall), null);
        }
    
        // #pending create, modify, remove
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/bsbhv/BsAccessTokenBhv.java

            return batchDelete(list, call, null);
        }
    
        public int[] batchDelete(List<AccessToken> list, RequestOptionCall<BulkRequestBuilder> call,
                RequestOptionCall<IndexRequestBuilder> entityCall) {
            return doBatchDelete(new BulkList<>(list, call, entityCall), null);
        }
    
        // #pending create, modify, remove
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/bsbhv/BsLabelTypeBhv.java

        }
    
        public ListResultBean<LabelType> selectList(CBCall<LabelTypeCB> cbLambda) {
            return facadeSelectList(createCB(cbLambda));
        }
    
        public PagingResultBean<LabelType> selectPage(CBCall<LabelTypeCB> cbLambda) {
            // #pending same?
            return (PagingResultBean<LabelType>) facadeSelectList(createCB(cbLambda));
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/log/bsbhv/BsSearchLogBhv.java

        }
    
        public ListResultBean<SearchLog> selectList(CBCall<SearchLogCB> cbLambda) {
            return facadeSelectList(createCB(cbLambda));
        }
    
        public PagingResultBean<SearchLog> selectPage(CBCall<SearchLogCB> cbLambda) {
            // #pending same?
            return (PagingResultBean<SearchLog>) facadeSelectList(createCB(cbLambda));
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/bsbhv/BsWebConfigBhv.java

        }
    
        public ListResultBean<WebConfig> selectList(CBCall<WebConfigCB> cbLambda) {
            return facadeSelectList(createCB(cbLambda));
        }
    
        public PagingResultBean<WebConfig> selectPage(CBCall<WebConfigCB> cbLambda) {
            // #pending same?
            return (PagingResultBean<WebConfig>) facadeSelectList(createCB(cbLambda));
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/bsbhv/BsFileConfigBhv.java

        public ListResultBean<FileConfig> selectList(CBCall<FileConfigCB> cbLambda) {
            return facadeSelectList(createCB(cbLambda));
        }
    
        public PagingResultBean<FileConfig> selectPage(CBCall<FileConfigCB> cbLambda) {
            // #pending same?
            return (PagingResultBean<FileConfig>) facadeSelectList(createCB(cbLambda));
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/bsbhv/BsCrawlingInfoBhv.java

            return batchDelete(list, call, null);
        }
    
        public int[] batchDelete(List<CrawlingInfo> list, RequestOptionCall<BulkRequestBuilder> call,
                RequestOptionCall<IndexRequestBuilder> entityCall) {
            return doBatchDelete(new BulkList<>(list, call, entityCall), null);
        }
    
        // #pending create, modify, remove
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/user/bsbhv/BsRoleBhv.java

                RequestOptionCall<IndexRequestBuilder> entityCall) {
            return doBatchInsert(new BulkList<>(list, call, entityCall), null);
        }
    
        public int[] batchUpdate(List<Role> list) {
            return batchUpdate(list, null, null);
        }
    
        public int[] batchUpdate(List<Role> list, RequestOptionCall<BulkRequestBuilder> call) {
            return batchUpdate(list, call, null);
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/bsbhv/BsBoostDocumentRuleBhv.java

            return batchUpdate(list, call, null);
        }
    
        public int[] batchUpdate(List<BoostDocumentRule> list, RequestOptionCall<BulkRequestBuilder> call,
                RequestOptionCall<IndexRequestBuilder> entityCall) {
            return doBatchUpdate(new BulkList<>(list, call, entityCall), null);
        }
    
        public int[] batchDelete(List<BoostDocumentRule> list) {
            return batchDelete(list, null, null);
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/bsbhv/BsDataConfigBhv.java

        public ListResultBean<DataConfig> selectList(CBCall<DataConfigCB> cbLambda) {
            return facadeSelectList(createCB(cbLambda));
        }
    
        public PagingResultBean<DataConfig> selectPage(CBCall<DataConfigCB> cbLambda) {
            // #pending same?
            return (PagingResultBean<DataConfig>) facadeSelectList(createCB(cbLambda));
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.2K bytes
    - Viewed (0)
Back to top