Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 6,623 for Defaults (0.09 sec)

  1. pkg/apis/authentication/v1alpha1/defaults.go

    m.nabokikh <******@****.***> 1658448112 +0400
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 14 16:00:26 UTC 2022
    - 727 bytes
    - Viewed (0)
  2. plugin/pkg/admission/eventratelimit/apis/eventratelimit/v1alpha1/defaults.go

    staebler <******@****.***> 1501188079 -0400
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 01 17:38:03 UTC 2017
    - 787 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/apis/example/v1/defaults.go

    Jordan Liggitt <******@****.***> 1489179787 -0500
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 17:36:15 UTC 2017
    - 736 bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/example2/v1/defaults.go

    Chao Xu <******@****.***> 1509752996 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 13 20:55:33 UTC 2017
    - 736 bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1beta1/defaults.go

    Jordan Liggitt <******@****.***> 1709362589 -0500
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 07:00:31 UTC 2024
    - 986 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/apis/resourcequota/v1beta1/defaults.go

    Tim Usner <******@****.***> 1596011679 +0200
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 04 12:53:52 UTC 2020
    - 786 bytes
    - Viewed (0)
  7. pkg/apis/extensions/v1beta1/defaults.go

    		}
    		if updateStrategy.RollingUpdate.MaxUnavailable == nil {
    			// Set default MaxUnavailable as 1 by default.
    			maxUnavailable := intstr.FromInt32(1)
    			updateStrategy.RollingUpdate.MaxUnavailable = &maxUnavailable
    		}
    		if updateStrategy.RollingUpdate.MaxSurge == nil {
    			// Set default MaxSurge as 0 by default.
    			maxSurge := intstr.FromInt32(0)
    			updateStrategy.RollingUpdate.MaxSurge = &maxSurge
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  8. pkg/apis/autoscaling/v1/defaults.go

    	if obj.Spec.MinReplicas == nil {
    		obj.Spec.MinReplicas = pointer.Int32(1)
    	}
    
    	// NB: we apply a default for CPU utilization in conversion because
    	// we need access to the annotations to properly apply the default.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 15 06:03:59 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  9. pkg/apis/networking/v1/defaults.go

    	utilpointer "k8s.io/utils/pointer"
    )
    
    func addDefaultingFuncs(scheme *runtime.Scheme) error {
    	return RegisterDefaults(scheme)
    }
    
    func SetDefaults_NetworkPolicyPort(obj *networkingv1.NetworkPolicyPort) {
    	// Default any undefined Protocol fields to TCP.
    	if obj.Protocol == nil {
    		proto := v1.ProtocolTCP
    		obj.Protocol = &proto
    	}
    }
    
    func SetDefaults_NetworkPolicy(obj *networkingv1.NetworkPolicy) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 05 10:48:05 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. pkg/apis/autoscaling/v2beta2/defaults.go

    func SetDefaults_HorizontalPodAutoscalerBehavior(obj *autoscalingv2beta2.HorizontalPodAutoscaler) {
    	// if behavior is specified, we should fill all the 'nil' values with the default ones
    	if obj.Spec.Behavior != nil {
    		obj.Spec.Behavior.ScaleUp = GenerateHPAScaleUpRules(obj.Spec.Behavior.ScaleUp)
    		obj.Spec.Behavior.ScaleDown = GenerateHPAScaleDownRules(obj.Spec.Behavior.ScaleDown)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 15 06:03:59 UTC 2022
    - 4.8K bytes
    - Viewed (0)
Back to top