Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 287 for canonicalized (0.4 sec)

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

    func (nodeStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	return fieldIsDeprecatedWarnings(obj)
    }
    
    // Canonicalize normalizes the object after validation.
    func (nodeStrategy) Canonicalize(obj runtime.Object) {
    }
    
    // ValidateUpdate is the default update validation for an end user.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:06:39 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. pkg/registry/admissionregistration/mutatingwebhookconfiguration/strategy.go

    	ic := obj.(*admissionregistration.MutatingWebhookConfiguration)
    	return validation.ValidateMutatingWebhookConfiguration(ic)
    }
    
    // Canonicalize normalizes the object after validation.
    func (mutatingWebhookConfigurationStrategy) Canonicalize(obj runtime.Object) {
    }
    
    // AllowCreateOnUpdate is true for mutatingWebhookConfiguration; this means you may create one with a PUT request.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/rest/update.go

    	// Canonicalize allows an object to be mutated into a canonical form. This
    	// ensures that code that operates on these objects can rely on the common
    	// form for things like comparison.  Canonicalize is invoked after
    	// validation has succeeded but before the object has been persisted.
    	// This method may mutate the object.
    	Canonicalize(obj runtime.Object)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 27 11:48:28 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  4. pkg/registry/storage/csistoragecapacity/strategy.go

    	return storageutil.GetWarningsForCSIStorageCapacity(obj.(*storage.CSIStorageCapacity))
    }
    
    // Canonicalize normalizes the object after validation.
    func (csiStorageCapacityStrategy) Canonicalize(obj runtime.Object) {
    }
    
    func (csiStorageCapacityStrategy) AllowCreateOnUpdate() bool {
    	return false
    }
    
    // PrepareForUpdate is currently a NOP.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 08:41:09 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/FileCanonicalizer.java

     * limitations under the License.
     */
    
    package org.gradle.internal.file;
    
    import java.io.File;
    
    public interface FileCanonicalizer {
        File canonicalize(File file) throws FileException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:56 UTC 2024
    - 768 bytes
    - Viewed (0)
  6. pkg/registry/core/namespace/strategy.go

    func (namespaceStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	return nil
    }
    
    // Canonicalize normalizes the object after validation.
    func (namespaceStrategy) Canonicalize(obj runtime.Object) {
    	// Ensure the label matches the name for namespaces just created using GenerateName,
    	// where the final name wasn't available for defaulting to make this change.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 07 08:51:17 UTC 2021
    - 8.3K bytes
    - Viewed (0)
  7. pkg/registry/rbac/role/strategy.go

    }
    
    // WarningsOnCreate returns warnings for the creation of the given object.
    func (strategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string { return nil }
    
    // Canonicalize normalizes the object after validation.
    func (strategy) Canonicalize(obj runtime.Object) {
    	_ = obj.(*rbac.Role)
    }
    
    // ValidateUpdate is the default update validation for an end user.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 18 14:42:36 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  8. pkg/registry/rbac/rolebinding/strategy.go

    }
    
    // WarningsOnCreate returns warnings for the creation of the given object.
    func (strategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string { return nil }
    
    // Canonicalize normalizes the object after validation.
    func (strategy) Canonicalize(obj runtime.Object) {
    	_ = obj.(*rbac.RoleBinding)
    }
    
    // ValidateUpdate is the default update validation for an end user.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 18 14:42:36 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  9. pkg/registry/storage/volumeattributesclass/strategy.go

    func (volumeAttributesClassStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	return nil
    }
    
    // Canonicalize normalizes the object after validation.
    func (volumeAttributesClassStrategy) Canonicalize(obj runtime.Object) {
    }
    
    func (volumeAttributesClassStrategy) AllowCreateOnUpdate() 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)
  10. pkg/registry/networking/ingressclass/strategy.go

    func (ingressClassStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	return nil
    }
    
    // Canonicalize normalizes the object after validation.
    func (ingressClassStrategy) Canonicalize(obj runtime.Object) {
    }
    
    // AllowCreateOnUpdate is false for IngressClass; this means POST is needed to
    // create one.
    func (ingressClassStrategy) AllowCreateOnUpdate() bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 10 16:58:39 UTC 2021
    - 3.6K bytes
    - Viewed (0)
Back to top