Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for timeout (4.24 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/concurrent/BuildServices.kt

    }
    
    
    internal
    class JavaSystemPropertiesAsyncIOScopeSettings : AsyncIOScopeSettings {
    
        companion object {
            const val IO_ACTION_TIMEOUT_SYSTEM_PROPERTY = "org.gradle.kotlin.dsl.internal.io.timeout"
            val DEFAULT_IO_ACTION_TIMEOUT = Duration.ofMinutes(1).toMillis()
        }
    
        override val ioActionTimeoutMs: Long by lazy {
            System.getProperty(IO_ACTION_TIMEOUT_SYSTEM_PROPERTY)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/util/RerunFlakyTest.kt

        val testTaskParameterName = "testTask"
        val testNameParameterName = "testName"
        val testTaskOptionsParameterName = "testTaskOptions"
        val daemon = true
        applyDefaultSettings(os, arch, buildJvm = BuildToolBuildJvm, timeout = 0)
    
        // Show all failed tests here, since that is what we are interested in
        failureConditions.supportTestRetry = false
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/util/AdHocPerformanceScenario.kt

        val id = "Util_Performance_AdHocPerformanceScenario${os.asName()}${arch.asName()}"
        name = "AdHoc Performance Scenario - ${os.asName()} ${arch.asName()}"
        id(id)
    
        applyPerformanceTestSettings(os = os, arch = arch, timeout = 420)
        artifactRules = individualPerformanceTestArtifactRules
    
        params {
            text(
                "performance.baselines",
                "",
                display = ParameterDisplay.PROMPT,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/util/concurrent/testing/TestingExecutors.java

          return shutdown;
        }
    
        @Override
        public boolean isTerminated() {
          return shutdown;
        }
    
        @Override
        public boolean awaitTermination(long timeout, TimeUnit unit) {
          return true;
        }
    
        @Override
        public void execute(Runnable runnable) {}
    
        @Override
        public <V> ListenableScheduledFuture<V> schedule(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 17:12:37 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/bean-serialization-services/src/main/kotlin/org/gradle/internal/serialize/beans/services/BeanSchema.kt

        get() = isTransient(modifiers)
    
    
    private
    val Field.isStatic
        get() = isStatic(modifiers)
    
    
    private
    val abstractTaskRelevantFields = listOf(
        "actions",
        "enabled",
        "timeout",
        "onlyIfSpec",
        "logger",
    )
    
    
    internal
    fun AccessibleObject.makeAccessible() {
        @Suppress("deprecation")
        if (!isAccessible) isAccessible = true
    }
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/driver/driver.go

    }
    
    // A Fetcher reads and returns the profile named by src, using
    // the specified duration and timeout. It returns the fetched
    // profile and a string indicating a URL from where the profile
    // was fetched, which may be different than src.
    type Fetcher interface {
    	Fetch(src string, duration, timeout time.Duration) (*profile.Profile, string, error)
    }
    
    // A Symbolizer introduces symbol information into a profile.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/util/concurrent/testing/TestingExecutors.java

          return shutdown;
        }
    
        @Override
        public boolean isTerminated() {
          return shutdown;
        }
    
        @Override
        public boolean awaitTermination(long timeout, TimeUnit unit) {
          return true;
        }
    
        @Override
        public void execute(Runnable runnable) {}
    
        @Override
        public <V> ListenableScheduledFuture<V> schedule(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 17:12:37 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top