Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for invalidSep (0.18 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode_string.go

    	_ = x[InvalidDotDotDotOperand-80]
    	_ = x[InvalidDotDotDot-81]
    	_ = x[UncalledBuiltin-82]
    	_ = x[InvalidAppend-83]
    	_ = x[InvalidCap-84]
    	_ = x[InvalidClose-85]
    	_ = x[InvalidCopy-86]
    	_ = x[InvalidComplex-87]
    	_ = x[InvalidDelete-88]
    	_ = x[InvalidImag-89]
    	_ = x[InvalidLen-90]
    	_ = x[SwappedMakeArgs-91]
    	_ = x[InvalidMake-92]
    	_ = x[InvalidReal-93]
    	_ = x[InvalidAssert-94]
    	_ = x[ImpossibleAssert-95]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. src/internal/types/errors/code_string.go

    	_ = x[MisplacedDotDotDot-79]
    	_ = x[InvalidDotDotDot-81]
    	_ = x[UncalledBuiltin-82]
    	_ = x[InvalidAppend-83]
    	_ = x[InvalidCap-84]
    	_ = x[InvalidClose-85]
    	_ = x[InvalidCopy-86]
    	_ = x[InvalidComplex-87]
    	_ = x[InvalidDelete-88]
    	_ = x[InvalidImag-89]
    	_ = x[InvalidLen-90]
    	_ = x[SwappedMakeArgs-91]
    	_ = x[InvalidMake-92]
    	_ = x[InvalidReal-93]
    	_ = x[InvalidAssert-94]
    	_ = x[ImpossibleAssert-95]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:50:48 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. src/go/types/builtins.go

    				return false
    			}) {
    				mode = value
    			}
    		}
    
    		if mode == invalid {
    			// avoid error if underlying type is invalid
    			if isValid(under(x.typ)) {
    				code := InvalidCap
    				if id == _Len {
    					code = InvalidLen
    				}
    				check.errorf(x, code, invalidArg+"%s for built-in %s", x, bin.name)
    			}
    			return
    		}
    
    		// record the signature before changing x.typ
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/builtins.go

    				return false
    			}) {
    				mode = value
    			}
    		}
    
    		if mode == invalid {
    			// avoid error if underlying type is invalid
    			if isValid(under(x.typ)) {
    				code := InvalidCap
    				if id == _Len {
    					code = InvalidLen
    				}
    				check.errorf(x, code, invalidArg+"%s for built-in %s", x, bin.name)
    			}
    			return
    		}
    
    		// record the signature before changing x.typ
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  5. src/go/types/expr.go

    			check.errorf(x, UnaddressableOperand, invalidOp+"cannot take address of %s", x)
    			x.mode = invalid
    			return
    		}
    		x.mode = value
    		x.typ = &Pointer{base: x.typ}
    		return
    
    	case token.ARROW:
    		u := coreType(x.typ)
    		if u == nil {
    			check.errorf(x, InvalidReceive, invalidOp+"cannot receive from %s (no core type)", x)
    			x.mode = invalid
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  6. cmd/generic-handlers.go

    				tc.ResponseRecorder.LogErrBody = true
    			}
    
    			defer logger.AuditLog(r.Context(), w, r, mustGetClaimsFromToken(r))
    			invalidReq := errorCodes.ToAPIErr(ErrInvalidRequest)
    			invalidReq.Description = fmt.Sprintf("%s (%s)", invalidReq.Description, err)
    			writeErrorResponse(r.Context(), w, invalidReq, r.URL)
    			atomic.AddUint64(&globalHTTPStats.rejectedRequestsInvalid, 1)
    			return
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 01:01:15 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go

    	expectInvalidKey("Create", store.Create(ctx, invalidKey, nil, nil, 0))
    	expectInvalidKey("Delete", store.Delete(ctx, invalidKey, nil, nil, nil, nil))
    	_, watchErr := store.Watch(ctx, invalidKey, storage.ListOptions{})
    	expectInvalidKey("Watch", watchErr)
    	expectInvalidKey("Get", store.Get(ctx, invalidKey, storage.GetOptions{}, nil))
    	expectInvalidKey("GetList", store.GetList(ctx, invalidKey, storage.ListOptions{}, nil))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/expr.go

    			check.errorf(x, UnaddressableOperand, invalidOp+"cannot take address of %s", x)
    			x.mode = invalid
    			return
    		}
    		x.mode = value
    		x.typ = &Pointer{base: x.typ}
    		return
    
    	case syntax.Recv:
    		u := coreType(x.typ)
    		if u == nil {
    			check.errorf(x, InvalidReceive, invalidOp+"cannot receive from %s (no core type)", x)
    			x.mode = invalid
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode.go

    	//  var _ = append(1, 2)
    	InvalidAppend
    
    	// InvalidCap occurs when an argument to the cap built-in function is not of
    	// supported type.
    	//
    	// See https://golang.org/ref/spec#Lengthand_capacity for information on
    	// which underlying types are supported as arguments to cap and len.
    	//
    	// Example:
    	//  var s = 2
    	//  var x = cap(s)
    	InvalidCap
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 34K bytes
    - Viewed (0)
  10. src/internal/types/errors/codes.go

    	//  var _ = append(1, 2)
    	InvalidAppend
    
    	// InvalidCap occurs when an argument to the cap built-in function is not of
    	// supported type.
    	//
    	// See https://golang.org/ref/spec#Length_and_capacity for information on
    	// which underlying types are supported as arguments to cap and len.
    	//
    	// Example:
    	//  var s = 2
    	//  var x = cap(s)
    	InvalidCap
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:50:48 UTC 2024
    - 33.7K bytes
    - Viewed (0)
Back to top