Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,174 for STRATEGY (0.08 sec)

  1. pkg/registry/core/limitrange/strategy.go

    	"k8s.io/kubernetes/pkg/apis/core/validation"
    )
    
    type limitrangeStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating
    // LimitRange objects via the REST API.
    var Strategy = limitrangeStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    func (limitrangeStrategy) NamespaceScoped() bool {
    	return true
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 18 14:42:36 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  2. pkg/registry/resource/podschedulingcontext/strategy.go

    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating
    // ResourceClaim objects via the REST API.
    var Strategy = podSchedulingStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    func (podSchedulingStrategy) NamespaceScoped() bool {
    	return true
    }
    
    // GetResetFields returns the set of fields that get reset by the strategy and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:39:24 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. pkg/registry/core/namespace/strategy.go

    )
    
    // namespaceStrategy implements behavior for Namespaces
    type namespaceStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating Namespace
    // objects via the REST API.
    var Strategy = namespaceStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    // NamespaceScoped is false for namespaces.
    func (namespaceStrategy) NamespaceScoped() bool {
    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/registry/core/endpoint/strategy.go

    )
    
    // endpointsStrategy implements behavior for Endpoints
    type endpointsStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating Endpoint
    // objects via the REST API.
    var Strategy = endpointsStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    // NamespaceScoped is true for endpoints.
    func (endpointsStrategy) NamespaceScoped() bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 18 14:42:36 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  5. pkg/registry/core/persistentvolumeclaim/strategy.go

    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating PersistentVolumeClaim
    // objects via the REST API.
    var Strategy = persistentvolumeclaimStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    func (persistentvolumeclaimStrategy) NamespaceScoped() bool {
    	return true
    }
    
    // GetResetFields returns the set of fields that get reset by the strategy
    // and should not be modified by the user.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 20:58:25 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  6. pkg/registry/flowcontrol/prioritylevelconfiguration/strategy.go

    type priorityLevelConfigurationStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating priority level configuration objects.
    var Strategy = priorityLevelConfigurationStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    // NamespaceScoped returns false because all PriorityClasses are global.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 20:55:50 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. pkg/registry/core/podtemplate/strategy.go

    )
    
    // podTemplateStrategy implements behavior for PodTemplates
    type podTemplateStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating PodTemplate
    // objects via the REST API.
    var Strategy = podTemplateStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    // NamespaceScoped is true for pod templates.
    func (podTemplateStrategy) NamespaceScoped() bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 18 14:42:36 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  8. pkg/registry/core/replicationcontroller/strategy.go

    )
    
    // rcStrategy implements verification logic for Replication Controllers.
    type rcStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating Replication Controller objects.
    var Strategy = rcStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    // DefaultGarbageCollectionPolicy returns OrphanDependents for v1 for backwards compatibility,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 16 21:06:10 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  9. pkg/registry/core/service/strategy.go

    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating Services
    // objects via the REST API.
    var Strategy = svcStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    // NamespaceScoped is true for services.
    func (svcStrategy) NamespaceScoped() bool {
    	return true
    }
    
    // GetResetFields returns the set of fields that get reset by the strategy
    // and should not be modified by the user.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:36 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. pkg/registry/admissionregistration/validatingwebhookconfiguration/strategy.go

    type validatingWebhookConfigurationStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating validatingWebhookConfiguration objects.
    var Strategy = validatingWebhookConfigurationStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top