Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 379 for defaulting (0.17 sec)

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

    // function to allow consumers of this type to set whatever defaults for their
    // embedded configs. Forcing consumers to use these defaults would be problematic
    // as defaulting in the scheme is done as part of the conversion, and there would
    // be no easy way to opt-out. Instead, if you want to use this defaulting method
    // run it in your wrapper struct of this type in its `SetDefaults_` method.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  2. pkg/controller/serviceaccount/config/v1alpha1/defaults.go

    // function to allow consumers of this type to set whatever defaults for their
    // embedded configs. Forcing consumers to use these defaults would be problematic
    // as defaulting in the scheme is done as part of the conversion, and there would
    // be no easy way to opt-out. Instead, if you want to use this defaulting method
    // run it in your wrapper struct of this type in its `SetDefaults_` method.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 24 23:20:17 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. pkg/registry/core/namespace/strategy.go

    	// where the final name wasn't available for defaulting to make this change.
    	// This code needs to be kept in sync with the implementation that exists
    	// in Namespace defaulting (pkg/apis/core/v1)
    	// Why this hook *and* defaults.go?
    	//
    	// CREATE:
    	// Defaulting and PrepareForCreate happen before generateName is completed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 07 08:51:17 UTC 2021
    - 8.3K bytes
    - Viewed (0)
  4. pkg/apis/flowcontrol/v1beta3/defaults_test.go

    	"k8s.io/utils/pointer"
    )
    
    func TestDefaultWithPriorityLevelConfiguration(t *testing.T) {
    	tests := []struct {
    		name     string
    		original runtime.Object
    		expected runtime.Object
    	}{
    		{
    			name: "Defaulting for Exempt",
    			original: &flowcontrolv1beta3.PriorityLevelConfiguration{
    				Spec: flowcontrolv1beta3.PriorityLevelConfigurationSpec{
    					Type:   flowcontrolv1beta3.PriorityLevelEnablementExempt,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  5. cluster/images/etcd/migrate/options.go

    			opts.port = 18631
    		} else {
    			opts.port = 18629
    		}
    		klog.Infof("--port unset - defaulting to %d", opts.port)
    	}
    	if opts.peerPort == 0 {
    		if etcdEventsRE.MatchString(opts.dataDir) {
    			opts.peerPort = 2381
    		} else {
    			opts.peerPort = 2380
    		}
    		klog.Infof("--peer-port unset - defaulting to %d", opts.peerPort)
    	}
    
    	if opts.initialCluster == "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 09:59:52 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. pkg/bootstrap/platform/discovery.go

    	"Istio will try to discover the platform. Valid platform values are aws, azure, gcp, none").Get()
    
    // Discover attempts to discover the host platform, defaulting to
    // `Unknown` if a platform cannot be discovered.
    func Discover(ipv6 bool) Environment {
    	// First check if user has specified platform - use it if provided.
    	if len(CloudPlatform) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. pkg/controller/volume/persistentvolume/config/v1alpha1/register.go

    	SchemeBuilder runtime.SchemeBuilder
    	// localSchemeBuilder extends the SchemeBuilder instance with the external types. In this package,
    	// defaulting and conversion init funcs are registered as well.
    	localSchemeBuilder = &SchemeBuilder
    	// AddToScheme is a global function that registers this API group & version to a scheme
    	AddToScheme = localSchemeBuilder.AddToScheme
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  8. pkg/controller/replicaset/config/v1alpha1/register.go

    	SchemeBuilder runtime.SchemeBuilder
    	// localSchemeBuilder extends the SchemeBuilder instance with the external types. In this package,
    	// defaulting and conversion init funcs are registered as well.
    	localSchemeBuilder = &SchemeBuilder
    	// AddToScheme is a global function that registers this API group & version to a scheme
    	AddToScheme = localSchemeBuilder.AddToScheme
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  9. pkg/controller/ttlafterfinished/config/v1alpha1/register.go

    	SchemeBuilder runtime.SchemeBuilder
    	// localSchemeBuilder extends the SchemeBuilder instance with the external types. In this package,
    	// defaulting and conversion init funcs are registered as well.
    	localSchemeBuilder = &SchemeBuilder
    	// AddToScheme is a global function that registers this API group & version to a scheme
    	AddToScheme = localSchemeBuilder.AddToScheme
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  10. pkg/controller/cronjob/config/v1alpha1/register.go

    	SchemeBuilder runtime.SchemeBuilder
    	// localSchemeBuilder extends the SchemeBuilder instance with the external types. In this package,
    	// defaulting and conversion init funcs are registered as well.
    	localSchemeBuilder = &SchemeBuilder
    	// AddToScheme is a global function that registers this API group & version to a scheme
    	AddToScheme = localSchemeBuilder.AddToScheme
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 10 22:32:06 UTC 2020
    - 1.1K bytes
    - Viewed (0)
Back to top