Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 33 of 33 for batchUpdate (0.04 sec)

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

        }
    
        public int[] batchUpdate(List<WebConfig> list) {
            return batchUpdate(list, null, null);
        }
    
        public int[] batchUpdate(List<WebConfig> list, RequestOptionCall<BulkRequestBuilder> call) {
            return batchUpdate(list, call, null);
        }
    
        public int[] batchUpdate(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/JobLogService.java

                    jobLog.setScriptResult("No response from Job.");
                    jobLog.setEndTime(ComponentUtil.getSystemHelper().getCurrentTimeAsLong());
                });
                jobLogBhv.batchUpdate(list);
            }
        }
    
        /**
         * Sets the time interval after which jobs are considered expired.
         *
         * @param expiredJobInterval the time interval in milliseconds
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

                    updateList.forEach(this::writeSearchLogEvent);
                }
                // insert/update user info
                userInfoBhv.batchInsert(insertList);
                userInfoBhv.batchUpdate(updateList);
                // update search log
                searchLogList.stream().forEach(searchLog -> {
                    searchLog.getUserInfo().ifPresent(userInfo -> {
    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