You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
summary: 'Results were flushed early due to a streaming timer.',
34
+
detail: 'Try narrowing your query or increasing limits.',
35
+
};
36
+
}
37
+
38
+
if(stats.flushReason===FLUSH_REASON_MAX_SIZE){
39
+
return{
40
+
summary: 'Intermediate result set reached its size limit.',
41
+
detail: 'Try narrowing your query or increasing limits.',
42
+
};
43
+
}
44
+
45
+
if(stats.totalMatchCount>maxMatchDisplayCount){
46
+
return{
47
+
summary: 'More matches exist than are shown.',
48
+
detail: `The index reported ${stats.totalMatchCount} matches, but this request only returns up to ${maxMatchDisplayCount}. Use “load more” or raise the match limit.`,
49
+
};
50
+
}
51
+
52
+
if(stats.filesSkipped>0){
53
+
return{
54
+
summary: 'Some candidate files were not fully searched.',
55
+
detail: 'The engine stopped after finding enough matches (per-shard or total limits). Additional matches may exist.',
56
+
};
57
+
}
58
+
59
+
return{
60
+
summary: 'More matches may exist than are shown.',
61
+
detail: 'Increase the match limit, narrow your query, or scope to a repository.',
0 commit comments