Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 30 for Disable (0.22 sec)

  1. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"readOnly":          "ReadOnly corresponds to the original VolumeMount.",
    	"recursiveReadOnly": "RecursiveReadOnly must be set to Disabled, Enabled, or unspecified (for non-readonly mounts). An IfPossible value in the original VolumeMount must be translated to Disabled or Enabled, depending on the mount result.",
    }
    
    func (VolumeMountStatus) SwaggerDoc() map[string]string {
    	return map_VolumeMountStatus
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  2. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/generated.proto

      // ReadOnly corresponds to the original VolumeMount.
      // +optional
      optional bool readOnly = 3;
    
      // RecursiveReadOnly must be set to Disabled, Enabled, or unspecified (for non-readonly mounts).
      // An IfPossible value in the original VolumeMount must be translated to Disabled or Enabled,
      // depending on the mount result.
      // +featureGate=RecursiveReadOnlyMounts
      // +optional
      optional string recursiveReadOnly = 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)
  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/types.go

    )
    
    // RecursiveReadOnlyMode describes recursive-readonly mode.
    type RecursiveReadOnlyMode string
    
    const (
    	// RecursiveReadOnlyDisabled disables recursive-readonly mode.
    	RecursiveReadOnlyDisabled RecursiveReadOnlyMode = "Disabled"
    	// RecursiveReadOnlyIfPossible enables recursive-readonly mode if possible.
    	RecursiveReadOnlyIfPossible RecursiveReadOnlyMode = "IfPossible"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.27.md

    - IPVS: Any ipvs scheduler can now be configured. If a un-usable scheduler is configured `kube-proxy` will re-start and the logs must be checked (same as before but different...
    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. pkg/registry/core/service/storage/storage_test.go

    		expectedStatus         api.ServiceStatus
    		expectErr              bool
    		expectedReasonForError metav1.StatusReason
    	}{
    		/*LoadBalancerIPMode disabled*/
    		{
    			name:               "LoadBalancerIPMode disabled, ipMode not used in old, not used in new",
    			ipModeEnabled:      false,
    			statusBeforeUpdate: api.ServiceStatus{},
    			newStatus: api.ServiceStatus{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  8. pkg/proxy/iptables/proxier_test.go

    		expectedRule  bool
    	}{
    		/* LoadBalancerIPMode disabled */
    		{
    			name:          "LoadBalancerIPMode disabled, ipMode Proxy",
    			ipModeEnabled: false,
    			svcIP:         "10.20.30.41",
    			svcLBIP:       "1.2.3.4",
    			ipMode:        ptr.To(v1.LoadBalancerIPModeProxy),
    			expectedRule:  true,
    		},
    		{
    			name:          "LoadBalancerIPMode disabled, ipMode VIP",
    			ipModeEnabled: false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  9. 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)
  10. CHANGELOG/CHANGELOG-1.28.md

    - Prevent watch cache starvation by moving its watch to separate RPC and add a SeparateCacheWatchRPC feature flag to disable this behavior ([#123694](https://github.com/kubernetes/kubernetes/pull/123694), [@mengqiy](https://github.com/mengqiy)) [SIG API Machinery]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
Back to top