Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

        }
    
        public int[] batchDelete(List<WebConfig> list) {
            return batchDelete(list, null, null);
        }
    
        public int[] batchDelete(List<WebConfig> list, RequestOptionCall<BulkRequestBuilder> call) {
            return batchDelete(list, call, null);
        }
    
        public int[] batchDelete(List<WebConfig> list, RequestOptionCall<BulkRequestBuilder> call,
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 10.9K 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);
                    });
                }
            }
        }
    
        /**
         * Deletes an elevate word from the system.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.3K 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));
            }
        }
    
        /**
         * Stores a list of crawling information parameters in batch.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.9K bytes
    - Viewed (0)
Back to top