Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 933 for invalid11 (0.17 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/catalog/parser/TomlCatalogFileParserTest.groovy

            'invalid7'  | "Group for 'test' must not be empty"
            'invalid8'  | "Group for alias 'test' wasn't set"
            'invalid9'  | "Name for alias 'test' wasn't set"
            'invalid10' | "Expected a boolean but value of 'rejectAll' is a string."
            'invalid11' | "Expected an array but value of 'reject' is a table."
            'invalid12' | "In version catalog libs, unknown top level elements [toto, tata]"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 05:41:21 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. docs/pt/docs/tutorial/handling-errors.md

    O `RequestValidationError` contém o `body` que ele recebeu de dados inválidos.
    
    Você pode utilizá-lo enquanto desenvolve seu app para conectar o *body* e debugá-lo, e assim retorná-lo ao usuário, etc.
    
    Tente enviar um item inválido como este:
    
    ```JSON
    {
      "title": "towel",
      "size": "XL"
    }
    ```
    
    Você receberá uma *response* informando-o de que a data é inválida, e contendo o *body* recebido:
    
    ```JSON hl_lines="12-15"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/invalid.status.yaml.golden

        - group: gateway.networking.k8s.io
          kind: GRPCRoute
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      creationTimestamp: null
      name: invalid-gateway-address
      namespace: invalid-gateway-address
    spec: null
    status:
      conditions:
      - lastTransitionTime: fake
        message: only Hostname is supported, ignoring [1.2.3.4]
        reason: UnsupportedAddress
        status: "False"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. src/go/types/index.go

    		x.mode = invalid
    		return
    
    	case *Basic:
    		if isString(u) {
    			if e.Slice3 {
    				at := e.Max
    				if at == nil {
    					at = e // e.Index[2] should be present but be careful
    				}
    				check.error(at, InvalidSliceExpr, invalidOp+"3-index slice of string")
    				x.mode = invalid
    				return
    			}
    			valid = true
    			if x.mode == constant_ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:05 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/index.go

    		x.mode = invalid
    		return
    
    	case *Basic:
    		if isString(u) {
    			if e.Full {
    				at := e.Index[2]
    				if at == nil {
    					at = e // e.Index[2] should be present but be careful
    				}
    				check.error(at, InvalidSliceExpr, invalidOp+"3-index slice of string")
    				x.mode = invalid
    				return
    			}
    			valid = true
    			if x.mode == constant_ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 15 16:16:58 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  6. pkg/registry/apps/statefulset/strategy_test.go

    		}
    		invalidPs := ps
    		invalidPs.Spec.PersistentVolumeClaimRetentionPolicy.WhenDeleted = apps.PersistentVolumeClaimRetentionPolicyType("invalid type")
    		Strategy.PrepareForUpdate(ctx, validPs, invalidPs)
    		errs = Strategy.ValidateUpdate(ctx, validPs, ps)
    		if len(errs) != 0 {
    			t.Errorf("invalid updates to PersistentVolumeClaimRetentionPolicyType should be allowed: %v", errs)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  7. src/go/types/stmt.go

    		check.expr(nil, &val, s.Value)
    		if ch.mode == invalid || val.mode == invalid {
    			return
    		}
    		u := coreType(ch.typ)
    		if u == nil {
    			check.errorf(inNode(s, s.Arrow), InvalidSend, invalidOp+"cannot send to %s: no core type", &ch)
    			return
    		}
    		uch, _ := u.(*Chan)
    		if uch == nil {
    			check.errorf(inNode(s, s.Arrow), InvalidSend, invalidOp+"cannot send to non-channel %s", &ch)
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  8. src/go/types/builtins.go

    				check.convertUntyped(y, Typ[Float64])
    				// x and y should be invalid now, but be conservative
    				// and check below
    			}
    		}
    		if x.mode == invalid || y.mode == invalid {
    			return
    		}
    
    		// both argument types must be identical
    		if !Identical(x.typ, y.typ) {
    			check.errorf(x, InvalidComplex, invalidOp+"%v (mismatched types %s and %s)", call, x.typ, y.typ)
    			return
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/stmt.go

    		check.expr(nil, &ch, s.Chan)
    		check.expr(nil, &val, s.Value)
    		if ch.mode == invalid || val.mode == invalid {
    			return
    		}
    		u := coreType(ch.typ)
    		if u == nil {
    			check.errorf(s, InvalidSend, invalidOp+"cannot send to %s: no core type", &ch)
    			return
    		}
    		uch, _ := u.(*Chan)
    		if uch == nil {
    			check.errorf(s, InvalidSend, invalidOp+"cannot send to non-channel %s", &ch)
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/builtins.go

    				check.convertUntyped(y, Typ[Float64])
    				// x and y should be invalid now, but be conservative
    				// and check below
    			}
    		}
    		if x.mode == invalid || y.mode == invalid {
    			return
    		}
    
    		// both argument types must be identical
    		if !Identical(x.typ, y.typ) {
    			check.errorf(x, InvalidComplex, invalidOp+"%v (mismatched types %s and %s)", call, x.typ, y.typ)
    			return
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
Back to top