Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,735 for itemout (0.15 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskTimeoutIntegrationTest.groovy

                failure.assertHasCause("Timeout has been exceeded")
            }
        }
    
        def "other tasks still run after a timeout if --continue is used"() {
            given:
            buildFile << """
                task block() {
                    doLast {
                        Thread.sleep(60000)
                    }
                    timeout = Duration.ofMillis($TIMEOUT)
                }
    
                task foo() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/suggest/settings/SuggestSettingsBuilder.java

            timeoutSettings.scrollTimeout = timeout;
            return this;
        }
    
        public SuggestSettingsBuilder searchTimeout(final String timeout) {
            timeoutSettings.searchTimeout = timeout;
            return this;
        }
    
        public SuggestSettingsBuilder indexTimeout(final String timeout) {
            timeoutSettings.indexTimeout = timeout;
            return this;
        }
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/metrics/metrics_test.go

                apiserver_authorization_webhook_duration_seconds_bucket{name="wh1.example.com",result="timeout",le="0.025"} 0
                apiserver_authorization_webhook_duration_seconds_bucket{name="wh1.example.com",result="timeout",le="0.05"} 0
                apiserver_authorization_webhook_duration_seconds_bucket{name="wh1.example.com",result="timeout",le="0.1"} 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:01:15 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/Uninterruptibles.java

      /**
       * Invokes {@code latch.}{@link CountDownLatch#await(long, TimeUnit) await(timeout, unit)}
       * uninterruptibly.
       *
       * @since 28.0
       */
      @J2ktIncompatible
      @GwtIncompatible // concurrency
      public static boolean awaitUninterruptibly(CountDownLatch latch, Duration timeout) {
        return awaitUninterruptibly(latch, toNanosSaturated(timeout), TimeUnit.NANOSECONDS);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1/defaults_test.go

    		want *KMSConfiguration
    	}{
    		{
    			desc: "timeout not supplied",
    			in:   &KMSConfiguration{},
    			want: &KMSConfiguration{Timeout: defaultTimeout, CacheSize: &defaultCacheSize, APIVersion: defaultAPIVersion},
    		},
    		{
    			desc: "timeout supplied",
    			in:   &KMSConfiguration{Timeout: &v1.Duration{Duration: 1 * time.Minute}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/timeout/IntegrationTestTimeoutExtension.java

            runIfEnabled(timeout, () ->
                feature.getFeatureMethod().addInterceptor(new IntegrationTestTimeoutInterceptor(timeout))
            );
        }
    
        @Override
        public void visitFixtureAnnotation(IntegrationTestTimeout timeout, MethodInfo fixtureMethod) {
            runIfEnabled(timeout, () ->
                fixtureMethod.addInterceptor(new IntegrationTestTimeoutInterceptor(timeout))
            );
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/TimeoutStep.java

            if (timeoutProperty.isPresent()) {
                Duration timeout = timeoutProperty.get();
                if (timeout.isNegative()) {
                    throw new InvalidUserDataException("Timeout of " + work.getDisplayName() + " must be positive, but was " + timeout.toString().substring(2));
                }
                return executeWithTimeout(work, context, timeout);
            } else {
                return executeWithoutTimeout(work, context);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. src/net/timeout_test.go

    				c.Close()
    
    				if delta <= 1 && d.Timeout <= 1 {
    					t.Fatalf("can't reduce Timeout or Deadline")
    				}
    				if delta > 1 {
    					delta /= 2
    					t.Logf("reducing Deadline delta to %v", delta)
    				}
    				if d.Timeout > 1 {
    					d.Timeout /= 2
    					t.Logf("reducing Timeout to %v", d.Timeout)
    				}
    			}
    
    			if d.Deadline.IsZero() || afterDial.Before(d.Deadline) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 18:06:55 UTC 2024
    - 30K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/WholeOperationTimeoutTest.kt

          Request.Builder()
            .url(server.url("/"))
            .build()
        val call = client.newCall(request)
        call.timeout().timeout(250, TimeUnit.MILLISECONDS)
        assertFailsWith<IOException> {
          call.execute()
        }.also { expected ->
          assertThat(expected.message).isEqualTo("timeout")
          assertThat(call.isCanceled()).isTrue()
        }
      }
    
      @Test
      fun timeoutProcessingWithEnqueue() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/test_timeout.txt

    [short] skip
    env GO111MODULE=off
    cd a
    
    # If no timeout is set explicitly, 'go test' should set
    # -test.timeout to its internal deadline.
    go test -v . --
    stdout '10m0s'
    
    # An explicit -timeout argument should be propagated to -test.timeout.
    go test -v -timeout 30m . --
    stdout '30m0s'
    
    -- a/timeout_test.go --
    package t
    import (
    	"flag"
    	"fmt"
    	"testing"
    )
    func TestTimeout(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 04 20:38:05 UTC 2019
    - 448 bytes
    - Viewed (0)
Back to top