Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 112 for timeEnd (0.41 sec)

  1. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/resolveExtensionInfoProvider/AbstractResolveExtensionInfoProviderTest.kt

                appendLine("Resolve extension navigation targets: ${navTargets.size}")
                withIndent { navTargets.forEach { appendLine(it.toString()) } }
            }
        }.trimEnd()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/connection_test.go

    	raw := spdyConn.(*connection).conn
    	if err := raw.Wait(15 * time.Second); err != nil {
    		t.Fatalf("client: timed out waiting for connection closure: %v", err)
    	}
    
    	expired := time.NewTimer(15 * time.Second)
    	defer expired.Stop()
    	i := 0
    	for {
    		select {
    		case <-expired.C:
    			t.Fatalf("timed out waiting for proxy and/or server closure")
    		case <-serverDone:
    			i++
    		case <-proxyDone:
    			i++
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 11:58:57 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  3. test/typeparam/chansimp.dir/main.go

    	}
    }
    
    func TestSink() {
    	c := a.Sink[int](context.Background())
    	after := time.NewTimer(time.Minute)
    	defer after.Stop()
    	send := func(v int) {
    		select {
    		case c <- v:
    		case <-after.C:
    			panic("timed out sending to Sink")
    		}
    	}
    	send(1)
    	send(2)
    	send(3)
    	close(c)
    }
    
    func TestExclusive() {
    	val := 0
    	ex := a.MakeExclusive(&val)
    
    	var wg sync.WaitGroup
    	f := func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/wait/error.go

    //
    // Deprecated: This type will be made private in favor of Interrupted()
    // for checking errors or ErrorInterrupted(err) for returning a wrapped error.
    var ErrWaitTimeout = ErrorInterrupted(errors.New("timed out waiting for the condition"))
    
    // Interrupted returns true if the error indicates a Poll, ExponentialBackoff, or
    // Until loop exited for any reason besides the condition returning true or an
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 19:14:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/finisher/finisher_test.go

    		reason                     string
    	}{
    		{
    			name:            "ResultFunc function returns a result after the request had timed out",
    			object:          &example.Pod{},
    			postTimeoutWait: 5 * time.Minute,
    		},
    		{
    			name:            "ResultFunc function returns an error after the request had timed out",
    			err:             errors.New("my error"),
    			postTimeoutWait: 5 * time.Minute,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 14:20:33 UTC 2021
    - 8.2K bytes
    - Viewed (0)
  6. src/internal/trace/event/event.go

    	// trace reader.
    	//
    	// Events that are not "timed" are considered "structural"
    	// since they either need significant reinterpretation or
    	// otherwise aren't actually surfaced by the trace reader.
    	IsTimedEvent bool
    
    	// HasData is true if the event has trailer consisting of a
    	// varint length followed by unencoded bytes of some data.
    	//
    	// An event may not be both a timed event and have data.
    	HasData bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. src/runtime/sys_linux_mipsx.s

    	SYSCALL
    	RET
    
    TEXT runtime·timer_create(SB),NOSPLIT,$0-16
    	MOVW	clockid+0(FP), R4
    	MOVW	sevp+4(FP), R5
    	MOVW	timerid+8(FP), R6
    	MOVW	$SYS_timer_create, R2
    	SYSCALL
    	MOVW	R2, ret+12(FP)
    	RET
    
    TEXT runtime·timer_settime(SB),NOSPLIT,$0-20
    	MOVW	timerid+0(FP), R4
    	MOVW	flags+4(FP), R5
    	MOVW	new+8(FP), R6
    	MOVW	old+12(FP), R7
    	MOVW	$SYS_timer_settime, R2
    	SYSCALL
    	MOVW	R2, ret+16(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 20:57:24 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/change_test.go

    	updateCRD()
    
    	drained := make(chan struct{})
    	go func() {
    		defer close(drained)
    		wg.Wait()
    	}()
    
    	select {
    	case <-drained:
    	case <-time.After(wait.ForeverTestTimeout):
    		t.Fatal("timed out waiting for watchers to be terminated")
    	}
    
    	stopChan := make(chan struct{})
    
    	// Set up loop to modify CRD in the background
    	wg.Add(1)
    	go func() {
    		defer wg.Done()
    		for {
    			select {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:59:03 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/buildevents/BuildStartedTime.java

     *
     * The build is considered to have started as soon as the user, or some tool, initiated the build.
     * During continuous build, subsequent builds are timed from when changes are noticed.
     */
    public class BuildStartedTime {
    
        private volatile long startTime;
    
        public static BuildStartedTime startingAt(long startTime) {
            return new BuildStartedTime(startTime);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 13 03:50:47 UTC 2017
    - 1.4K bytes
    - Viewed (0)
  10. src/internal/testenv/exec.go

    				// after (or too close before) the test has already timed out.
    				// Add a shorter timeout so that the test will produce useful output.
    				ctx, cancelCtx = context.WithTimeout(ctx, cmdTimeout)
    			}
    		}
    	}
    
    	cmd := exec.CommandContext(ctx, name, args...)
    	cmd.Cancel = func() error {
    		if cancelCtx != nil && ctx.Err() == context.DeadlineExceeded {
    			// The command timed out due to running too close to the test's deadline.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 27 17:53:23 UTC 2023
    - 7.5K bytes
    - Viewed (0)
Back to top