Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,800 for _default_ (0.12 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. subprojects/core/src/test/groovy/org/gradle/execution/DefaultTasksBuildTaskSchedulerTest.groovy

        }
    
        def "uses default build-in tasks if no tasks specified in StartParameter or project"() {
            given:
            _ * startParameter.taskRequests >> [new RunDefaultTasksExecutionRequest()]
            _ * defaultProject.defaultTasks >> []
            _ * buildInCommand.asDefaultTask() >> ['default1', 'default2']
    
            when:
            action.scheduleRequestedTasks(gradle, selector, plan)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 02 00:39:25 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  3. pkg/controller/replication/config/v1alpha1/defaults.go

    )
    
    // RecommendedDefaultReplicationControllerConfiguration defaults a pointer to a
    // ReplicationControllerConfiguration 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)
  4. pkg/controller/ttlafterfinished/config/v1alpha1/defaults.go

    // RecommendedDefaultTTLAfterFinishedControllerConfiguration defaults a pointer to a
    // TTLAfterFinishedControllerConfiguration 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)
  5. pkg/controller/statefulset/config/v1alpha1/defaults.go

    )
    
    // RecommendedDefaultStatefulSetControllerConfiguration defaults a pointer to a
    // StatefulSetControllerConfiguration 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: Thu Aug 01 05:36:14 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  6. pkg/controller/job/config/v1alpha1/defaults.go

    )
    
    // RecommendedDefaultJobControllerConfiguration defaults a pointer to a
    // JobControllerConfiguration 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.5K bytes
    - Viewed (0)
  7. pkg/controller/cronjob/config/v1alpha1/defaults.go

    )
    
    // RecommendedDefaultCronJobControllerConfiguration defaults a pointer to a
    // CronJobControllerConfiguration 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: Tue Nov 10 22:32:06 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  8. pkg/controller/certificates/signer/config/v1alpha1/defaults.go

    )
    
    // RecommendedDefaultCSRSigningControllerConfiguration defaults a pointer to a
    // CSRSigningControllerConfiguration 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: Thu Jul 09 12:14:55 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  9. pkg/controller/nodelifecycle/config/v1alpha1/defaults.go

    )
    
    // RecommendedDefaultNodeLifecycleControllerConfiguration defaults a pointer to a
    // NodeLifecycleControllerConfiguration 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: Tue Mar 07 18:11:49 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1/defaults.go

    	defaultCacheSize  int32 = 1000
    	defaultAPIVersion       = "v1"
    )
    
    func addDefaultingFuncs(scheme *runtime.Scheme) error {
    	return RegisterDefaults(scheme)
    }
    
    // SetDefaults_KMSConfiguration applies defaults to KMSConfiguration.
    func SetDefaults_KMSConfiguration(obj *KMSConfiguration) {
    	if obj.Timeout == nil {
    		obj.Timeout = defaultTimeout
    	}
    
    	if obj.APIVersion == "" {
    		obj.APIVersion = defaultAPIVersion
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top