Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 5,085 for default_ (0.14 sec)

  1. pkg/controller/apis/config/v1alpha1/defaults.go

    }
    
    func SetDefaults_KubeControllerManagerConfiguration(obj *kubectrlmgrconfigv1alpha1.KubeControllerManagerConfiguration) {
    	// These defaults override the recommended defaults from the componentbaseconfigv1alpha1 package that are applied automatically
    	// These client-connection defaults are specific to the kube-controller-manager
    	if obj.Generic.ClientConnection.QPS == 0.0 {
    		obj.Generic.ClientConnection.QPS = 20.0
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 04 07:55:11 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  2. plugin/pkg/admission/storage/storageclass/setdefault/admission_test.go

    	classWithNoDefault := &storagev1.StorageClass{
    		TypeMeta: metav1.TypeMeta{
    			Kind: "StorageClass",
    		},
    		ObjectMeta: metav1.ObjectMeta{
    			Name: "nondefault2",
    		},
    		Provisioner: "nondefault1",
    	}
    	// Class with empty default annotation (=non-default)
    	classWithEmptyDefault := &storagev1.StorageClass{
    		TypeMeta: metav1.TypeMeta{
    			Kind: "StorageClass",
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 19 04:00:48 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/v1beta4/defaults.go

    	DefaultAPIBindPort = 6443
    	// DefaultCertificatesDir defines default certificate directory
    	DefaultCertificatesDir = "/etc/kubernetes/pki"
    	// DefaultImageRepository defines default image registry
    	// (previously this defaulted to k8s.gcr.io)
    	DefaultImageRepository = "registry.k8s.io"
    	// DefaultManifestsDir defines default manifests directory
    	DefaultManifestsDir = "/etc/kubernetes/manifests"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. pkg/controller/volume/attachdetach/config/v1alpha1/defaults.go

    )
    
    // RecommendedDefaultAttachDetachControllerConfiguration defaults a pointer to a
    // AttachDetachControllerConfiguration struct. This will set the recommended default
    // values, but they may be subject to change between API versions. This function
    // is intentionally not registered in the scheme as a "normal" `SetDefaults_Foo`
    // function to allow consumers of this type to set whatever defaults for their
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/bootstraptoken/v1/defaults.go

    )
    
    const (
    	// DefaultTokenDuration specifies the default amount of time that a bootstrap token will be valid
    	// Default behaviour is 24 hours
    	DefaultTokenDuration = 24 * time.Hour
    )
    
    var (
    	// DefaultTokenUsages specifies the default functions a token will get
    	DefaultTokenUsages = bootstrapapi.KnownTokenUsages
    
    	// DefaultTokenGroups specifies the default groups that this token will authenticate as when used for authentication
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 21 10:34:21 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/base/Defaults.java

    import javax.annotation.CheckForNull;
    
    /**
     * This class provides default values for all Java types, as defined by the JLS.
     *
     * @author Ben Yu
     * @since 1.0
     */
    @J2ktIncompatible
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    public final class Defaults {
      private Defaults() {}
    
      private static final Double DOUBLE_DEFAULT = 0d;
      private static final Float FLOAT_DEFAULT = 0f;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 23 15:09:35 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. pkg/controller/daemon/config/v1alpha1/defaults.go

    )
    
    // RecommendedDefaultDaemonSetControllerConfiguration defaults a pointer to a
    // DaemonSetControllerConfiguration struct. This will set the recommended default
    // values, but they may be subject to change between API versions. This function
    // is intentionally not registered in the scheme as a "normal" `SetDefaults_Foo`
    // function to allow consumers of this type to set whatever defaults for their
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  8. pkg/controller/endpoint/config/v1alpha1/defaults.go

    )
    
    // RecommendedDefaultEndpointControllerConfiguration defaults a pointer to a
    // EndpointControllerConfiguration struct. This will set the recommended default
    // values, but they may be subject to change between API versions. This function
    // is intentionally not registered in the scheme as a "normal" `SetDefaults_Foo`
    // function to allow consumers of this type to set whatever defaults for their
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  9. pkg/controller/garbagecollector/config/v1alpha1/defaults.go

    // RecommendedDefaultGarbageCollectorControllerConfiguration defaults a pointer to a
    // GarbageCollectorControllerConfiguration struct. This will set the recommended default
    // values, but they may be subject to change between API versions. This function
    // is intentionally not registered in the scheme as a "normal" `SetDefaults_Foo`
    // function to allow consumers of this type to set whatever defaults for their
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 23 15:40:23 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  10. pkg/controller/resourcequota/config/v1alpha1/defaults.go

    )
    
    // RecommendedDefaultResourceQuotaControllerConfiguration defaults a pointer to a
    // ResourceQuotaControllerConfiguration struct. This will set the recommended default
    // values, but they may be subject to change between API versions. This function
    // is intentionally not registered in the scheme as a "normal" `SetDefaults_Foo`
    // function to allow consumers of this type to set whatever defaults for their
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 1.8K bytes
    - Viewed (0)
Back to top