Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 127 for Negate (0.15 sec)

  1. src/cmd/go/testdata/script/README

    script should continue regardless.
    
    The command prefix [cond] indicates that the command on the rest of the line
    should only run when the condition is satisfied.
    
    A condition can be negated: [!root] means to run the rest of the line only if
    the user is not root. Multiple conditions may be given for a single command,
    for example, '[linux] [amd64] skip'. The command will run if all conditions are
    satisfied.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/autoscaling/v2beta2/generated.proto

      // minReplicas is the lower limit for the number of replicas to which the autoscaler
      // can scale down.  It defaults to 1 pod.  minReplicas is allowed to be 0 if the
      // alpha feature gate HPAScaleToZero is enabled and at least one Object or External
      // metric is configured.  Scaling is active as long as at least one metric value is
      // available.
      // +optional
      optional int32 minReplicas = 2;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/autoscaling/v2/generated.proto

      // minReplicas is the lower limit for the number of replicas to which the autoscaler
      // can scale down.  It defaults to 1 pod.  minReplicas is allowed to be 0 if the
      // alpha feature gate HPAScaleToZero is enabled and at least one Object or External
      // metric is configured.  Scaling is active as long as at least one metric value is
      // available.
      // +optional
      optional int32 minReplicas = 2;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/autoscaling/v2beta2/generated.proto

      // minReplicas is the lower limit for the number of replicas to which the autoscaler
      // can scale down.  It defaults to 1 pod.  minReplicas is allowed to be 0 if the
      // alpha feature gate HPAScaleToZero is enabled and at least one Object or External
      // metric is configured.  Scaling is active as long as at least one metric value is
      // available.
      // +optional
      optional int32 minReplicas = 2;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_container_linux_test.go

    			qosClass:                   v1.PodQOSBestEffort,
    			nodeSwapFeatureGateEnabled: true,
    			swapBehavior:               types.LimitedSwap,
    		},
    
    		// With feature gate turned off
    		{
    			name:                       "NodeSwap feature gate turned off, cgroups v2, LimitedSwap",
    			cgroupVersion:              cgroupV2,
    			qosClass:                   v1.PodQOSBurstable,
    			nodeSwapFeatureGateEnabled: false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41K bytes
    - Viewed (0)
  6. pkg/registry/apps/statefulset/strategy_test.go

    				WhenScaled:  apps.DeletePersistentVolumeClaimRetentionPolicyType,
    			},
    		},
    		Status: apps.StatefulSetStatus{Replicas: 4},
    	}
    
    	t.Run("when StatefulSetAutoDeletePVC feature gate is enabled, PersistentVolumeClaimRetentionPolicy should be updated", func(t *testing.T) {
    		featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.StatefulSetAutoDeletePVC, true)
    		// Test creation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/autoscaling/v2/generated.proto

      // minReplicas is the lower limit for the number of replicas to which the autoscaler
      // can scale down.  It defaults to 1 pod.  minReplicas is allowed to be 0 if the
      // alpha feature gate HPAScaleToZero is enabled and at least one Object or External
      // metric is configured.  Scaling is active as long as at least one metric value is
      // available.
      // +optional
      optional int32 minReplicas = 2;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/autoscaling/v2beta1/generated.proto

      // minReplicas is the lower limit for the number of replicas to which the autoscaler
      // can scale down.  It defaults to 1 pod.  minReplicas is allowed to be 0 if the
      // alpha feature gate HPAScaleToZero is enabled and at least one Object or External
      // metric is configured.  Scaling is active as long as at least one metric value is
      // available.
      // +optional
      optional int32 minReplicas = 2;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  9. pkg/apis/resource/types.go

    // Its status tracks whether the resource has been allocated and what the
    // resulting attributes are.
    //
    // This is an alpha type and requires enabling the DynamicResourceAllocation
    // feature gate.
    type ResourceClaim struct {
    	metav1.TypeMeta
    	// Standard object metadata
    	// +optional
    	metav1.ObjectMeta
    
    	// Spec describes the desired attributes of a resource that then needs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  10. pkg/kubelet/userns/userns_manager.go

    	if !featureEnabled {
    		return nil, fmt.Errorf("the feature gate %q is disabled: can't set spec.HostUsers", features.UserNamespacesSupport)
    	}
    	if *pod.Spec.HostUsers {
    		return &runtimeapi.UserNamespace{
    			Mode: runtimeapi.NamespaceMode_NODE,
    		}, nil
    	}
    
    	// From here onwards, hostUsers=false and the feature gate is enabled.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top