Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 376 for timeEnd (0.14 sec)

  1. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperHttpIntegrationTest.groovy

            then:
            failure.assertHasErrorOutput("Downloading from ${getDefaultBaseUrl()}/$TEST_DISTRIBUTION_URL failed: timeout (10000ms)")
            failure.assertHasErrorOutput('Read timed out')
        }
    
        @Issue('https://github.com/gradle/gradle-private/issues/3032')
        def "does not leak credentials when download times out"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/ingress/controller_test.go

    		configCh <- curr
    	}
    
    	wait := func() config.Config {
    		select {
    		case x := <-configCh:
    			return x
    		case <-time.After(time.Second * 10):
    			t.Fatalf("timed out waiting for config")
    		}
    		return config.Config{}
    	}
    
    	controller.RegisterEventHandler(gvk.VirtualService, configHandler)
    	stopCh := make(chan struct{})
    	go controller.Run(stopCh)
    	defer close(stopCh)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 18:34:32 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  3. src/syscall/exec_linux_test.go

    	}
    }
    
    func TestCloneTimeNamespace(t *testing.T) {
    	testenv.MustHaveExec(t)
    
    	if os.Getenv("GO_WANT_HELPER_PROCESS") == "1" {
    		timens, err := os.Readlink("/proc/self/ns/time")
    		if err != nil {
    			fmt.Fprintln(os.Stderr, err)
    			os.Exit(2)
    		}
    		fmt.Print(string(timens))
    		os.Exit(0)
    	}
    
    	exe, err := os.Executable()
    	if err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

       */
      private static TestCase generateGuardWithWrongMonitorTestCase(
          final Method method, final boolean fair1, final boolean fair2) {
        final boolean timed = isTimed(method); // Not going to bother with all timeouts, just 0ms.
        return new TestCase(method.getName() + (timed ? "(0ms)" : "()") + "/WrongMonitor->IMSE") {
          @Override
          protected void runTest() throws Throwable {
            Monitor monitor1 = new Monitor(fair1);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  5. src/crypto/tls/cache_test.go

    		}
    	}
    
    	timeoutRefCheck := func(t *testing.T, key string, count int64) {
    		t.Helper()
    		c := time.After(4 * time.Second)
    		for {
    			select {
    			case <-c:
    				t.Fatal("timed out waiting for expected ref count")
    			default:
    				e, ok := cc.Load(key)
    				if !ok && count != 0 {
    					t.Fatal("cache does not contain expected key")
    				} else if count == 0 && !ok {
    					return
    				}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 07 19:46:27 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyUnresolvedModuleIntegrationTest.groovy

            failure.assertHasCause("Could not GET '${mavenHttpRepo.uri.toString()}/${group}/${module}/maven-metadata.xml'.")
            failure.assertHasCause("Read timed out")
        }
    
        private void assertDependencyListingInternalServerError(String group, String module, String version) {
            failure.assertHasCause("Could not resolve ${group}:${module}:${version}.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 11:51:18 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  7. pkg/kubelet/pluginmanager/pluginwatcher/plugin_watcher_test.go

    		time.Duration(500*time.Millisecond),
    		func() (bool, error) {
    			if dsw.PluginExists(socketPath) {
    				return true, nil
    			}
    			return false, nil
    		},
    	)
    	if err != nil {
    		t.Fatalf("Timed out waiting for plugin to be added to desired state of world cache:\n%s.", socketPath)
    	}
    }
    
    func waitForUnregistration(
    	t *testing.T,
    	socketPath string,
    	dsw cache.DesiredStateOfWorld) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 04 06:56:50 UTC 2023
    - 8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    		case <-time.After(wait.ForeverTestTimeout):
    			t.Errorf("Expected the server handler to panic for request: %q", firstRequestPathPanic)
    		}
    		if isClientTimeout(err) {
    			t.Fatalf("the client has unexpectedly timed out - request: %q error: %s", firstRequestPathPanic, err.Error())
    		}
    		expectResetStreamError(t, err)
    
    		// the second request should be served successfully.
    		response, err := requestGetter(secondRequestPathShouldWork)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  9. pkg/revisions/default_watcher_test.go

    	select {
    	case rev := <-revisionChan:
    		if rev != expected {
    			t.Fatalf("expected revision %q to be produced on chan, got %q", expected, rev)
    		}
    	case <-time.After(time.Second * 5):
    		t.Fatalf("timed out waiting for value on default revision chan")
    	}
    }
    
    func TestNoDefaultRevision(t *testing.T) {
    	stop := make(chan struct{})
    	client := kube.NewFakeClient()
    	w := NewDefaultWatcher(client, "default")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 23 17:46:59 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics.go

    )
    
    const (
    	// The executing request handler panicked after the request had
    	// been timed out by the apiserver.
    	PostTimeoutHandlerPanic = "panic"
    
    	// The executing request handler has returned an error to the post-timeout
    	// receiver after the request had been timed out by the apiserver.
    	PostTimeoutHandlerError = "error"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 35K bytes
    - Viewed (0)
Back to top