Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for settable (0.03 seconds)

  1. src/test/java/org/codelibs/fess/app/job/ScriptExecutorJobTest.java

                    return "OK";
                }
            };
            ComponentUtil.register(jobExecutor, "scriptJobExecutor");
        }
    
        /**
         * Testable subclass that exposes the protected process() method.
         */
        private static class TestableScriptExecutorJob extends ScriptExecutorJob {
            @Override
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 13.7K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/helper/DocumentHelper.java

            }
        }
    
        /**
         * Processes and normalizes a document title.
         * Applies text normalization using configured space characters and returns
         * a clean title suitable for indexing.
         *
         * @param responseData the response data from crawling (not currently used)
         * @param title the raw title text to process
         * @param dataMap additional data map (not currently used)
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Mar 30 14:27:04 GMT 2026
    - 17.4K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/it/admin/CrawlerLogTests.java

        /**
         * Methods for a Web Crawling Job
         * */
        private static void createWebConfig() {
            final Map<String, Object> requestBody = new HashMap<>();
            // Keep original external URL for stable test results + failure URL for testing
            final String urls = "https://www.codelibs.org/" + "\n" + "http://failure.url";
            final String includedUrls = "https://www.codelibs.org/.*" + "\n" + "http://failure.url.*";
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Mar 30 14:01:34 GMT 2026
    - 13.4K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/helper/CoordinatorHelperTest.java

                    return 3;
                }
            });
    
            helper.tryStartOperation("test_op", null);
            assertEquals(3, passedRetries.get());
        }
    
        /**
         * Creates a testable CoordinatorHelper that overrides tryStartOperation(name,data,retries)
         * to simulate "create always fails" (no OpenSearch), preserving the retry/cleanup dispatch logic.
         */
    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)
Back to Top