Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for timeEnd (0.24 sec)

  1. 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)
  2. 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)
  3. pkg/volume/testing/testing.go

    	if fv.VolName == TimeoutAndFailOnMountDeviceVolumeName {
    		_, ok := fv.DeviceMountState[fv.VolName]
    		if !ok {
    			fv.DeviceMountState[fv.VolName] = deviceMountUncertain
    			return "", volumetypes.NewUncertainProgressError("timed out mounting error")
    		}
    		fv.DeviceMountState[fv.VolName] = deviceNotMounted
    		return "", fmt.Errorf("error mapping disk: %s", fv.VolName)
    	}
    
    	if fv.VolName == SuccessAndTimeoutDeviceName {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. src/crypto/tls/tls_test.go

    		t.Fatal("Write which previously failed should still time out")
    	}
    
    	// Verify the error
    	if ne := err.(net.Error); ne.Temporary() != false {
    		t.Error("Write timed out but incorrectly classified the error as Temporary")
    	}
    	if !isTimeoutError(err) {
    		t.Error("Write timed out but did not classify the error as a Timeout")
    	}
    }
    
    type readerFunc func([]byte) (int, error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  5. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    		t.Logf("Warning: MultiAttach error not yet set on Node. Will retry.")
    		return false, nil
    	}
    
    	err := retryWithExponentialBackOff(100*time.Millisecond, multAttachCheckFunc)
    	if err != nil {
    		t.Fatalf("Timed out waiting for MultiAttach Error to be set on non-attached node")
    	}
    }
    
    func waitForNewAttacherCallCount(
    	t *testing.T,
    	expectedCallCount int,
    	fakePlugin *volumetesting.FakeVolumePlugin) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  6. src/crypto/tls/conn.go

    	return c.conn.RemoteAddr()
    }
    
    // SetDeadline sets the read and write deadlines associated with the connection.
    // A zero value for t means [Conn.Read] and [Conn.Write] will not time out.
    // After a Write has timed out, the TLS state is corrupt and all future writes will return the same error.
    func (c *Conn) SetDeadline(t time.Time) error {
    	return c.conn.SetDeadline(t)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. src/syscall/zerrors_solaris_amd64.go

    	133: "transport endpoint is already connected",
    	134: "transport endpoint is not connected",
    	143: "cannot send after socket shutdown",
    	144: "too many references: cannot splice",
    	145: "connection timed out",
    	146: "connection refused",
    	147: "host is down",
    	148: "no route to host",
    	149: "operation already in progress",
    	150: "operation now in progress",
    	151: "stale NFS file handle",
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  8. 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)
  9. src/net/http/client_test.go

    		nextNonce++
    		sawSlowNonce = false
    		mu.Unlock()
    		res, err := cst.c.Get(cst.ts.URL + "/?nonce=" + nonce)
    		if err != nil {
    			if strings.Contains(err.Error(), "Client.Timeout") {
    				// Timed out before handler could respond.
    				t.Logf("timeout before response received")
    				continue
    			}
    			if runtime.GOOS == "windows" && strings.HasPrefix(runtime.GOARCH, "arm") {
    				testenv.SkipFlaky(t, 43120)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  10. src/testing/testing.go

    //	        rand.Int()
    //	    }
    //	}
    //
    // The benchmark function must run the target code b.N times.
    // It is called multiple times with b.N adjusted until the
    // benchmark function lasts long enough to be timed reliably.
    // The output
    //
    //	BenchmarkRandInt-8   	68453040	        17.8 ns/op
    //
    // means that the loop ran 68453040 times at a speed of 17.8 ns per loop.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top