Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 167 for timeEnd (0.14 sec)

  1. src/cmd/cgo/internal/testcarchive/carchive_test.go

    	sb := new(strings.Builder)
    	cmd.Stdout = sb
    	cmd.Stderr = sb
    	if err := cmd.Start(); err != nil {
    		t.Fatal(err)
    	}
    
    	timer := time.AfterFunc(time.Minute,
    		func() {
    			t.Error("test program timed out")
    			cmd.Process.Kill()
    		},
    	)
    	defer timer.Stop()
    
    	err = cmd.Wait()
    	t.Logf("%v\n%s", cmd.Args, sb)
    	if err != nil {
    		t.Error(err)
    	}
    }
    
    // Issue 49288.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonStateCoordinator.java

                    }
                }
                LOGGER.debug("Cancel: daemon is still busy after grace period. Will force stop.");
                stopNow("cancel requested but timed out");
                return DaemonStopState.Forced;
            } finally {
                lock.unlock();
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/genericapiserver_test.go

    	}
    	// check client to make sure receive response.
    	select {
    	case <-graceCh:
    		t.Logf("server shutdown gracefully.")
    	case <-time.After(30 * time.Second):
    		t.Errorf("Timed out waiting for response.")
    	}
    }
    
    func TestWarningWithRequestTimeout(t *testing.T) {
    	type result struct {
    		err        interface{}
    		stackTrace string
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/Uninterruptibles.java

       * </ul>
       *
       * @throws ExecutionException if the computation threw an exception
       * @throws CancellationException if the computation was cancelled
       * @throws TimeoutException if the wait timed out
       */
      @CanIgnoreReturnValue
      @J2ktIncompatible
      @GwtIncompatible // TODO
      @SuppressWarnings("GoodTime") // should accept a java.time.Duration
      @ParametricNullness
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  5. src/syscall/zerrors_aix_ppc64.go

    	73:  "connection reset by peer",
    	74:  "no buffer space available",
    	75:  "socket is already connected",
    	76:  "socket is not connected",
    	77:  "can't send after socket shutdown",
    	78:  "connection timed out",
    	79:  "connection refused",
    	80:  "host is down",
    	81:  "no route to host",
    	82:  "restart the system call",
    	83:  "too many processes",
    	84:  "too many users",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 16:18:12 UTC 2019
    - 47.2K bytes
    - Viewed (0)
  6. pkg/controller/deployment/util/deployment_util.go

    		newStatus.AvailableReplicas > deployment.Status.AvailableReplicas
    }
    
    // used for unit testing
    var nowFn = func() time.Time { return time.Now() }
    
    // DeploymentTimedOut considers a deployment to have timed out once its condition that reports progress
    // is older than progressDeadlineSeconds or a Progressing condition with a TimedOutReason reason already
    // exists.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenDynamicResolveIntegrationTest.groovy

            failure.assertHasCause('Could not resolve group:projectA:1.1')
            failure.assertHasCause("Could not GET '${repo1.uri}/group/projectA/1.1/projectA-1.1.pom'")
            failure.assertHasCause('Read timed out')
    
            when:
            server.resetExpectations()
            repo2.getModuleMetaData("group", "projectA").expectGet()
            projectA1.pom.expectGet()
            projectA2.pom.expectGet()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/Monitor.java

       * without the guard being satisfied (due to timeout, but not interrupt) can then immediately exit
       * the monitor without signalling. If it timed out without being signalled, it does not need to
       * "pass on" the signal to another thread. If it *was* signalled, then its guard must have been
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 18:22:01 UTC 2023
    - 38.6K bytes
    - Viewed (0)
  9. src/net/http/client.go

    // was an HTTP protocol error. A non-2xx response doesn't cause an
    // error. Any returned error will be of type [*url.Error]. The url.Error
    // value's Timeout method will report true if the request timed out.
    //
    // When err is nil, resp always contains a non-nil resp.Body.
    // Caller should close resp.Body when done reading from it.
    //
    // Get is a wrapper around DefaultClient.Get.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 06:06:11 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  10. pkg/controller/endpointslicemirroring/endpointslicemirroring_controller_test.go

    					return false, nil
    				}
    				return true, nil
    			})
    			if err != nil {
    				t.Fatal("Timed out waiting for expected actions")
    			}
    
    			endpointSlices := fetchEndpointSlices(t, client, namespace)
    			expectEndpointSlices(t, tc.expectedNumSlices, int(defaultMaxEndpointsPerSubset), *tc.endpoints, endpointSlices)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 12:57:29 UTC 2023
    - 13.9K bytes
    - Viewed (0)
Back to top