Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 31 for Cases (0.07 sec)

  1. ChangeLog.md

    - [`KT-64805`](https://youtrack.jetbrains.com/issue/KT-64805) Analysis API: introduce common entry point for multi-file test cases
    - [`KT-64714`](https://youtrack.jetbrains.com/issue/KT-64714) K2: Analysis API: CollectionsKt.map doesn't resolves from Java in kotlin repo
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types.go

    	// Namespace is the metadata.namespace of the referenced ConfigMap.
    	// This field is required in all cases.
    	Namespace string `json:"namespace" protobuf:"bytes,1,opt,name=namespace"`
    
    	// Name is the metadata.name of the referenced ConfigMap.
    	// This field is required in all cases.
    	Name string `json:"name" protobuf:"bytes,2,opt,name=name"`
    
    	// UID is the metadata.UID of the referenced ConfigMap.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/generated.proto

    message ConfigMapNodeConfigSource {
      // Namespace is the metadata.namespace of the referenced ConfigMap.
      // This field is required in all cases.
      optional string namespace = 1;
    
      // Name is the metadata.name of the referenced ConfigMap.
      // This field is required in all cases.
      optional string name = 2;
    
      // UID is the metadata.UID of the referenced ConfigMap.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"namespace":        "Namespace is the metadata.namespace of the referenced ConfigMap. This field is required in all cases.",
    	"name":             "Name is the metadata.name of the referenced ConfigMap. This field is required in all cases.",
    	"uid":              "UID is the metadata.UID of the referenced ConfigMap. This field is forbidden in Node.Spec, and required in Node.Status.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. pkg/apis/core/validation/validation.go

    	allErrs := field.ErrorList{}
    	if len(flocker.DatasetName) == 0 && len(flocker.DatasetUUID) == 0 {
    		// TODO: consider adding a RequiredOneOf() error for this and similar cases
    		allErrs = append(allErrs, field.Required(fldPath, "one of datasetName and datasetUUID is required"))
    	}
    	if len(flocker.DatasetName) != 0 && len(flocker.DatasetUUID) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  6. src/net/http/h2_bundle.go

    	// This allows us to immediately reject new streams without tracking any
    	// state for those streams (except for the queued RST_STREAM frame). This
    	// may result in duplicate RST_STREAMs in some cases, but the client should
    	// ignore those.
    	if wr.StreamID() != 0 {
    		_, isReset := wr.write.(http2StreamError)
    		if state, _ := sc.state(wr.StreamID()); state == http2stateClosed && !isReset {
    			ignoreWrite = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.26.md

    ### Feature
    
    - Kubeadm: generate CA certificates with a start time that is offset 5 minutes in the past relative to the current system time to workaround cases of clock desync.
      client-go: allow to set NotBefore in NewSelfSignedCACert() ([#119114](https://github.com/kubernetes/kubernetes/pull/119114), [@champtar](https://github.com/champtar)) [SIG API Machinery, Auth and Cluster Lifecycle]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 16:24:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.27.md

    ### Feature
    
    - Kubeadm: generate CA certificates with a start time that is offset 5 minutes in the past relative to the current system time to workaround cases of clock desync.
      client-go: allow to set NotBefore in NewSelfSignedCACert() ([#119113](https://github.com/kubernetes/kubernetes/pull/119113), [@champtar](https://github.com/champtar)) [SIG API Machinery, Auth and Cluster Lifecycle]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  9. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	Image string `protobuf:"bytes,4,opt,name=image,proto3" json:"image,omitempty"`
    	// The Repair controller has 3 modes (labelPods, deletePods, and repairPods). Pick which one meets your use cases. Note only one may be used.
    	// The mode defines the action the controller will take when a pod is detected as broken.
    	// If labelPods is true, the controller will label all broken pods with <brokenPodLabelKey>=<brokenPodLabelValue>.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.24.md

    validation. Bypassing this validation could allow authenticated requests destined for Nodes to be redirected to the API Server through its private network.
    
    The merged fix enforces validation against the proxying address for a Node. In some cases, the fix can break clients that depend on the `nodes/proxy` subresource, specifically if a kubelet advertises a localhost or link-local address to the Kubernetes control plane. Configuring an egress proxy for egress to the cluster network can also...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
Back to top