Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,176 for STRATEGY (0.1 sec)

  1. pkg/registry/storagemigration/storagemigration/strategy.go

    )
    
    // strategy implements behavior for ClusterTrustBundles.
    type strategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Strategy is the create, update, and delete strategy for ClusterTrustBundles.
    var Strategy = strategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    var _ rest.RESTCreateStrategy = Strategy
    var _ rest.RESTUpdateStrategy = Strategy
    var _ rest.RESTDeleteStrategy = Strategy
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. pkg/registry/apps/statefulset/strategy.go

    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating Replication StatefulSet objects.
    var Strategy = statefulSetStrategy{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: Tue Nov 08 15:48:10 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  3. pkg/registry/batch/cronjob/strategy.go

    )
    
    // cronJobStrategy implements verification logic for Replication Controllers.
    type cronJobStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating CronJob objects.
    var Strategy = cronJobStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    // DefaultGarbageCollectionPolicy returns OrphanDependents for batch/v1beta1 for backwards compatibility,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 15:14:03 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  4. pkg/registry/networking/ipaddress/strategy.go

    	return base
    }
    
    // Strategy is the default logic that applies when creating and updating Replication IPAddress objects.
    var Strategy = ipAddressStrategy{legacyscheme.Scheme, noopNameGenerator{}}
    
    // Strategy should implement rest.RESTCreateStrategy
    var _ rest.RESTCreateStrategy = Strategy
    
    // Strategy should implement rest.RESTUpdateStrategy
    var _ rest.RESTUpdateStrategy = Strategy
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 22:58:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. pkg/test/framework/resource/config/cleanup/strategy.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package cleanup
    
    // Strategy enumerates the options for configuration cleanup behavior.
    type Strategy int
    
    const (
    	// Always will trigger a cleanup operation the test context completes.
    	Always Strategy = iota
    
    	// Conditionally will trigger a cleanup operation the test context
    	// completes, unless -istio.test.nocleanup is set.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 27 17:09:00 UTC 2022
    - 1K bytes
    - Viewed (0)
  6. pkg/registry/coordination/lease/strategy.go

    )
    
    // leaseStrategy implements verification logic for Leases.
    type leaseStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating Lease objects.
    var Strategy = leaseStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    // NamespaceScoped returns true because all Lease' need to be within a namespace.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 18 14:42:36 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  7. pkg/registry/storage/csinode/strategy.go

    )
    
    // csiNodeStrategy implements behavior for CSINode objects
    type csiNodeStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating
    // CSINode objects via the REST API.
    var Strategy = csiNodeStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    func (csiNodeStrategy) NamespaceScoped() bool {
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 26 00:30:42 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  8. pkg/registry/core/node/strategy.go

    }
    
    // Nodes is the default logic that applies when creating and updating Node
    // objects.
    var Strategy = nodeStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    // NamespaceScoped is false for nodes.
    func (nodeStrategy) 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 Mar 13 23:06:39 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. pkg/registry/admissionregistration/mutatingwebhookconfiguration/strategy.go

    type mutatingWebhookConfigurationStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating mutatingWebhookConfiguration objects.
    var Strategy = mutatingWebhookConfigurationStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. pkg/registry/resource/resourceclaim/strategy.go

    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating
    // ResourceClaim objects via the REST API.
    var Strategy = resourceclaimStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    func (resourceclaimStrategy) 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.3K bytes
    - Viewed (0)
Back to top