Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 812 for pcancel (0.14 sec)

  1. src/net/pipe.go

    	if d.timer != nil && !d.timer.Stop() {
    		<-d.cancel // Wait for the timer callback to finish and close cancel
    	}
    	d.timer = nil
    
    	// Time is zero, then there is no deadline.
    	closed := isClosedChan(d.cancel)
    	if t.IsZero() {
    		if closed {
    			d.cancel = make(chan struct{})
    		}
    		return
    	}
    
    	// Time in the future, setup a timer to cancel in the future.
    	if dur := time.Until(t); dur > 0 {
    		if closed {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. cmd/jwt_test.go

    	return token.SignedString([]byte(secretKey))
    }
    
    // Tests web request authenticator.
    func TestWebRequestAuthenticate(t *testing.T) {
    	ctx, cancel := context.WithCancel(context.Background())
    	defer cancel()
    
    	obj, fsDir, err := prepareFS(ctx)
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer os.RemoveAll(fsDir)
    	if err = newTestConfig(globalMinioDefaultRegion, obj); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 19 16:45:14 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/SettableFutureTest.java

        async.setFuture(inner);
        async.cancel(false);
        assertTrue(inner.isCancelled());
        assertFalse(inner.wasInterrupted());
        assertThrows(CancellationException.class, () -> inner.get());
      }
    
      public void testCancel_beforeSet() throws Exception {
        SettableFuture<Object> async = SettableFuture.create();
        async.cancel(true);
        assertFalse(async.set(42));
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/lostcancel/lostcancel.go

    		// Look for [{AssignStmt,ValueSpec} CallExpr SelectorExpr]:
    		//
    		//   ctx, cancel    := context.WithCancel(...)
    		//   ctx, cancel     = context.WithCancel(...)
    		//   var ctx, cancel = context.WithCancel(...)
    		//
    		if !isContextWithCancel(pass.TypesInfo, n) || !isCall(stack[len(stack)-2]) {
    			return true
    		}
    		var id *ast.Ident // id of cancel var
    		stmt := stack[len(stack)-3]
    		switch stmt := stmt.(type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/runtime/runtime.go

    			klog.V(5).Infof("Attempting to remove container %v", container)
    
    			ctx, cancel := defaultContext()
    			if err := runtime.impl.StopPodSandbox(ctx, runtime.runtimeService, container); err != nil {
    				lastErr = errors.Wrapf(err, "failed to stop running pod %s", container)
    				cancel()
    				continue
    			}
    			cancel()
    
    			ctx, cancel = defaultContext()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. src/os/exec/exec_test.go

    }
    
    func TestCancelErrors(t *testing.T) {
    	t.Parallel()
    
    	// If Cancel returns a non-ErrProcessDone error and the process
    	// exits successfully, Wait should wrap the error from Cancel.
    	t.Run("success after error", func(t *testing.T) {
    		t.Parallel()
    
    		ctx, cancel := context.WithCancel(context.Background())
    		defer cancel()
    
    		cmd := helperCommandContext(t, ctx, "pipetest")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/SettableFutureTest.java

        async.setFuture(inner);
        async.cancel(false);
        assertTrue(inner.isCancelled());
        assertFalse(inner.wasInterrupted());
        assertThrows(CancellationException.class, () -> inner.get());
      }
    
      public void testCancel_beforeSet() throws Exception {
        SettableFuture<Object> async = SettableFuture.create();
        async.cancel(true);
        assertFalse(async.set(42));
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  8. pkg/registry/flowcontrol/rest/storage_flowcontrol_test.go

    package rest
    
    import (
    	"context"
    	"testing"
    	"time"
    )
    
    func TestContextFromChannelAndMaxWaitDurationWithChannelClosed(t *testing.T) {
    	stopCh := make(chan struct{})
    	ctx, cancel := contextFromChannelAndMaxWaitDuration(stopCh, time.Hour)
    	defer cancel()
    
    	select {
    	case <-ctx.Done():
    		t.Fatalf("Expected the derived context to be not cancelled, but got: %v", ctx.Err())
    	default:
    	}
    
    	close(stopCh)
    
    	<-ctx.Done()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 17 16:08:39 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonCancelForwarder.java

    import org.gradle.launcher.daemon.protocol.Cancel;
    
    public class DaemonCancelForwarder implements Stoppable {
        private static final Logger LOGGER = Logging.getLogger(DaemonCancelForwarder.class);
    
        private final Runnable cancellationCallback;
        private final BuildCancellationToken cancellationToken;
    
        public DaemonCancelForwarder(final Dispatch<? super Cancel> dispatch, BuildCancellationToken cancellationToken) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. okhttp-sse/src/test/java/okhttp3/sse/internal/EventSourceRecorder.kt

        get().log("[ES] onFailure", Platform.INFO, t)
        events.add(Failure(t, response))
        drainCancelQueue(eventSource)
      }
    
      private fun drainCancelQueue(eventSource: EventSource) {
        if (cancel) {
          cancel = false
          eventSource.cancel()
        }
      }
    
      private fun nextEvent(): Any {
        return events.poll(10, TimeUnit.SECONDS)
          ?: throw AssertionError("Timed out waiting for event.")
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top