Increase time limit of search task

When amount of apps is too much, search app info spends much time to
get almost all of app label. So SettingsIntelligence cannot surely get
app info in time (about 300 ms), and gives up the app info result.
Then, user cannot get app info result.

Increase time limit of search task to mitigate it.

Bug: 115603047
Change-Id: Iac1b1e3a3a3b7751b45fb6710e43e84d037b8201
diff --git a/src/com/android/settings/intelligence/search/SearchResultAggregator.java b/src/com/android/settings/intelligence/search/SearchResultAggregator.java
index c5e73be..cc36143 100644
--- a/src/com/android/settings/intelligence/search/SearchResultAggregator.java
+++ b/src/com/android/settings/intelligence/search/SearchResultAggregator.java
@@ -30,7 +30,7 @@
      * Timeout for subsequent tasks to allow for fast returning tasks.
      * TODO(70164062): Tweak the timeout values.
      */
-    private static final long SHORT_CHECK_TASK_TIMEOUT_MS = 300;
+    private static final long SHORT_CHECK_TASK_TIMEOUT_MS = 600;
 
     private static SearchResultAggregator sResultAggregator;