Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 5,283 for Required (0.33 sec)

  1. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/checkstyle/CheckstylePluginVersionIntegrationTest.groovy

            goodCode()
            buildFile << '''
                tasks.withType(Checkstyle) {
                    reports {
                        xml.required = false
                        html.required = false
                        sarif.required = true
                    }
                }
            '''.stripIndent()
    
            when:
            succeeds 'checkstyleMain'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1beta1/types.go

    type ClaimValidationRule struct {
    	// claim is the name of a required claim.
    	// Same as --oidc-required-claim flag.
    	// Only string claim keys are supported.
    	// Mutually exclusive with expression and message.
    	// +optional
    	Claim string `json:"claim,omitempty"`
    	// requiredValue is the value of a required claim.
    	// Same as --oidc-required-claim flag.
    	// Only string claim values are supported.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  3. fastapi/security/oauth2.py

    
        grant_type: the OAuth2 spec says it is required and MUST be the fixed string "password".
            This dependency is strict about it. If you want to be permissive, use instead the
            OAuth2PasswordRequestForm dependency class.
        username: username string. The OAuth2 spec requires the exact field name "username".
        password: password string. The OAuth2 spec requires the exact field name "password".
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. tests/test_tutorial/test_body/test_tutorial001.py

                        "msg": "Field required",
                        "input": {"name": "Foo"},
                    }
                ]
            }
        ) | IsDict(
            # TODO: remove when deprecating Pydantic v1
            {
                "detail": [
                    {
                        "loc": ["body", "price"],
                        "msg": "field required",
                        "type": "value_error.missing",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  5. tests/test_tutorial/test_body/test_tutorial001_py310.py

                        "msg": "Field required",
                        "input": {"name": "Foo"},
                    }
                ]
            }
        ) | IsDict(
            # TODO: remove when deprecating Pydantic v1
            {
                "detail": [
                    {
                        "loc": ["body", "price"],
                        "msg": "field required",
                        "type": "value_error.missing",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/types.go

    type ClaimValidationRule struct {
    	// claim is the name of a required claim.
    	// Same as --oidc-required-claim flag.
    	// Only string claim keys are supported.
    	// Mutually exclusive with expression and message.
    	// +optional
    	Claim string `json:"claim,omitempty"`
    	// requiredValue is the value of a required claim.
    	// Same as --oidc-required-claim flag.
    	// Only string claim values are supported.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  7. tests/test_tuples.py

                                "application/json": {
                                    "schema": {"$ref": "#/components/schemas/ItemGroup"}
                                }
                            },
                            "required": True,
                        },
                        "responses": {
                            "200": {
                                "description": "Successful Response",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/cel/common/schemas.go

    			}
    			return nil
    		}
    		fields := make(map[string]*apiservercel.DeclField, len(s.Properties()))
    
    		required := map[string]bool{}
    		if s.Required() != nil {
    			for _, f := range s.Required() {
    				required[f] = true
    			}
    		}
    		// an object will always be serialized at least as {}, so account for that
    		minSerializedSize := int64(2)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 18:00:45 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation.go

    	return allErrs
    }
    
    func validateIssuerURL(issuerURL string, disallowedIssuers sets.Set[string], fldPath *field.Path) field.ErrorList {
    	if len(issuerURL) == 0 {
    		return field.ErrorList{field.Required(fldPath, "URL is required")}
    	}
    
    	return validateURL(issuerURL, disallowedIssuers, fldPath)
    }
    
    func validateIssuerDiscoveryURL(issuerURL, issuerDiscoveryURL string, fldPath *field.Path) field.ErrorList {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  10. pkg/apis/autoscaling/validation/validation.go

    	if len(ref.Kind) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath.Child("kind"), ""))
    	} else {
    		for _, msg := range pathvalidation.IsValidPathSegmentName(ref.Kind) {
    			allErrs = append(allErrs, field.Invalid(fldPath.Child("kind"), ref.Kind, msg))
    		}
    	}
    
    	if len(ref.Name) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath.Child("name"), ""))
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 25 00:58:00 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top