Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 147 for Validation (0.24 sec)

  1. pkg/controller/statefulset/stateful_set_utils_test.go

    					Kind:       "Pod",
    					Name:       "pod",
    					UID:        "stale-uid",
    					Controller: ptr.To(true),
    				},
    			},
    			shouldReportUnexpectedController: true,
    		},
    		{
    			// API validation should prevent two controllers from being set,
    			// but for completeness it is still tested.
    			name: "own controller and another",
    			refs: []metav1.OwnerReference{
    				{
    					APIVersion: "v1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  2. pkg/scheduler/schedule_one.go

    	"k8s.io/apimachinery/pkg/util/sets"
    	clientset "k8s.io/client-go/kubernetes"
    	"k8s.io/klog/v2"
    	extenderv1 "k8s.io/kube-scheduler/extender/v1"
    	podutil "k8s.io/kubernetes/pkg/api/v1/pod"
    	"k8s.io/kubernetes/pkg/apis/core/validation"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    	"k8s.io/kubernetes/pkg/scheduler/framework/parallelize"
    	internalqueue "k8s.io/kubernetes/pkg/scheduler/internal/queue"
    	"k8s.io/kubernetes/pkg/scheduler/metrics"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ProblemReportingCrossProjectModelAccess.kt

            override fun file(path: Any): File {
                onAccess("file")
                return delegate.file(path)
            }
    
            override fun file(path: Any, validation: PathValidation): File {
                onAccess("file")
                return delegate.file(path, validation)
            }
    
            override fun uri(path: Any): URI {
                onAccess("uri")
                return delegate.uri(path)
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/server.go

    		return nil, fmt.Errorf("error initializing secure gRPC Listener: %v", err)
    	}
    
    	// common https server for webhooks (e.g. injection, validation)
    	if s.kubeClient != nil {
    		s.initSecureWebhookServer(args)
    		wh, err := s.initSidecarInjector(args)
    		if err != nil {
    			return nil, fmt.Errorf("error initializing sidecar injector: %v", err)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/deployment/builder.go

    	// namespaces
    	namespaces map[string]namespace.Instance
    	// the set of injection templates for each cluster
    	templates map[string]sets.String
    	// errs contains a multierror for failed validation during With calls
    	errs error
    }
    
    func (b *builder) WithConfig(cfg echo.Config) Builder {
    	return b.With(nil, cfg)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.27.md

    - The Pod API field `.spec.schedulingGates[*].name` now requires qualified names (like `example.com/mygate`), matching validation for names of `.spec.readinessGates[*].name`. Any uses of the alpha scheduling gate feature prior to 1.27 that do not match that validation must be renamed or deleted before upgrading to 1.27. ([#115821](https://github.com/kubernetes/kubernetes/pull/115821), [@lianghao208](https://github.com/lianghao208)) [SIG Apps...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  7. api/openapi-spec/swagger.json

    "messageExpression declares a CEL expression that evaluates to the validation failure message that is returned when this rule fails. Since messageExpression is used as a failure message, it must evaluate to a string. If both message and messageExpression are present on a validation, then messageExpression will be used if validation fails. If messageExpression results in a runtime error, the runtime error is logged, and the validation failure message is produced as if the messageExpression field were...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.30.md

      
      If `username.expression` used 'claims.email', then 'claims.email_verified' must have been used in `username.expression` or `extra[*].valueExpression` or `claimValidationRules[*].expression`. An example claim validation rule expression that matches the validation automatically applied when `username.claim` is set to 'email' is 'claims.?email_verified.orValue(true)'.
       ([#123737](https://github.com/kubernetes/kubernetes/pull/123737), [@enj](https://github.com/enj))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  9. cmd/sftp-server.go

    		},
    		Extensions: make(map[string]string),
    	}, nil
    }
    
    func validateKey(c ssh.ConnMetadata, clientKey ssh.PublicKey) (err error) {
    	if caPublicKey == nil {
    		return errors.New("public key authority validation requested but no ca public key specified.")
    	}
    
    	cert, ok := clientKey.(*ssh.Certificate)
    	if !ok {
    		return errSftpPublicKeyWithoutCert
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 16K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_test.go

    	}
    	return labels.Set(pod.ObjectMeta.Labels), PodToSelectableFields(pod), nil
    }
    
    // PodToSelectableFields returns a field set that represents the object
    // TODO: fields are not labels, and the validation rules for them do not apply.
    func PodToSelectableFields(pod *example.Pod) fields.Set {
    	// The purpose of allocation with a given number of elements is to reduce
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top