Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 33 of 33 for batchDelete (0.07 sec)

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

        }
    
        public int[] batchDelete(List<RequestHeader> list) {
            return batchDelete(list, null, null);
        }
    
        public int[] batchDelete(List<RequestHeader> list, RequestOptionCall<BulkRequestBuilder> call) {
            return batchDelete(list, call, null);
        }
    
        public int[] batchDelete(List<RequestHeader> list, RequestOptionCall<BulkRequestBuilder> call,
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/ElevateWordService.java

                    elevateWordToLabelBhv.batchInsert(newList, op -> {
                        op.setRefreshPolicy(Constants.TRUE);
                    });
                    elevateWordToLabelBhv.batchDelete(list, op -> {
                        op.setRefreshPolicy(Constants.TRUE);
                    });
                }
            }
        }
    
        public void delete(final ElevateWord elevateWord) {
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java

                    crawlingInfoIdList.add(cs.getId());
                }
                crawlingInfoParamBhv.queryDelete(cb2 -> cb2.query().setCrawlingInfoId_InScope(crawlingInfoIdList));
                crawlingInfoBhv.batchDelete(crawlingInfoList, op -> op.setRefreshPolicy(Constants.TRUE));
            }
        }
    
        public void storeInfo(final List<CrawlingInfoParam> crawlingInfoParamList) {
            if (crawlingInfoParamList == null) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top