Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for deleteDocuments (0.09 seconds)

  1. src/test/java/org/codelibs/fess/it/CrawlTestBase.java

        protected static Response deleteMethod(final String path) {
            return given().contentType("application/json").header("Authorization", getTestToken()).delete(path);
        }
    
        protected static void deleteDocuments(final String queryString) {
            List<String> docIds = new ArrayList<>();
            Response response = given().contentType("application/json")
                    .param("scroll", "1m")
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 10.6K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImplTest.java

            assertNull(exceptions[1], "Clear thread threw exception");
        }
    
        /**
         * Test iteration over deleteUrlList while synchronized.
         * This simulates what happens in deleteDocuments() method.
         */
        @Test
        public void test_deleteUrlList_iteration() throws Exception {
            IndexUpdateCallback mockCallback = new IndexUpdateCallback() {
                @Override
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 19.7K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java

                    return true;
                }
            };
            ComponentUtil.register(client, "searchEngineClient");
    
            final String id = "001";
    
            assertTrue(indexingHelper.deleteDocument(client, id));
            assertEquals("fess.update", resultMap.get("index"));
            assertEquals(id, resultMap.get("id"));
        }
    
        @Test
        public void test_deleteDocumentByUrl() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 29.7K bytes
    - Click Count (0)
Back to Top