Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 58 for cancelFn (2.32 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go

    	{121, "EREMOTEIO", "remote I/O error"},
    	{122, "EDQUOT", "disk quota exceeded"},
    	{123, "ENOMEDIUM", "no medium found"},
    	{124, "EMEDIUMTYPE", "wrong medium type"},
    	{125, "ECANCELED", "operation canceled"},
    	{126, "ENOKEY", "required key not available"},
    	{127, "EKEYEXPIRED", "key has expired"},
    	{128, "EKEYREVOKED", "key has been revoked"},
    	{129, "EKEYREJECTED", "key was rejected by service"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java

                return;
            }
            if (logger.isDebugEnabled()) {
                logger.debug("Closing HcHttpClient...");
            }
            if (connectionMonitorTask != null) {
                connectionMonitorTask.cancel();
            }
            if (httpClient != null) {
                try {
                    httpClient.close();
                } catch (final IOException e) {
                    logger.error("Failed to close httpClient.", e);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 09 09:28:25 UTC 2024
    - 41K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/codehost/codehost.go

    	}
    	// TODO: Impose limits on command output size.
    	// TODO: Set environment to get English error messages.
    	var stderr bytes.Buffer
    	var stdout bytes.Buffer
    	c := exec.CommandContext(ctx, cmd[0], cmd[1:]...)
    	c.Cancel = func() error { return c.Process.Signal(os.Interrupt) }
    	c.Dir = dir
    	c.Stdin = stdin
    	c.Stderr = &stderr
    	c.Stdout = &stdout
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go

    	{121, "EREMOTEIO", "remote I/O error"},
    	{122, "EDQUOT", "disk quota exceeded"},
    	{123, "ENOMEDIUM", "no medium found"},
    	{124, "EMEDIUMTYPE", "wrong medium type"},
    	{125, "ECANCELED", "operation canceled"},
    	{126, "ENOKEY", "required key not available"},
    	{127, "EKEYEXPIRED", "key has expired"},
    	{128, "EKEYREVOKED", "key has been revoked"},
    	{129, "EKEYREJECTED", "key was rejected by service"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/buildlist.go

    	ctx, cancel := context.WithCancel(ctx)
    	defer cancel()
    
    	work := par.NewQueue(runtime.GOMAXPROCS(0))
    	for m := range mods {
    		m := m
    		work.Add(func() {
    			if ctx.Err() != nil {
    				return
    			}
    
    			summary, err := goModSummary(m)
    			if err != nil {
    				cancel()
    				return
    			}
    
    			for _, r := range summary.require {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. src/crypto/tls/common.go

    	ctx context.Context
    }
    
    // Context returns the context of the handshake that is in progress.
    // This context is a child of the context passed to HandshakeContext,
    // if any, and is canceled when the handshake concludes.
    func (c *ClientHelloInfo) Context() context.Context {
    	return c.ctx
    }
    
    // CertificateRequestInfo contains information from a server's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_386.go

    	{121, "EREMOTEIO", "remote I/O error"},
    	{122, "EDQUOT", "disk quota exceeded"},
    	{123, "ENOMEDIUM", "no medium found"},
    	{124, "EMEDIUMTYPE", "wrong medium type"},
    	{125, "ECANCELED", "operation canceled"},
    	{126, "ENOKEY", "required key not available"},
    	{127, "EKEYEXPIRED", "key has expired"},
    	{128, "EKEYREVOKED", "key has been revoked"},
    	{129, "EKEYREJECTED", "key was rejected by service"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/MoreExecutors.java

          }
    
          @Override
          public boolean cancel(boolean mayInterruptIfRunning) {
            boolean cancelled = super.cancel(mayInterruptIfRunning);
            if (cancelled) {
              // Unless it is cancelled, the delegate may continue being scheduled
              scheduledDelegate.cancel(mayInterruptIfRunning);
    
              // TODO(user): Cancel "this" if "scheduledDelegate" is cancelled.
            }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 39K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	{1146, "", ""},
    	{1147, "", ""},
    	{1148, "EDC8148I", "Protocol error."},
    	{1149, "EDC8149I", "Multihop not allowed."},
    	{1150, "", ""},
    	{1151, "", ""},
    	{1152, "EDC8152I", "The asynchronous I/O request has been canceled."},
    	{1159, "EDC8159I", "Function call was interrupted before any data was received."},
    	{1160, "EDC8160I", "Socket reuse is not supported."},
    	{1161, "EDC8161I", "The file system cannot currently be moved."},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/test/test.go

    // The bug was very timing sensitive; at the time of writing this
    // test would only trigger the bug about once out of every five runs.
    
    func test27660(t *testing.T) {
    	ctx, cancel := context.WithCancel(context.Background())
    	defer cancel()
    	ints := make([]int, 100)
    	locks := make([]sync.Mutex, 100)
    	// Slowly create threads so that ThreadSanitizer is forced to
    	// frequently resize its SyncClocks.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
Back to top