- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 20 for queryTime (0.05 sec)
-
src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java
/** * Sets the time taken to execute the search query. * * @param queryTime The query execution time in milliseconds * @return This builder instance for method chaining */ public SearchResultBuilder queryTime(final long queryTime) { this.queryTime = queryTime; return this; } /**
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/test/java/org/codelibs/fess/rank/fusion/SearchResultTest.java
String allRecordCountRelation = "eq"; long queryTime = 50L; boolean partialResults = false; Aggregations aggregations = InternalAggregations.EMPTY; FacetResponse facetResponse = new FacetResponse(aggregations); SearchResult result = new SearchResult(documentList, allRecordCount, allRecordCountRelation, queryTime, partialResults, facetResponse);
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/main/java/org/codelibs/fess/entity/SearchRenderData.java
} /** * Sets the time taken to execute the search query in milliseconds. * * @param queryTime The query execution time in milliseconds */ public void setQueryTime(final long queryTime) { this.queryTime = queryTime; } /** * Sets the actual search query executed against the search engine. *
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/util/QueryResponseList.java
final long queryTime, final boolean partialResults, final FacetResponse facetResponse, final int start, final int pageSize, final int offset) { this(documentList, start, pageSize, offset); this.allRecordCount = allRecordCount; this.allRecordCountRelation = allRecordCountRelation; this.queryTime = queryTime; this.partialResults = partialResults;
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/search/SearchAction.java
RenderDataUtil.register(data, "pageNumberList", pageNumberList); RenderDataUtil.register(data, "partialResults", partialResults); RenderDataUtil.register(data, "queryTime", queryTime); RenderDataUtil.register(data, "searchQuery", searchQuery); RenderDataUtil.register(data, "requestedTime", requestedTime); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java
final String allRecordCountRelation, final long queryTime, final boolean partialResults, final FacetResponse facetResponse, final int start, final int pageSize, final int offset) { return new QueryResponseList(documentList, allRecordCount, allRecordCountRelation, queryTime, partialResults, facetResponse, start, 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/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java
builder.allRecordCount(searchHits.getTotalHits().value()); builder.allRecordCountRelation(searchHits.getTotalHits().relation().toString()); builder.queryTime(searchResponse.getTook().millis()); if (searchResponse.getTotalShards() != searchResponse.getSuccessfulShards()) { builder.partialResults(true); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 12.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java
RenderDataUtil.register(data, "pageNumberList", pageNumberList); RenderDataUtil.register(data, "partialResults", partialResults); RenderDataUtil.register(data, "queryTime", queryTime); RenderDataUtil.register(data, "searchQuery", searchQuery); RenderDataUtil.register(data, "requestedTime", requestedTime); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 23.1K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/app/web/api/ApiResult.java
* Indicates if the search results are partial. */ protected boolean partial; /** * The time taken for the search query in milliseconds. */ protected long queryTime; /** * The search query string. */ protected String searchQuery; /** * The time when the search request was made. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 54.6K bytes - Viewed (1)