Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,003 for validations (0.17 sec)

  1. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                        type: string
                        x-kubernetes-validations:
                        - message: cross namespace referencing is not currently supported
                          rule: self.size() == 0
                    required:
                    - kind
                    - name
                    type: object
                    x-kubernetes-validations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  2. .github/DISCUSSION_TEMPLATE/questions.yml

            * But I expected it to return `{"Hello": "Sara"}`.
        validations:
          required: true
      - type: dropdown
        id: os
        attributes:
          label: Operating System
          description: What operating system are you on?
          multiple: true
          options:
            - Linux
            - Windows
            - macOS
            - Other
        validations:
          required: true
      - type: textarea
        id: os-details
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Aug 03 15:59:41 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. .github/ISSUE_TEMPLATE/02-pkgsite-removal.yml

          description: |
            We can remove packages with a shared path prefix.
            For example, a request for 'github.com/author' would remove all pkg.go.dev pages with that package path prefix.
        validations:
          required: true
      - type: textarea
        id: package-owner
        attributes:
          label: "Are you the owner of this package?"
          description: |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 04 23:31:17 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. .github/ISSUE_TEMPLATE/00-bug.yml

          render: shell
        validations:
          required: true
    
      - type: textarea
        id: what-did-you-do
        attributes:
          label: "What did you do?"
          description: "If possible, provide a recipe for reproducing the error. A complete runnable program is good. A link on [go.dev/play](https://go.dev/play) is best."
        validations:
          required: true
    
      - type: textarea
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 04 23:31:17 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1alpha1/validatingadmissionpolicyspec.go

    	ParamKind        *ParamKindApplyConfiguration                     `json:"paramKind,omitempty"`
    	MatchConstraints *MatchResourcesApplyConfiguration                `json:"matchConstraints,omitempty"`
    	Validations      []ValidationApplyConfiguration                   `json:"validations,omitempty"`
    	FailurePolicy    *admissionregistrationv1alpha1.FailurePolicyType `json:"failurePolicy,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 00:13:28 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1/validatingadmissionpolicyspec.go

    	ParamKind        *ParamKindApplyConfiguration               `json:"paramKind,omitempty"`
    	MatchConstraints *MatchResourcesApplyConfiguration          `json:"matchConstraints,omitempty"`
    	Validations      []ValidationApplyConfiguration             `json:"validations,omitempty"`
    	FailurePolicy    *admissionregistrationv1.FailurePolicyType `json:"failurePolicy,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/cel_validation.go

    var unbounded *uint64 = nil
    
    // CELSchemaContext keeps track of data used by x-kubernetes-validations rules for a specific schema node.
    type CELSchemaContext struct {
    	// withinValidationRuleScope is true if the schema at the current level or above have x-kubernetes-validations rules. typeInfo
    	// should only be populated for schema nodes where this is true.
    	withinValidationRuleScope bool
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 13.8K bytes
    - Viewed (0)
  8. manifests/charts/base/crds/crd-all.gen.yaml

                        type: string
                        x-kubernetes-validations:
                        - message: cross namespace referencing is not currently supported
                          rule: self.size() == 0
                    required:
                    - kind
                    - name
                    type: object
                    x-kubernetes-validations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  9. .github/ISSUE_TEMPLATE/12-telemetry.yml

          Note that uploaded data must not carry sensitive user information.
          See [go.dev/doc/telemetry#proposals](https://go.dev/doc/telemetry#proposals)
          for more details on telemetry proposals.
      validations:
        required: true
    - type: input
      attributes:
        label: Proposed Config Change
        description: >
          A CL containing proposed changes to the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 19:58:26 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. pkg/apis/policy/validation/validation.go

    limitations under the License.
    */
    
    package validation
    
    import (
    	"regexp"
    
    	policyapiv1beta1 "k8s.io/api/policy/v1beta1"
    	unversionedvalidation "k8s.io/apimachinery/pkg/apis/meta/v1/validation"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/util/validation/field"
    	appsvalidation "k8s.io/kubernetes/pkg/apis/apps/validation"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top