Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 41 for Disable (0.25 sec)

  1. 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)
  2. CHANGELOG/CHANGELOG-1.23.md

      
      The feature gate `DisableKubeletCloudCredentialProviders` is currently in Alpha, which means is currently disabled by default. Once this feature gate moves to beta, in-tree credential providers will be disabled by default, and users will need to migrate to use external credential providers. ([#102507](https://github.com/kubernetes/kubernetes/pull/102507), [@ostrain](https://github.com/ostrain))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.css

    er-color:#fff}.uk-card-primary.uk-card-body .uk-tab>.uk-disabled>a,.uk-card-primary>:not([class*=uk-card-media]) .uk-tab>.uk-disabled>a,.uk-card-secondary.uk-card-body .uk-tab>.uk-disabled>a,.uk-card-secondary>:not([class*=uk-card-media]) .uk-tab>.uk-disabled>a,.uk-light .uk-tab>.uk-disabled>a,.uk-offcanvas-bar .uk-tab>.uk-disabled>a,.uk-overlay-primary .uk-tab>.uk-disabled>a,.uk-section-primary:not(.uk-preserve-color) .uk-tab>.uk-disabled>a,.uk-section-secondary:not(.uk-preserve-color) .uk-tab>...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 257.2K 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. CHANGELOG/CHANGELOG-1.7.md

    * fix azure pv crash due to volumeSource.ReadOnly value nil ([#54607](https://github.com/kubernetes/kubernetes/pull/54607), [@andyzhangx](https://github.com/andyzhangx))
    * GCE: provide an option to disable docker's live-restore on COS/ubuntu ([#55260](https://github.com/kubernetes/kubernetes/pull/55260), [@yujuhong](https://github.com/yujuhong))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  9. 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 (1)
  10. 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)
Back to top