Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 988 for STRATEGY (0.07 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/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)
  6. 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)
  7. 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)
  8. pkg/registry/networking/ingress/strategy.go

    )
    
    // ingressStrategy implements verification logic for Replication Ingress.
    type ingressStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating Replication Ingress objects.
    var Strategy = ingressStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    // NamespaceScoped returns true because all Ingress' need to be within a namespace.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 01:42:41 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  9. pkg/registry/admissionregistration/validatingadmissionpolicy/strategy.go

    	// Prevent any update on the Spec object from Status Strategy
    	newIC.Spec = oldIC.Spec
    
    	metav1.ResetObjectMetaForStatus(&newIC.ObjectMeta, &oldIC.ObjectMeta)
    	// No change in the generation.
    }
    
    // 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 06 00:00:21 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. pkg/registry/discovery/endpointslice/strategy.go

    // endpointSliceStrategy implements verification logic for Replication.
    type endpointSliceStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating Replication EndpointSlice objects.
    var Strategy = endpointSliceStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    // NamespaceScoped returns true because all EndpointSlices need to be within a namespace.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 02 10:00:01 UTC 2023
    - 7.6K bytes
    - Viewed (0)
Back to top