- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for SynchronizedList (0.08 sec)
-
src/main/java/org/codelibs/fess/helper/DataIndexHelper.java
protected int crawlerPriority = Thread.NORM_PRIORITY; protected final List<DataCrawlingThread> dataCrawlingThreadList = Collections.synchronizedList(new ArrayList<>()); public void crawl(final String sessionId) { final List<DataConfig> configList = ComponentUtil.getCrawlingConfigHelper().getAllDataConfigList(); if (configList.isEmpty()) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 12K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java
protected int indexUpdaterPriority = Thread.MAX_PRIORITY; protected int crawlerPriority = Thread.NORM_PRIORITY; protected final List<Crawler> crawlerList = Collections.synchronizedList(new ArrayList<>()); public void crawl(final String sessionId, final List<String> webConfigIdList, final List<String> fileConfigIdList) { final boolean runAll = webConfigIdList == null && fileConfigIdList == null;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 22.6K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/internal/ws/WebSocketHttpTest.kt
) } val request = Request.Builder() .url(webServer.url("/")) .build() val attempts = CountDownLatch(20) val webSockets = Collections.synchronizedList(ArrayList<WebSocket>()) val reconnectOnFailure: WebSocketListener = object : WebSocketListener() { override fun onFailure( webSocket: WebSocket, t: Throwable,
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Mar 31 17:16:15 UTC 2024 - 35.2K bytes - Viewed (0)