Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,259 for Enabled (0.16 sec)

  1. docs/bucket/lifecycle/README.md

                "Filter": {
                    "Prefix": "old/"
                },
                "Status": "Enabled"
            },
            {
                "Expiration": {
                    "Days": 7
                },
                "ID": "TempUploads",
                "Filter": {
                    "Prefix": "temp/"
                },
                "Status": "Enabled"
            }
        ]
    }
    EOF
    ```
    
    ```
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Aug 26 07:33:25 UTC 2023
    - 9K bytes
    - Viewed (0)
  2. helm-releases/minio-5.2.0.tgz

    https://kubernetes.io/docs/user-guide/node-selection/ ## nodeSelector: {} tolerations: [] affinity: {} topologySpreadConstr: [] ## Add stateful containers to have security context, if enabled MinIO will run as this ## user and group NOTE: securityContext is only enabled if persistence.enabled=true securityContext: enabled: true runAsUser: 1000 runAsGroup: 1000 fsGroup: 1000 fsGroupChangePolicy: "OnRootMismatch" readOnlyRootFilesyst: false # Additational pod annotations podAnnotations: {} # Additional...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  3. src/internal/goexperiment/flags.go

    	// enabled individually. Not all combinations work.
    	// The "regabi" GOEXPERIMENT is an alias for all "working"
    	// subexperiments.
    
    	// RegabiWrappers enables ABI wrappers for calling between
    	// ABI0 and ABIInternal functions. Without this, the ABIs are
    	// assumed to be identical so cross-ABI calls are direct.
    	RegabiWrappers bool
    	// RegabiArgs enables register arguments/results in all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 16:19:47 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/componentconfigs/kubelet.go

    	}
    
    	if kc.config.Authentication.Anonymous.Enabled == nil {
    		kc.config.Authentication.Anonymous.Enabled = ptr.To(kubeletAuthenticationAnonymousEnabled)
    	} else if *kc.config.Authentication.Anonymous.Enabled {
    		warnDefaultComponentConfigValue(kind, "authentication.anonymous.enabled", kubeletAuthenticationAnonymousEnabled, *kc.config.Authentication.Anonymous.Enabled)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. manifests/profiles/remote.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      components:
        base:
          enabled: false
        pilot:
          enabled: false
        ingressGateways:
        - name: istio-ingressgateway
          enabled: false
        istiodRemote:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 18 16:33:33 UTC 2024
    - 418 bytes
    - Viewed (0)
  6. platforms/core-execution/build-cache/src/integTest/groovy/org/gradle/caching/internal/FinalizeBuildCacheConfigurationBuildOperationIntegrationTest.groovy

                    local {
                        enabled = true
                        directory = '${cacheDir.absoluteFile.toURI().toString()}'
                        push = true
                    }
                }
            """
            executer.withBuildCacheEnabled()
    
            when:
            succeeds("help")
    
            then:
            def result = result()
    
            result.enabled
            result.localEnabled
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  7. pkg/scheduler/apis/config/testing/defaults/defaults.go

    var ExpandedPluginsV1 = &config.Plugins{
    	PreEnqueue: config.PluginSet{
    		Enabled: []config.Plugin{
    			{Name: names.SchedulingGates},
    		},
    	},
    	QueueSort: config.PluginSet{
    		Enabled: []config.Plugin{
    			{Name: names.PrioritySort},
    		},
    	},
    	PreFilter: config.PluginSet{
    		Enabled: []config.Plugin{
    			{Name: names.NodeAffinity},
    			{Name: names.NodePorts},
    			{Name: names.NodeResourcesFit},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. pkg/registry/core/persistentvolumeclaim/strategy_test.go

    			dataSourceRef: coreDataSourceRef,
    		},
    		"any enabled with empty ds": {
    			anyEnabled: true,
    			want:       nil,
    		},
    		"any enabled with volume ds": {
    			dataSource: volumeDataSource,
    			anyEnabled: true,
    			want:       volumeDataSource,
    			wantRef:    volumeDataSourceRef,
    		},
    		"any enabled with snapshot ds": {
    			dataSource: snapshotDataSource,
    			anyEnabled: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  9. helm-releases/minio-5.1.0.tgz

    https://kubernetes.io/docs/user-guide/node-selection/ ## nodeSelector: {} tolerations: [] affinity: {} topologySpreadConstr: [] ## Add stateful containers to have security context, if enabled MinIO will run as this ## user and group NOTE: securityContext is only enabled if persistence.enabled=true securityContext: enabled: true runAsUser: 1000 runAsGroup: 1000 fsGroup: 1000 fsGroupChangePolicy: "OnRootMismatch" # Additational pod annotations podAnnotations: {} # Additional pod labels podLabels: {} ##...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 03 18:49:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/util/in_mesh.go

    }
    
    // autoInjectionEnabled returns two booleans: enabled and ok.
    // enabled is true when namespace ns has 'istio-injection' label set to 'enabled'
    // ok is true when the namespace doesn't have the label 'istio-injection'
    func getNamesSidecarInjectionStatus(ns resource.Namespace, c analysis.Context) (enabled bool, ok bool) {
    	enabled, ok = false, false
    
    	namespace := c.Find(gvk.Namespace, resource.NewFullName("", resource.LocalName(ns)))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top