Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 115 for Enabled (0.53 sec)

  1. cmd/object-handlers.go

    	// destination are same objects. Apply this restriction also when
    	// metadataOnly is true indicating that we are not overwriting the object.
    	// if encryption is enabled we do not need explicit "REPLACE" metadata to
    	// be enabled as well - this is to allow for key-rotation.
    	if !isDirectiveReplace(r.Header.Get(xhttp.AmzMetadataDirective)) && !isDirectiveReplace(r.Header.Get(xhttp.AmzTagDirective)) &&
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  2. pkg/controller/job/job_controller_test.go

    	}{
    		"job with custom value of managedBy; feature enabled; the status is unchanged": {
    			enableJobManagedBy: true,
    			job: func() batch.Job {
    				job := baseJob.DeepCopy()
    				job.Spec.ManagedBy = ptr.To("custom-managed-by")
    				return *job
    			}(),
    			wantStatus: baseJob.Status,
    		},
    		"job with well known value of the managedBy; feature enabled; the status is updated": {
    			enableJobManagedBy: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.5.md

    **Who is affected?**
    
    Only Kubernetes 1.5.0-1.5.4 installations that do all of the following:
    * Enable the PodSecurityPolicy API (which is not enabled by default):
      * `--runtime-config=extensions/v1beta1/podsecuritypolicy=true`
    * Enable the PodSecurityPolicy admission plugin (which is not enabled by default):
      * `--admission-control=...,PodSecurityPolicy,...`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_test.go

    			discoveryType: cluster.Cluster_EDS,
    		},
    		{
    			name:          "redis enabled",
    			redisEnabled:  true,
    			resolution:    model.ClientSideLB,
    			lbType:        cluster.Cluster_MAGLEV,
    			discoveryType: cluster.Cluster_EDS,
    		},
    		{
    			name:          "redis enabled passthrough",
    			redisEnabled:  true,
    			resolution:    model.Passthrough,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  5. pkg/scheduler/schedule_one_test.go

    				Plugins: &schedulerapi.Plugins{
    					Filter:    schedulerapi.PluginSet{Enabled: []schedulerapi.Plugin{{Name: "FakeNodeSelector"}}},
    					QueueSort: schedulerapi.PluginSet{Enabled: []schedulerapi.Plugin{{Name: "PrioritySort"}}},
    					Bind:      schedulerapi.PluginSet{Enabled: []schedulerapi.Plugin{{Name: "DefaultBinder"}}},
    				},
    				PluginConfig: []schedulerapi.PluginConfig{
    					{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  6. pkg/kubelet/eviction/helpers_test.go

    	for _, enabled := range []bool{true, false} {
    		t.Run(fmt.Sprintf("InPlacePodVerticalScaling enabled=%v", enabled), func(t *testing.T) {
    			featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.InPlacePodVerticalScaling, enabled)
    			msg, _ := evictionMessage(v1.ResourceMemory, testpod, statsFn, threshold, observations)
    			if enabled {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  7. src/net/http/server.go

    }
    
    func (s *Server) shuttingDown() bool {
    	return s.inShutdown.Load()
    }
    
    // SetKeepAlivesEnabled controls whether HTTP keep-alives are enabled.
    // By default, keep-alives are always enabled. Only very
    // resource-constrained environments or servers in the process of
    // shutting down should disable them.
    func (srv *Server) SetKeepAlivesEnabled(v bool) {
    	if v {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.4.md

    * Enable memory based pod evictions by default on the kubelet.   ([#28607](https://github.com/kubernetes/kubernetes/pull/28607), [@derekwaynecarr](https://github.com/derekwaynecarr))
        * Trigger pod eviction when available memory falls below 100Mi.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  9. api/maven-api-model/src/main/mdo/maven.mdo

              </code>
            </codeSegment>
            <codeSegment>
              <version>4.0.0/4.0.99</version>
              <code>
                <![CDATA[
        public void setEnabled(boolean enabled) {
            setEnabled(String.valueOf(enabled));
        }
    
                ]]>
              </code>
            </codeSegment>
          </codeSegments>
        </class>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    // variable and the presence of a go.mod file. See 'go help modules' for details.
    // If module-aware mode is enabled, "go install" runs in the context of the main
    // module.
    //
    // When module-aware mode is disabled, non-main packages are installed in the
    // directory $GOPATH/pkg/$GOOS_$GOARCH. When module-aware mode is enabled,
    // non-main packages are built and cached but not installed.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top