Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 51 for COMPLETED (0.06 seconds)

  1. guava-tests/test/com/google/common/util/concurrent/ThreadFactoryBuilderTest.java

    @J2ktIncompatible
    public class ThreadFactoryBuilderTest extends TestCase {
      private final Runnable monitoredRunnable = () -> completed = true;
    
      private static final UncaughtExceptionHandler UNCAUGHT_EXCEPTION_HANDLER =
          (thread, throwable) -> {};
    
      private ThreadFactoryBuilder builder;
      private volatile boolean completed = false;
    
      @Override
      public void setUp() {
        builder = new ThreadFactoryBuilder();
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 22:45:21 GMT 2026
    - 7.8K bytes
    - Click Count (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/ThreadFactoryBuilderTest.java

    @J2ktIncompatible
    public class ThreadFactoryBuilderTest extends TestCase {
      private final Runnable monitoredRunnable = () -> completed = true;
    
      private static final UncaughtExceptionHandler UNCAUGHT_EXCEPTION_HANDLER =
          (thread, throwable) -> {};
    
      private ThreadFactoryBuilder builder;
      private volatile boolean completed = false;
    
      @Override
      public void setUp() {
        builder = new ThreadFactoryBuilder();
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 22:45:21 GMT 2026
    - 7.8K bytes
    - Click Count (0)
  3. guava-tests/test/com/google/common/util/concurrent/UninterruptiblesTest.java

        final Completion completed;
    
        AbstractTimedLatch(long countdownInMillis) {
          this.completed = new Completion(countdownInMillis);
        }
    
        /** Awaits the latch and asserts that operation completed in the expected timeframe. */
        final void awaitSuccessfully() {
          awaitLatchUninterruptibly();
          completed.assertCompletionExpected();
          assertEquals(0, getCount());
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 22:45:21 GMT 2026
    - 38.1K bytes
    - Click Count (0)
  4. android/guava-tests/test/com/google/common/util/concurrent/UninterruptiblesTest.java

        final Completion completed;
    
        AbstractTimedLatch(long countdownInMillis) {
          this.completed = new Completion(countdownInMillis);
        }
    
        /** Awaits the latch and asserts that operation completed in the expected timeframe. */
        final void awaitSuccessfully() {
          awaitLatchUninterruptibly();
          completed.assertCompletionExpected();
          assertEquals(0, getCount());
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 22:45:21 GMT 2026
    - 38.1K bytes
    - Click Count (0)
  5. docs/recipes.md

                    if (!completed) {
                      completed = true
                      progressListener.update(totalBytesWritten, contentLength(), completed)
                    }
                  }
                }
    
                val bufferedSink = forwardingSink.buffer()
                delegate.writeTo(bufferedSink)
                bufferedSink.flush()
              }
            }
    
            fun interface ProgressListener {
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sun Mar 15 09:01:42 GMT 2026
    - 47.8K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/chat/ChatClient.java

                    logger.info("[RAG] Search completed. query={}, resultCount={}, elapsedTime={}ms", query, searchResults.size(),
                            System.currentTimeMillis() - phaseStartTime);
                    if (logger.isDebugEnabled()) {
                        logger.debug("[RAG] Phase {} completed. query={}, resultCount={}, phaseElapsedTime={}ms",
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 56.6K bytes
    - Click Count (0)
  7. guava-tests/test/com/google/common/util/concurrent/UninterruptibleFutureTest.java

        assertFalse(sleeper.completed);
        assertTrue(getUninterruptibly(delayedFuture));
    
        assertTrue(Thread.interrupted()); // clears the interrupt state, too
        assertTrue(sleeper.completed);
      }
    
      private static class SleepingRunnable implements Runnable {
        final int millis;
        volatile boolean completed;
    
        SleepingRunnable(int millis) {
          this.millis = millis;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 22:45:21 GMT 2026
    - 8.9K bytes
    - Click Count (0)
  8. src/main/webapp/js/chat.js

            } else if (status === 'completed') {
                if (state.completedPhases.indexOf(phase) === -1) {
                    state.completedPhases.push(phase);
                }
            }
    
            // Update visual indicators
            $('.progress-step').each(function() {
                var stepPhase = $(this).data('phase');
                $(this).removeClass('active completed');
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 01:36:02 GMT 2026
    - 30.6K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/it/admin/CrawlerLogTests.java

                response = checkMethodBase(filterBody).get("/api/admin/crawlinginfo/logs").asString();
                assertEquals(0, JsonPath.from(response).getInt("response.status"));
                logger.info("Session ID filter test completed");
            }
    
            // Test GET /api/admin/crawlinginfo/log/{id}
            if (!logList.isEmpty()) {
                final String logId = (String) logList.get(0).get("id");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Mar 30 14:01:34 GMT 2026
    - 13.4K bytes
    - Click Count (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/UninterruptibleFutureTest.java

        assertFalse(sleeper.completed);
        assertTrue(getUninterruptibly(delayedFuture));
    
        assertTrue(Thread.interrupted()); // clears the interrupt state, too
        assertTrue(sleeper.completed);
      }
    
      private static class SleepingRunnable implements Runnable {
        final int millis;
        volatile boolean completed;
    
        SleepingRunnable(int millis) {
          this.millis = millis;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 22:45:21 GMT 2026
    - 8.9K bytes
    - Click Count (0)
Back to Top