Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for existsIndex (0.05 seconds)

  1. src/test/java/org/codelibs/fess/opensearch/client/SearchEngineClientRebuildTest.java

                    return false;
                }
                return reindexResult;
            }
    
            @Override
            public boolean existsIndex(final String indexName) {
                calledMethods.add("existsIndex");
                if (useExistingIndicesSet) {
                    return existingIndices.contains(indexName);
                }
                return existsIndexResult;
            }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 28.6K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/job/LogNotificationJobTest.java

            ComponentUtil.register(new SystemHelper(), "systemHelper");
            ComponentUtil.register(new SearchEngineClient() {
                @Override
                public boolean existsIndex(final String indexName) {
                    return false;
                }
            }, "searchEngineClient");
    
            String result = logNotificationJob.execute();
            assertEquals("No log notifications.", result);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 10.5K bytes
    - Click Count (0)
Back to Top