Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for record_count (0.07 sec)

  1. 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");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  2. 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
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu May 09 06:31:27 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  3. src/main/webapp/js/suggestor.js

                    suggestingSts = false;
                    return;
                  });
              },
    
              createAutoCompleteList: function(obj) {
                if (typeof obj.record_count === "undefined") {
                  $boxElement.css("display", "none");
                  return;
                }
    
                var hits = obj.data,
                    suggestor = this,
                    reslist,
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Mar 30 05:45:24 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

            /**
             * The current page number of the search results.
             */
            protected int pageNumber;
            /**
             * The total number of records found.
             */
            protected long recordCount;
            /**
             * The relation of the record count (e.g., "eq" for exact, "gte" for greater than or equal to).
             */
            protected String recordCountRelation;
            /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
Back to top