Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for DISABLE (0.24 sec)

  1. pkg/apis/core/types.go

    	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
    	// The name of the ScaleIO Protection Domain for the configured storage.
    	// +optional
    	ProtectionDomain string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"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",
    	"protectionDomain": "protectionDomain is the name of the ScaleIO Protection Domain for the configured storage.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.25.md

    - Local Storage Capacity Isolation feature is GA in 1.25 release. For systems (rootless) that cannot check root file system, please use kubelet config --local-storage-capacity-isolation=false to disable this feature. Once disabled, pod cannot set local ephemeral storage request/limit, and emptyDir sizeLimit niether. ([#111513](https://github.com/kubernetes/kubernetes/pull/111513), [@jingxu97](https://github.com/jingxu97))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  4. src/net/http/h2_bundle.go

    	}
    	sc.startGracefulShutdownInternal()
    	// http://tools.ietf.org/html/rfc7540#section-6.8
    	// We should not create any new streams, which means we should disable push.
    	sc.pushEnabled = false
    	return nil
    }
    
    // isPushed reports whether the stream is server-initiated.
    func (st *http2stream) isPushed() bool {
    	return st.id%2 == 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.proto

      // 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;
    
      // protectionDomain is the name of the ScaleIO Protection Domain for the configured storage.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types.go

    	// 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
    	SSLEnabled bool `json:"sslEnabled,omitempty" protobuf:"varint,4,opt,name=sslEnabled"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.27.md

    A new feature was enabled to improve the performance of the iptables mode of `kube-proxy` in large clusters. No action was required, however:
      
      1. If you experienced problems with Services not syncing to iptables correctly, you can disable the feature by passing `--feature-gates=MinimizeIPTablesRestore=false` to kube-proxy (and file a bug if this fixes it). (This might also be detected by seeing the value of kube-proxy's `sync_proxy_rules_iptables_partial_restore_failures_total` metric...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/optimize.mlir

    // RUN: tf-opt %s -tfl-legalize-tf -tfl-optimize | FileCheck --check-prefix=Fusing %s
    // Run legalize pass and then optimize pass, and make sure some fusing is applied, but no mul->fc.
    // RUN: tf-opt %s -tfl-legalize-tf -tfl-optimize='disable-fuse-mul-and-fc=true' | FileCheck --check-prefix=NoFusing %s
    
    // CHECK-LABEL: fusedConv2dRelu
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 284.1K bytes
    - Viewed (0)
  9. pkg/registry/core/service/storage/storage_test.go

    			// prepare status
    			// Test here is negative, because starting with v1.30 the feature gate is enabled by default, so we should
    			// now disable it to do the proper test
    			if !loadbalancerIPModeInUse(tc.statusBeforeUpdate) {
    				featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.LoadBalancerIPMode, false)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  10. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	// URL to use for validating webhook.
    	ValidationURL string `protobuf:"bytes,2,opt,name=validationURL,proto3" json:"validationURL,omitempty"`
    	// For istioctl usage to disable istio config crds in base
    	EnableIstioConfigCRDs *wrapperspb.BoolValue `protobuf:"bytes,3,opt,name=enableIstioConfigCRDs,proto3" json:"enableIstioConfigCRDs,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
Back to top