Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for logic (0.07 sec)

  1. CHANGELOG/CHANGELOG-1.25.md

    - Fixes creationTimestamp: null causing unnecessary writes to etcd ([#116865](https://github.com/kubernetes/kubernetes/pull/116865), [@alexzielenski](https://github.com/alexzielenski)) [SIG API Machinery and Testing]
    - Revised the logic for DaemonSet rolling update to exclude nodes if scheduling constraints are not met.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  2. src/net/http/h2_bundle.go

    		abort:                make(chan struct{}),
    		respHeaderRecv:       make(chan struct{}),
    		donec:                make(chan struct{}),
    	}
    
    	// TODO(bradfitz): this is a copy of the logic in net/http. Unify somewhere?
    	if !cc.t.disableCompression() &&
    		req.Header.Get("Accept-Encoding") == "" &&
    		req.Header.Get("Range") == "" &&
    		!cs.isHead {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  3. prow/config/calico.yaml

                    type: string
                  useInternalDataplaneDriver:
                    description: UseInternalDataplaneDriver, if true, Felix will use its
                      internal dataplane programming logic.  If false, it will launch
                      an external dataplane driver and communicate with it over protobuf.
                    type: boolean
                  vxlanEnabled:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  4. pkg/apis/core/validation/validation.go

    func validateOverhead(overhead core.ResourceList, fldPath *field.Path, opts PodValidationOptions) field.ErrorList {
    	// reuse the ResourceRequirements validation logic
    	return ValidateResourceRequirements(&core.ResourceRequirements{Limits: overhead}, nil, fldPath, opts)
    }
    
    // Validates that given value is not negative.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  5. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	// defaultTemplates: ["sidecar", "hello"]
    	DefaultTemplates []string `protobuf:"bytes,24,rep,name=defaultTemplates,proto3" json:"defaultTemplates,omitempty"`
    	// If enabled, the legacy webhook selection logic will be used. This relies on filtering of webhook
    	// requests in Istiod, rather than at the webhook selection level.
    	// This is option is intended for migration purposes only and will be removed in Istio 1.10.
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/core/v1/generated.proto

      // system is the name of the storage system as configured in ScaleIO.
      optional string system = 2;
    
      // secretRef references to the secret for ScaleIO user and other
      // sensitive information. If this is not provided, Login operation will fail.
      optional SecretReference secretRef = 3;
    
      // sslEnabled is the flag to enable/disable SSL communication with Gateway, default false
      // +optional
      optional bool sslEnabled = 4;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  7. pkg/apis/core/types.go

    	Gateway string
    	// The name of the storage system as configured in ScaleIO.
    	System string
    	// SecretRef references to the secret for ScaleIO user and other
    	// sensitive information. If this is not provided, Login operation will fail.
    	SecretRef *LocalObjectReference
    	// Flag to enable/disable SSL communication with Gateway, default false
    	// +optional
    	SSLEnabled bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"system":           "system is the name of the storage system as configured in ScaleIO.",
    	"secretRef":        "secretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail.",
    	"sslEnabled":       "sslEnabled is the flag to enable/disable SSL communication with Gateway, default false",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/generated.proto

      // system is the name of the storage system as configured in ScaleIO.
      optional string system = 2;
    
      // secretRef references to the secret for ScaleIO user and other
      // sensitive information. If this is not provided, Login operation will fail.
      optional SecretReference secretRef = 3;
    
      // sslEnabled is the flag to enable/disable SSL communication with Gateway, default false
      // +optional
      optional bool sslEnabled = 4;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types.go

    	System string `json:"system" protobuf:"bytes,2,opt,name=system"`
    	// secretRef references to the secret for ScaleIO user and other
    	// sensitive information. If this is not provided, Login operation will fail.
    	SecretRef *LocalObjectReference `json:"secretRef" protobuf:"bytes,3,opt,name=secretRef"`
    	// sslEnabled Flag enable/disable SSL communication with Gateway, default false
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top