Search Options

Display Count
Sort
Preferred Language
Advanced Search

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

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

  1. src/main/java/org/codelibs/fess/helper/CoordinatorHelper.java

                                    Map.of("term", Map.of("targetInstanceId", instanceId))), //
                            "minimum_should_match", 1, //
                            "must_not", List.of( //
                                    Map.of("term", Map.of("instanceId", instanceId))))), //
                    "size", 100, //
                    "sort", List.of(Map.of("createdTime", "asc"))));
    
    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)
  2. src/test/java/org/codelibs/fess/helper/CoordinatorHelperTest.java

            assertTrue(capturedBody.get().contains("\"event\""));
            assertTrue(capturedBody.get().contains("\"minimum_should_match\":1"));
            assertTrue(capturedBody.get().contains("\"must_not\""));
            assertTrue(capturedBody.get().contains("\"targetInstanceId\""));
            assertTrue(capturedBody.get().contains("\"node1@host1\""));
        }
    
        @Test
    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