Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for sendErr (0.19 sec)

  1. cmd/erasure-server-pool.go

    	vcfg, _ := globalBucketVersioningSys.Get(bucket)
    	go func() {
    		defer cancelCause(nil)
    		defer xioutil.SafeClose(results)
    		sentErr := false
    		sendErr := func(err error) {
    			if !sentErr {
    				select {
    				case results <- itemOrErr[ObjectInfo]{Err: err}:
    					sentErr = true
    				case <-parentCtx.Done():
    				}
    			}
    		}
    		send := func(oi ObjectInfo) bool {
    			select {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  2. cmd/admin-handlers-users.go

    			return
    		}
    	}
    
    	// Check if we are creating svc account for request sender.
    	isSvcAccForRequestor := false
    	if targetUser == requestorUser || targetUser == requestorParentUser {
    		isSvcAccForRequestor = true
    	}
    
    	// If we are creating svc account for request sender, ensure
    	// that targetUser is a real user (i.e. not derived
    	// credentials).
    	if isSvcAccForRequestor {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  3. src/reflect/type.go

    type aTextOff = abi.TextOff
    
    // ChanDir represents a channel type's direction.
    type ChanDir int
    
    const (
    	RecvDir ChanDir             = 1 << iota // <-chan
    	SendDir                                 // chan<-
    	BothDir = RecvDir | SendDir             // chan
    )
    
    // arrayType represents a fixed array type.
    type arrayType = abi.ArrayType
    
    // chanType represents a channel type.
    type chanType = abi.ChanType
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener.go

    	httpOpts := &httpListenerOpts{
    		// Set useRemoteAddress to true for sidecar outbound listeners so that it picks up the localhost address of the sender,
    		// which is an internal address, so that trusted headers are not sanitized. This helps to retain the timeout headers
    		// such as "x-envoy-upstream-rq-timeout-ms" set by the calling application.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. cmd/bucket-handlers.go

    	writeSuccessResponseXML(w, encodedSuccessResponse)
    }
    
    // ListBucketsHandler - GET Service.
    // -----------
    // This implementation of the GET operation returns a list of all buckets
    // owned by the authenticated sender of the request.
    func (api objectAPIHandlers) ListBucketsHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := newContext(r, w, "ListBuckets")
    
    	defer logger.AuditLog(ctx, w, r, mustGetClaimsFromToken(r))
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
Back to top