Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 71 for Enabled (0.3 sec)

  1. pkg/scheduler/framework/runtime/framework_test.go

    		r[bindPlugin] = newBindPlugin
    	}
    
    	if len(profile.Plugins.QueueSort.Enabled) == 0 {
    		profile.Plugins.QueueSort.Enabled = append(profile.Plugins.QueueSort.Enabled, config.Plugin{Name: queueSortPlugin})
    	}
    	if len(profile.Plugins.Bind.Enabled) == 0 {
    		profile.Plugins.Bind.Enabled = append(profile.Plugins.Bind.Enabled, config.Plugin{Name: bindPlugin})
    	}
    	return NewFramework(ctx, r, &profile, opts...)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  2. pkg/api/pod/util_test.go

    		},
    	}}
    
    	for _, test := range tests {
    		for _, enabled := range []bool{true, false} {
    			for _, fieldsEnabled := range []bool{true, false} {
    				t.Run(fmt.Sprintf("%v/enabled=%v/fields=%v", test.description, enabled, fieldsEnabled), func(t *testing.T) {
    					featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.AppArmor, enabled)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  3. cmd/site-replication.go

    			Op:         replication.AddOption,
    			RuleStatus: "enable",
    			DestBucket: targetARN,
    			// Replicate everything!
    			ReplicateDeletes:        "enable",
    			ReplicateDeleteMarkers:  "enable",
    			ReplicaSync:             "enable",
    			ExistingObjectReplicate: "enable",
    		}
    
    		switch {
    		case hasRule:
    			if ruleARN != opts.DestBucket {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  4. pkg/apis/apps/validation/validation_test.go

    		ss        *apps.StatefulSetSpec
    		expectErr bool
    	}{
    		"valid : minReadySeconds enabled, zero": {
    			ss:        generateStatefulSetSpec(0),
    			expectErr: false,
    		},
    		"invalid : minReadySeconds enabled, negative": {
    			ss:        generateStatefulSetSpec(-1),
    			expectErr: true,
    		},
    		"valid : minReadySeconds enabled, very large value": {
    			ss:        generateStatefulSetSpec(2147483647),
    			expectErr: false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    		LowThresholdPercent:  int(kubeCfg.ImageGCLowThresholdPercent),
    	}
    
    	if utilfeature.DefaultFeatureGate.Enabled(features.ImageMaximumGCAge) {
    		imageGCPolicy.MaxAge = kubeCfg.ImageMaximumGCAge.Duration
    	} else if kubeCfg.ImageMaximumGCAge.Duration != 0 {
    		klog.InfoS("ImageMaximumGCAge flag enabled, but corresponding feature gate is not enabled. Ignoring flag.")
    	}
    
    	enforceNodeAllocatable := kubeCfg.EnforceNodeAllocatable
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  6. pkg/registry/batch/job/strategy_test.go

    		job                           batch.Job
    		updatedJob                    batch.Job
    		wantJob                       batch.Job
    	}{
    		"update job with a new field; updated when JobSuccessPolicy enabled": {
    			enableJobSuccessPolicy: true,
    			job: batch.Job{
    				ObjectMeta: getValidObjectMeta(0),
    				Spec: batch.JobSpec{
    					Selector:      validSelector,
    					Template:      validPodTemplateSpec,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 101.5K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods.go

    					} else if b {
    						if utilfeature.DefaultFeatureGate.Enabled(features.RecursiveReadOnlyMounts) {
    							rroMode = v1.RecursiveReadOnlyEnabled
    						} else {
    							klog.ErrorS(nil, "recursive read-only mount needs feature gate to be enabled",
    								"featureGate", features.RecursiveReadOnlyMounts)
    						}
    					}
    					volStatus.RecursiveReadOnly = &rroMode // Disabled or Enabled
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top