Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 598 for pcancel (0.63 sec)

  1. src/context/x_test.go

    	root, cancel := WithCancel(Background())
    	m := map[Context]CancelFunc{root: cancel}
    	q := []Context{root}
    	// Create a tree of contexts.
    	for len(q) != 0 && len(m) < 100 {
    		parent := q[0]
    		q = q[1:]
    		for i := 0; i < 4; i++ {
    			ctx, cancel := WithCancel(parent)
    			m[ctx] = cancel
    			q = append(q, ctx)
    		}
    	}
    	// Start all the cancels in a random order.
    	var wg sync.WaitGroup
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/Cancel.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.launcher.daemon.protocol;
    
    public class Cancel extends Message {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 702 bytes
    - Viewed (0)
  3. src/context/afterfunc_test.go

    	}
    }
    
    func (c *afterFuncContext) cancel(err error) {
    	c.mu.Lock()
    	defer c.mu.Unlock()
    	if c.err != nil {
    		return
    	}
    	c.err = err
    	for _, f := range c.afterFuncs {
    		go f()
    	}
    	c.afterFuncs = nil
    }
    
    func TestCustomContextAfterFuncCancel(t *testing.T) {
    	ctx0 := &afterFuncContext{}
    	ctx1, cancel := context.WithCancel(ctx0)
    	defer cancel()
    	ctx0.cancel(context.Canceled)
    	<-ctx1.Done()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 16:58:52 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. src/database/sql/example_service_test.go

    		// This is a long SELECT. Use the request context as the base of
    		// the context timeout, but give it some time to finish. If
    		// the client cancels before the query is done the query will also
    		// be canceled.
    		ctx, cancel := context.WithTimeout(r.Context(), 60*time.Second)
    		defer cancel()
    
    		var names []string
    		rows, err := db.QueryContext(ctx, "select p.name from people as p where p.active = true;")
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 20:21:26 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sync/errgroup/errgroup.go

    // first.
    func WithContext(ctx context.Context) (*Group, context.Context) {
    	ctx, cancel := withCancelCause(ctx)
    	return &Group{cancel: cancel}, ctx
    }
    
    // Wait blocks until all function calls from the Go method have returned, then
    // returns the first non-nil error (if any) from them.
    func (g *Group) Wait() error {
    	g.wg.Wait()
    	if g.cancel != nil {
    		g.cancel(g.err)
    	}
    	return g.err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/CancelExecutionStepTest.groovy

            then:
            result == delegateResult
    
            1 * delegate.execute(work, context) >> delegateResult
    
            then:
            0 *_
        }
    
        def "cancels execution when cancellation is requested"() {
            given:
            cancellationToken.cancel()
    
            when:
            step.execute(work, context)
    
            then:
            thrown BuildCancelledException
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/operations/BuildOperationQueue.java

         */
        void add(T operation);
    
        /**
         * Cancels all queued operations in this queue.  Any operations that have started will be allowed to complete.
         */
        void cancel();
    
        /**
         * Waits for all previously added operations to complete.
         * <p>
         * On failure, some effort is made to cancel any operations that have not started.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. src/context/context.go

    	return contextName(c.Context) + ".WithCancel"
    }
    
    // cancel closes c.done, cancels each of c's children, and, if
    // removeFromParent is true, removes c from its parent's children.
    // cancel sets c.cause to cause if this is the first time c is canceled.
    func (c *cancelCtx) cancel(removeFromParent bool, err, cause error) {
    	if err == nil {
    		panic("context: internal error: missing cancel error")
    	}
    	if cause == nil {
    		cause = err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/work/ConditionalExecution.java

         */
        void complete();
    
        /**
         * Whether this execution has been completed or not.
         */
        boolean isComplete();
    
        /**
         * Cancels this execution.
         */
        void cancel();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. pkg/controller/tainteviction/timed_workers.go

    	timer := clock.AfterFunc(delay, fWithErrorLogging)
    	return &TimedWorker{
    		WorkItem:  args,
    		CreatedAt: createdAt,
    		FireAt:    fireAt,
    		Timer:     timer,
    	}
    }
    
    // Cancel cancels the execution of function by the `TimedWorker`
    func (w *TimedWorker) Cancel() {
    	if w != nil {
    		w.Timer.Stop()
    	}
    }
    
    // TimedWorkerQueue keeps a set of TimedWorkers that are still wait for execution.
    type TimedWorkerQueue struct {
    	sync.Mutex
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:23:56 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top