- Sort Score
- Num 10 results
- Language All
Results 1 - 7 of 7 for record_count (0.47 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/fess/it/search/PopularWordsApiTests.java
given().contentType("application/json") .when() .get("/api/v1/popular-words") .then() .statusCode(200) .body("record_count", greaterThanOrEqualTo(0)) .body("data", notNullValue()); } @Test public void testPopularWords_withSeed() { Map<String, String> params = new HashMap<>();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 20 03:03:44 GMT 2025 - 3.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/search/SearchApiTests.java
params.put("num", "100"); String response = checkMethodBase(new HashMap<>()).params(params).get("/api/v1/documents").asString(); int recordCount = JsonPath.from(response).getInt("record_count"); assertTrue(recordCount > 0); Map<String, String> wcParams1 = new HashMap<>(); wcParams1.put("q", field + ":" + wcQuery1); wcParams1.put("num", "100");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 21 13:29:45 GMT 2025 - 19K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/search/LabelsApiTests.java
JsonPath jsonPath = JsonPath.from(response); int recordCount = jsonPath.getInt("record_count"); assertTrue(recordCount >= 0, "Record count should be >= 0"); if (recordCount > 0) { List<Map<String, Object>> labels = jsonPath.getList("data"); assertTrue(labels != null, "Data should not be null when labels exist");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 20 03:03:44 GMT 2025 - 4.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
buf.append(pageSize); buf.append(','); buf.append("\"page_number\":"); buf.append(currentPageNumber); buf.append(','); buf.append("\"record_count\":"); buf.append(allRecordCount); buf.append(','); buf.append("\"record_count_relation\":"); buf.append(escapeJson(allRecordCountRelation)); buf.append(',');
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 27 13:56:32 GMT 2026 - 55.4K bytes - Click Count (1) -
MIGRATION.md
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 06 12:40:11 GMT 2025 - 23.2K bytes - Click Count (0) -
src/main/webapp/js/search.js
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 23 08:03:44 GMT 2026 - 6.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/ApiResult.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:55:54 GMT 2026 - 25.8K bytes - Click Count (0)