Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for createSearchBody (0.21 sec)

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

            settingTestToken();
        }
    
        @BeforeEach
        protected void init() {
        }
    
        @AfterEach
        protected void tearDown() {
            final Map<String, Object> searchBody = createSearchBody(SEARCH_ALL_NUM);
            int count = 0;
            List<String> idList = getIdList(searchBody);
            while (idList.size() > 0 && count < NUM) {
                final String id = idList.get(0);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/it/admin/SearchListTests.java

            doc.put("boost", id);
            doc.put("role", "Rguest");
            requestBody.put("doc", doc);
            return requestBody;
        }
    
        @Override
        protected Map<String, Object> createSearchBody(final int size) {
            final Map<String, Object> searchBody = new HashMap<>();
            searchBody.put("size", size);
            searchBody.put("q", NAME_PREFIX + "*");
            return searchBody;
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jun 12 02:18:38 UTC 2025
    - 4.5K bytes
    - Viewed (0)
Back to top