Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 994 for cancels (0.08 sec)

  1. docs/features/connections.md

     * Prefer to alternate IP addresses from different address families, (IPv6 / IPv4), starting with IPv6.
     * Don't start a new attempt until 250 ms after the most recent attempt was started.
     * Keep whichever TCP connection succeeds first and cancel all the others.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Feb 21 03:33:59 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r65/ToolingApiShutdownCrossVersionSpec.groovy

            sync.waitForAllPendingCalls(resultHandler)
            cancellation.cancel()
            Thread.sleep(200) // The daemon seems to drop messages arriving the same time
            connector.disconnect()
            resultHandler.finished()
    
            then:
            resultHandler.assertFailedWith(BuildCancelledException)
        }
    
        def "can call cancel after disconnect"() {
            buildFile.text = """
                task hang {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. src/net/http/transport_dial_test.go

    func (dt *transportDialTester) roundTrip() *transportDialTesterRoundTrip {
    	dt.t.Helper()
    	ctx, cancel := context.WithCancel(context.Background())
    	pr, pw := io.Pipe()
    	rt := &transportDialTesterRoundTrip{
    		t:           dt.t,
    		roundTripID: dt.roundTripCount,
    		done:        make(chan struct{}),
    		reqBody:     pw,
    		cancel:      cancel,
    	}
    	dt.roundTripCount++
    	dt.t.Logf("RoundTrip %v: started", rt.roundTripID)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:11:57 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/batch/v1beta1/types_swagger_doc_generated.go

    	"suspend":                    "This flag tells the controller to suspend subsequent executions, it does not apply to already started executions.  Defaults to false.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 11:58:59 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/batch/v1beta1/generated.proto

      // Valid values are:
      //
      // - "Allow" (default): allows CronJobs to run concurrently;
      // - "Forbid": forbids concurrent runs, skipping next run if previous run hasn't finished yet;
      // - "Replace": cancels currently running job and replaces it with a new one
      // +optional
      optional string concurrencyPolicy = 3;
    
      // This flag tells the controller to suspend subsequent executions, it does
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/script/state.go

    		if k, v, ok := strings.Cut(kv, "="); ok {
    			envMap[k] = v
    		}
    	}
    
    	s := &State{
    		ctx:     ctx,
    		cancel:  cancel,
    		workdir: absWork,
    		pwd:     absWork,
    		env:     env,
    		envMap:  envMap,
    	}
    	s.Setenv("PWD", absWork)
    	return s, nil
    }
    
    // CloseAndWait cancels the State's Context and waits for any background commands to
    // finish. If any remaining background command ended in an unexpected state,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:02 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/batch/v1beta1/generated.proto

      // Valid values are:
      //
      // - "Allow" (default): allows CronJobs to run concurrently;
      // - "Forbid": forbids concurrent runs, skipping next run if previous run hasn't finished yet;
      // - "Replace": cancels currently running job and replaces it with a new one
      // +optional
      optional string concurrencyPolicy = 3;
    
      // This flag tells the controller to suspend subsequent executions, it does
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. src/os/signal/signal_test.go

    	Notify(c1, syscall.SIGWINCH)
    	Notify(c2, syscall.SIGHUP)
    	quiesce()
    }
    
    // Test that Reset cancels registration for listed signals on all channels.
    func TestReset(t *testing.T) {
    	testCancel(t, false)
    }
    
    // Test that Ignore cancels registration for listed signals on all channels.
    func TestIgnore(t *testing.T) {
    	testCancel(t, true)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 15:34:56 UTC 2023
    - 27.2K bytes
    - Viewed (0)
  9. src/runtime/lock_js.go

    func (e *timeoutEvent) diff(x int64) int64 {
    	if e == nil {
    		return 0
    	}
    
    	diff := x - idleTimeout.time
    	if diff < 0 {
    		diff = -diff
    	}
    	return diff
    }
    
    // clear cancels this timeout event.
    func (e *timeoutEvent) clear() {
    	if e == nil {
    		return
    	}
    
    	clearTimeoutEvent(e.id)
    }
    
    // The timeout event started by beforeIdle.
    var idleTimeout *timeoutEvent
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:02:20 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  10. src/runtime/netpoll_windows.go

    	)
    	mp := getg().m
    	// A wait completion packet can only be associated with one timer at a time,
    	// so we need to cancel the previous one if it exists. This wouldn't be necessary
    	// if the poller would only be woken up by the timer, in which case the association
    	// would be automatically canceled, but it can also be woken up by other events,
    	// such as a netpollBreak, so we can get to this point with a timer that hasn't
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top