Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for synchronizedList (0.08 sec)

  1. android/guava/src/com/google/common/util/concurrent/ListenerCallQueue.java

      private static final LazyLogger logger = new LazyLogger(ListenerCallQueue.class);
    
      // TODO(chrisn): promote AppendOnlyCollection for use here.
      private final List<PerListenerQueue<L>> listeners =
          Collections.synchronizedList(new ArrayList<PerListenerQueue<L>>());
    
      /** Method reference-compatible listener event. */
      interface Event<L> {
        /** Call a method on the listener. */
        void call(L listener);
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

         */
        protected int crawlerPriority = Thread.NORM_PRIORITY;
    
        /**
         * Synchronized list of active crawlers.
         */
        protected final List<Crawler> crawlerList = Collections.synchronizedList(new ArrayList<>());
    
        /**
         * Initiates crawling for specified web and file configurations.
         *
         * @param sessionId The session ID for this crawling operation
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/exec/CrawlerTest.java

        }
    
        // Test concurrent crawling
        public void test_doCrawl_concurrentWebAndData() {
            final List<String> executionOrder = Collections.synchronizedList(new ArrayList<>());
    
            WebFsIndexHelper mockWebHelper = new WebFsIndexHelper() {
                @Override
                public void crawl(String sessionId, List<String> webConfigIdList, List<String> fileConfigIdList) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 30.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/DataIndexHelper.java

        /**
         * Thread-safe list of active data crawling threads.
         * Used to track and manage all currently running crawler threads.
         */
        protected final List<DataCrawlingThread> dataCrawlingThreadList = Collections.synchronizedList(new ArrayList<>());
    
        /**
         * Creates a new instance of DataIndexHelper.
         * This constructor initializes the helper for managing data crawling operations,
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  5. okhttp/src/jvmTest/kotlin/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 Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Jun 20 11:46:46 UTC 2025
    - 35.5K bytes
    - Viewed (0)
Back to top