Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 9 of 9 for record_count (0.13 seconds)

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

  1. 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)
  2. 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)
  3. 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)
  4. src/test/java/org/codelibs/fess/it/search/SuggestWordsApiTests.java

                    .params(params)
                    .when()
                    .get("/api/v1/suggest-words")
                    .then()
                    .statusCode(200)
                    .body("record_count", greaterThanOrEqualTo(0));
        }
    
        @Test
        public void testSuggestWords_withNum() {
            Map<String, String> params = new HashMap<>();
            params.put("q", "a");
            params.put("num", "5");
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 03:03:44 GMT 2025
    - 5.7K bytes
    - Click Count (0)
  5. 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)
  6. src/main/config/openapi/openapi-user.yaml

                      page_size:
                        type: integer
                        example: 20
                      page_number:
                        type: integer
                        example: 1
                      record_count:
                        type: integer
                        format: int64
                        example: 31625
                      page_count:
                        type: integer
                        example: 1
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu May 09 06:31:27 GMT 2024
    - 21.6K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/it/search/FavoritesApiTests.java

                    .params(params)
                    .when()
                    .get("/api/v1/favorites")
                    .then()
                    .statusCode(200)
                    .body("record_count", greaterThanOrEqualTo(0))
                    .body("data", notNullValue());
        }
    
        @Test
        public void testGetFavorites_noQueryId() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 03:03:44 GMT 2025
    - 9.9K bytes
    - Click Count (0)
  8. src/main/webapp/js/search.js

          type: "get",
          timeout: AJAX_TIMEOUT,
          url: contextPath + "/api/v1/favorites",
          data: {
            queryId: $queryId.val()
          }
        })
          .done(function(data) {
            if (data.record_count > 0) {
              var docIdsLookup = {};
              var i;
              for (i = 0; i < data.data.length; i++) {
                docIdsLookup["#" + data.data[i].doc_id] = true;
              }
    
    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)
  9. src/main/webapp/js/suggestor.js

            },
    
            /**
             * Create and display the autocomplete suggestion list
             */
            createAutoCompleteList: function (obj) {
              if (typeof obj.record_count === "undefined") {
                this.hideSuggestionBox();
                return;
              }
    
              var hits = obj.data,
                suggestor = this,
                reslist,
                $olEle,
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 11:04:08 GMT 2025
    - 13.3K bytes
    - Click Count (0)
Back to Top