- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 32 for queryTime (0.04 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/opensearch/log/bsentity/BsSearchLog.java
this.queryPageSize = value; } public Long getQueryTime() { checkSpecifiedProperty("queryTime"); return queryTime; } public void setQueryTime(Long value) { registerModifiedProperty("queryTime"); this.queryTime = value; } public String getReferer() { checkSpecifiedProperty("referer");
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/opensearch/log/cbean/cq/bs/BsSearchLogCQ.java
TermQueryBuilder builder = regTermQ("queryTime", queryTime); if (opLambda != null) { opLambda.callback(builder); } } public void setQueryTime_NotEqual(Long queryTime) { setQueryTime_NotTerm(queryTime, null); } public void setQueryTime_NotTerm(Long queryTime) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 145.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/opensearch/log/cbean/ca/bs/BsSearchLogCA.java
} public void setQueryTime_Avg(ConditionOptionCall<AvgAggregationBuilder> opLambda) { setQueryTime_Avg("queryTime", opLambda); } public void setQueryTime_Avg(String name, ConditionOptionCall<AvgAggregationBuilder> opLambda) { AvgAggregationBuilder builder = regAvgA(name, "queryTime"); if (opLambda != null) { opLambda.callback(builder); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 115.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/bsentity/dbmeta/SearchLogDbm.java
null, false, false, false, "Integer", 0, 0, null, null, false, null, null, null, null, null, false); protected final ColumnInfo _columnQueryTime = cci("queryTime", "queryTime", null, null, Long.class, "queryTime", null, false, false, false, "Long", 0, 0, null, null, false, null, null, null, null, null, false);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 16.3K bytes - Viewed (0) -
cmd/signature-v4-parser_test.go
func TestParsePreSignV4(t *testing.T) { // converts the duration in seconds into string format. getDurationStr := strconv.Itoa // used in expected preSignValues, preSignValues.Date is of type time.Time . queryTime := UTCNow() sampleTimeStr := UTCNow().Format(yyyymmdd) testCases := []struct { inputQueryKeyVals []string expectedPreSignValues preSignValues expectedErrCode APIErrorCode }{
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Feb 18 16:25:55 UTC 2025 - 27.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/exentity/SearchLog.java
+ ", queryId=" + queryId + ", queryOffset=" + queryOffset + ", queryPageSize=" + queryPageSize + ", queryTime=" + queryTime + ", referer=" + referer + ", requestedAt=" + requestedAt + ", responseTime=" + responseTime + ", roles="
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 6K bytes - Viewed (0)