Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for completeOperation (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/test/java/org/codelibs/fess/helper/CoordinatorHelperTest.java

            try {
                helper.completeOperation("nonexistent_operation");
            } catch (final Exception e) {
                fail("completeOperation should not throw: " + e.getMessage());
            }
        }
    
        @Test
        public void test_completeOperation_doubleCall_safe() {
            // Calling completeOperation twice must not throw (idempotent release)
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 58.6K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java

                            coordinator.completeOperation("clear_crawler_index");
                        }, e -> {
                            logger.warn("Failed to delete .crawler.* indices.", e);
                            coordinator.completeOperation("clear_crawler_index");
                        }));
            } catch (final Exception e) {
                coordinator.completeOperation("clear_crawler_index");
                throw e;
            }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 23K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/helper/CoordinatorHelper.java

         * Safe to call multiple times; does nothing if the document is already deleted.
         *
         * @param operationName the operation name whose lock should be released.
         */
        public void completeOperation(final String operationName) {
            try (CurlResponse getResponse = ComponentUtil.getCurlHelper() //
                    .get("/" + getIndexName() + "/_doc/" + operationName) //
                    .execute()) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 33.3K bytes
    - Click Count (0)
Back to Top