Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for withCancelCause (0.31 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/config_test.go

    				}
    			}
    		}
    	}
    }
    
    func TestNewWithDelegate(t *testing.T) {
    	_, ctx := ktesting.NewTestContext(t)
    	ctx, cancel := context.WithCancelCause(ctx)
    	defer cancel(errors.New("test is done"))
    	delegateConfig := NewConfig(codecs)
    	delegateConfig.ExternalAddress = "192.168.10.4:443"
    	delegateConfig.PublicAddress = netutils.ParseIPSloppy("192.168.10.4")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/dra/plugin/noderesources.go

    	defer c.mutex.Unlock()
    
    	if active := c.activePlugins[driverName]; active != nil {
    		active.cancel(errors.New("plugin has re-registered"))
    	}
    	active := &activePlugin{}
    	cancelCtx, cancel := context.WithCancelCause(c.ctx)
    	active.cancel = cancel
    	c.activePlugins[driverName] = active
    	c.queue.Add(driverName)
    
    	c.wg.Add(1)
    	go func() {
    		defer c.wg.Done()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 20:12:53 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. internal/grid/muxclient.go

    }
    
    // Response is a response from the server.
    type Response struct {
    	Msg []byte
    	Err error
    }
    
    func newMuxClient(ctx context.Context, muxID uint64, parent *Connection) *muxClient {
    	ctx, cancelFn := context.WithCancelCause(ctx)
    	return &muxClient{
    		MuxID:              muxID,
    		ctx:                ctx,
    		cancelFn:           cancelFn,
    		parent:             parent,
    		LastPong:           time.Now().UnixNano(),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    	// Canceling the parent context does not immediately cancel the HTTP server.
    	// We only inherit context values here and deal with cancellation ourselves.
    	stopHTTPServerCtx, stopHTTPServer := context.WithCancelCause(context.WithoutCancel(ctx))
    	go func() {
    		defer stopHTTPServer(errors.New("time to stop HTTP server"))
    
    		timeToStopHttpServerCh := notAcceptingNewRequestCh.Signaled()
    		if s.ShutdownSendRetryAfter {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  5. internal/grid/connection.go

    // handleMessages will handle incoming messages on conn.
    // caller *must* hold reconnectMu.
    func (c *Connection) handleMessages(ctx context.Context, conn net.Conn) {
    	c.updateState(StateConnected)
    	ctx, cancel := context.WithCancelCause(ctx)
    	defer cancel(ErrDisconnected)
    
    	// This will ensure that is something asks to disconnect and we are blocked on reads/writes
    	// the connection will be closed and readers/writers will unblock.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  6. cmd/erasure-server-pool.go

    	if err := checkListObjsArgs(ctx, bucket, prefix, ""); err != nil {
    		xioutil.SafeClose(results)
    		return err
    	}
    	parentCtx := ctx
    	ctx, cancelCause := context.WithCancelCause(ctx)
    	var entries []chan metaCacheEntry
    
    	for poolIdx, erasureSet := range z.serverPools {
    		for setIdx, set := range erasureSet.sets {
    			set := set
    			listOut := make(chan metaCacheEntry, 1)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  7. src/net/http/transport.go

    	//     after reading the request body.
    	//   - For an HTTP/2 request, RoundTrip cancels this context after the HTTP/2
    	//     RoundTripper returns.
    	ctx, cancel := context.WithCancelCause(req.Context())
    
    	// Convert Request.Cancel into context cancelation.
    	if origReq.Cancel != nil {
    		go awaitLegacyCancel(ctx, cancel, origReq)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"CancelFunc", Type, 7},
    		{"Canceled", Var, 7},
    		{"Cause", Func, 20},
    		{"Context", Type, 7},
    		{"DeadlineExceeded", Var, 7},
    		{"TODO", Func, 7},
    		{"WithCancel", Func, 7},
    		{"WithCancelCause", Func, 20},
    		{"WithDeadline", Func, 7},
    		{"WithDeadlineCause", Func, 21},
    		{"WithTimeout", Func, 7},
    		{"WithTimeoutCause", Func, 21},
    		{"WithValue", Func, 7},
    		{"WithoutCancel", Func, 21},
    	},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  9. api/go1.20.txt

    pkg bytes, func CutPrefix([]uint8, []uint8) ([]uint8, bool) #42537
    pkg bytes, func CutSuffix([]uint8, []uint8) ([]uint8, bool) #42537
    pkg context, func Cause(Context) error #51365
    pkg context, func WithCancelCause(Context) (Context, CancelCauseFunc) #51365
    pkg context, type CancelCauseFunc func(error) #51365
    pkg crypto/ecdh, func P256() Curve #52221
    pkg crypto/ecdh, func P384() Curve #52221
    pkg crypto/ecdh, func P521() Curve #52221
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 21:23:32 UTC 2023
    - 602.6K bytes
    - Viewed (1)
Back to top