Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 62 of 62 for FooTest (0.2 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/concurrent/TaskRunner.kt

          eachQueue@ for (queue in readyQueues) {
            val candidate = queue.futureTasks[0]
            val candidateDelay = maxOf(0L, candidate.nextExecuteNanoTime - now)
    
            when {
              // Compute the delay of the soonest-executable task.
              candidateDelay > 0L -> {
                minDelayNanos = minOf(candidateDelay, minDelayNanos)
                continue@eachQueue
              }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 29 00:33:04 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    //   immediately ready and must run on some thread eventually.
    // * New/modified-earlier timer: The current timer implementation (see time.go)
    //   uses netpoll in a thread with no work available to wait for the soonest
    //   timer. If there is no thread waiting, we want a new spinning thread to go
    //   wait.
    // * Idle-priority GC: The GC wakes a stopped idle thread to contribute to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top