Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,174 for STRATEGY (0.06 sec)

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

    // resourcequotaStrategy implements behavior for ResourceQuota objects
    type resourcequotaStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating ResourceQuota
    // objects via the REST API.
    var Strategy = resourcequotaStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    // NamespaceScoped is true for resourcequotas.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 18 17:07:29 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  2. pkg/registry/flowcontrol/flowschema/strategy.go

    )
    
    // flowSchemaStrategy implements verification logic for FlowSchema.
    type flowSchemaStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating flow schema objects.
    var Strategy = flowSchemaStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    // NamespaceScoped returns false because all PriorityClasses are global.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 11:48:22 UTC 2023
    - 6K bytes
    - Viewed (0)
  3. pkg/registry/certificates/certificates/strategy.go

    // object.
    func (csrStrategy) AllowUnconditionalUpdate() bool {
    	return true
    }
    
    // Storage strategy for the Status subresource
    type csrStatusStrategy struct {
    	csrStrategy
    }
    
    var StatusStrategy = csrStatusStrategy{Strategy}
    
    // 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: Fri Mar 18 21:41:43 UTC 2022
    - 11.4K bytes
    - Viewed (0)
  4. pkg/registry/apps/deployment/strategy.go

    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating Deployment
    // objects via the REST API.
    var Strategy = deploymentStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    // Make sure we correctly implement the interface.
    var _ = rest.GarbageCollectionDeleteStrategy(Strategy)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 16 21:07:13 UTC 2022
    - 8.2K bytes
    - Viewed (0)
  5. pkg/registry/core/persistentvolume/strategy.go

    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating PersistentVolume
    // objects via the REST API.
    var Strategy = persistentvolumeStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    func (persistentvolumeStrategy) NamespaceScoped() bool {
    	return false
    }
    
    // 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 01 03:58:36 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  6. pkg/registry/apps/daemonset/strategy.go

    type daemonSetStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating DaemonSet objects.
    var Strategy = daemonSetStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    // Make sure we correctly implement the interface.
    var _ = rest.GarbageCollectionDeleteStrategy(Strategy)
    
    // DefaultGarbageCollectionPolicy returns DeleteDependents for all currently served versions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 01:52:02 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  7. pkg/registry/apps/replicaset/strategy.go

    type rsStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating ReplicaSet objects.
    var Strategy = rsStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    // Make sure we correctly implement the interface.
    var _ = rest.GarbageCollectionDeleteStrategy(Strategy)
    
    // DefaultGarbageCollectionPolicy returns DeleteDependents for all currently served versions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 16 21:06:43 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  8. pkg/registry/storage/volumeattributesclass/strategy.go

    type volumeAttributesClassStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating
    // VolumeAttributesClass objects via the REST API.
    var Strategy = volumeAttributesClassStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    func (volumeAttributesClassStrategy) NamespaceScoped() bool {
    	return false
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:18:56 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. pkg/registry/scheduling/priorityclass/strategy.go

    )
    
    // priorityClassStrategy implements verification logic for PriorityClass.
    type priorityClassStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating PriorityClass objects.
    var Strategy = priorityClassStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    // NamespaceScoped returns false because all PriorityClasses are global.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 08 10:11:23 UTC 2022
    - 3K bytes
    - Viewed (0)
  10. pkg/registry/storage/storageclass/strategy.go

    // storageClassStrategy implements behavior for StorageClass objects
    type storageClassStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating
    // StorageClass objects via the REST API.
    var Strategy = storageClassStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    func (storageClassStrategy) NamespaceScoped() bool {
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 25 07:15:34 UTC 2022
    - 2.9K bytes
    - Viewed (0)
Back to top