Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for timeEnd (1.47 sec)

  1. guava/src/com/google/common/util/concurrent/AbstractFuture.java

      // Gets and Timed Gets
      //
      // * Be responsive to interruption
      // * Don't create Waiter nodes if you aren't going to park, this helps reduce contention on the
      //   waiters field.
      // * Future completion is defined by when #value becomes non-null/non SetFuture
      // * Future completion can be observed if the waiters field contains a TOMBSTONE
    
      // Timed Get
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  2. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

      // Gets and Timed Gets
      //
      // * Be responsive to interruption
      // * Don't create Waiter nodes if you aren't going to park, this helps reduce contention on the
      //   waiters field.
      // * Future completion is defined by when #value becomes non-null/non SetFuture
      // * Future completion can be observed if the waiters field contains a TOMBSTONE
    
      // Timed Get
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    		}
    	} else {
    		if err != nil {
    			t.Fatalf("Failed to list objects: %v", err)
    		}
    	}
    
    	select {
    	case <-watchClosed:
    	case <-time.After(wait.ForeverTestTimeout):
    		t.Errorf("timed out waiting for watch to close")
    	}
    }
    
    func TestCacherDontMissEventsOnReinitialization(t *testing.T) {
    	makePod := func(i int) *example.Pod {
    		return &example.Pod{
    			ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  4. src/net/http/transport.go

    		panic("net/http: internal error: connCount underflow")
    	}
    
    	// Can we hand this count to a goroutine still waiting to dial?
    	// (Some goroutines on the wait list may have timed out or
    	// gotten a connection another way. If they're all gone,
    	// we don't want to kick off any spurious dial operations.)
    	if q := t.connsPerHostWait[key]; q.len() > 0 {
    		done := false
    		for q.len() > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top