- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 15 for getQueryTime (0.07 sec)
-
src/test/java/org/codelibs/fess/rank/fusion/SearchResultTest.java
assertEquals(allRecordCount, result.getAllRecordCount()); assertEquals(allRecordCountRelation, result.getAllRecordCountRelation()); assertEquals(queryTime, result.getQueryTime()); assertEquals(partialResults, result.isPartialResults()); assertEquals(facetResponse, result.getFacetResponse()); } public void test_constructor_withNullValues() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/SearchRenderDataTest.java
searchRenderData.setQueryTime(0L); assertEquals(0L, searchRenderData.getQueryTime()); // Test with positive values searchRenderData.setQueryTime(123L); assertEquals(123L, searchRenderData.getQueryTime()); searchRenderData.setQueryTime(999999L); assertEquals(999999L, searchRenderData.getQueryTime()); // Test with negative value
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 23.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/bsentity/BsSearchLog.java
return queryPageSize; } public void setQueryPageSize(Integer value) { registerModifiedProperty("queryPageSize"); this.queryPageSize = value; } public Long getQueryTime() { checkSpecifiedProperty("queryTime"); return queryTime; } public void setQueryTime(Long value) { registerModifiedProperty("queryTime"); this.queryTime = value;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 12.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java
return allRecordCountRelation; } /** * Gets the time taken to execute the search query. * * @return The query execution time in milliseconds */ public long getQueryTime() { return queryTime; } /** * Checks whether the search results are partial due to timeout or other constraints. * * @return true if the results are partial, false if complete
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java
allRecordCount += offset; } return createResponseList(searchResult.getDocumentList(), allRecordCount, searchResult.getAllRecordCountRelation(), searchResult.getQueryTime(), searchResult.isPartialResults(), searchResult.getFacetResponse(), params.getStartPosition(), pageSize, offset); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/QueryResponseListTest.java
assertEquals(documentList, qrList.parent); assertEquals(100L, qrList.getAllRecordCount()); assertEquals("gte", qrList.getAllRecordCountRelation()); assertEquals(500L, qrList.getQueryTime()); assertTrue(qrList.isPartialResults()); assertEquals(facetResponse, qrList.getFacetResponse()); assertEquals(0, qrList.getStart()); assertEquals(10, qrList.getPageSize());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 39.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/SearchRenderData.java
return searchQuery; } /** * Gets the time taken to execute the search query in milliseconds. * * @return The query execution time in milliseconds */ public long getQueryTime() { return queryTime; } /** * Gets the timestamp when the search request was made. * * @return The request timestamp */ public long getRequestedTime() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/bsentity/dbmeta/SearchLogDbm.java
setupEpg(_epgMap, et -> ((SearchLog) et).getQueryPageSize(), (et, vl) -> ((SearchLog) et).setQueryPageSize(DfTypeUtil.toInteger(vl)), "queryPageSize"); setupEpg(_epgMap, et -> ((SearchLog) et).getQueryTime(), (et, vl) -> ((SearchLog) et).setQueryTime(DfTypeUtil.toLong(vl)), "queryTime");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 16.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/QueryResponseList.java
} /** * Gets the time taken to execute the search query in milliseconds. * * @return the query execution time in milliseconds */ public long getQueryTime() { return queryTime; } @Override public String toString() { return "QueryResponseList [parent=" + parent + ", start=" + start + ", offset=" + offset + ", pageSize=" + pageSize
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java
appendJson("client-ip", entity.getClientIp(), buf).append(','); appendJson("access-type", entity.getAccessType(), buf).append(','); appendJson("query-time", entity.getQueryTime(), buf).append(','); appendJson("response-time", entity.getResponseTime(), buf).append(','); appendJson("requested-at", entity.getRequestedAt(), buf).append(',');
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 29.8K bytes - Viewed (0)