Home
last modified time | relevance | path

Searched refs:MAX_SUPPORTED_POOL_SIZE (Results 1 – 3 of 3) sorted by relevance

/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/scheduling/
DCoroutineSchedulerLivenessStressTest.kt8 import kotlinx.coroutines.scheduling.CoroutineScheduler.Companion.MAX_SUPPORTED_POOL_SIZE
13 …private val scheduler = lazy { CoroutineScheduler(CORE_POOL_SIZE, MAX_SUPPORTED_POOL_SIZE, Long.MA… in <lambda>()
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/src/scheduling/
DTasks.kt44 CoroutineScheduler.MAX_SUPPORTED_POOL_SIZE
46 maxValue = CoroutineScheduler.MAX_SUPPORTED_POOL_SIZE
DCoroutineScheduler.kt105 require(maxPoolSize <= MAX_SUPPORTED_POOL_SIZE) { in <lambda>()
106 …l size $maxPoolSize should not exceed maximal supported number of threads $MAX_SUPPORTED_POOL_SIZE" in <lambda>()
319 internal const val MAX_SUPPORTED_POOL_SIZE = (1 shl BLOCKING_SHIFT) - 2 in <lambda>() constant