Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 266 for Canonicalize (0.35 sec)

  1. pkg/registry/storage/csidriver/strategy.go

    func (csiDriverStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	return nil
    }
    
    // Canonicalize normalizes the object after validation.
    func (csiDriverStrategy) Canonicalize(obj runtime.Object) {
    }
    
    func (csiDriverStrategy) AllowCreateOnUpdate() bool {
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 07:01:37 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/executor_island_materialize_const.mlir

    // RUN: tf-opt %s -pass-pipeline='builtin.module(func.func(canonicalize))' | FileCheck %s
    
    // Test that a constant stays inside an island after canonicalization
    
    // CHECK-LABEL: func @constant_in_island
    func.func @constant_in_island(%arg0 : tensor<i1>) -> tensor<f32> {
      %0 = tf_executor.graph {
    // CHECK: tf_executor.island
    // CHECK: tf.Const{{.*}}2.0
        %1:2 = tf_executor.island {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Nov 04 14:07:37 UTC 2022
    - 854 bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/api/internal/file/temp/GradleUserHomeTemporaryFileProvider.java

            super(new Factory<File>() {
                @Override
                public File create() {
                    return FileUtils.canonicalize(new File(gradleUserHomeDirProvider.getGradleUserHomeDirectory(), ".tmp"));
                }
            });
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 07:11:58 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. pkg/registry/node/runtimeclass/strategy.go

    func (strategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	return nodeapi.GetWarningsForRuntimeClass(obj.(*node.RuntimeClass))
    }
    
    // Canonicalize normalizes the object after validation.
    func (strategy) Canonicalize(obj runtime.Object) {
    	_ = obj.(*node.RuntimeClass)
    }
    
    // ValidateUpdate is the default update validation for an end user.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 09 08:17:32 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  5. pkg/registry/autoscaling/horizontalpodautoscaler/strategy.go

    func (autoscalerStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	return nil
    }
    
    // Canonicalize normalizes the object after validation.
    func (autoscalerStrategy) Canonicalize(obj runtime.Object) {
    }
    
    // AllowCreateOnUpdate is false for autoscalers.
    func (autoscalerStrategy) AllowCreateOnUpdate() bool {
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:51:00 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. pkg/registry/networking/servicecidr/strategy.go

    	cidrConfig := obj.(*networking.ServiceCIDR)
    	err := validation.ValidateServiceCIDR(cidrConfig)
    	return err
    }
    
    // Canonicalize normalizes the object after validation.
    func (serviceCIDRStrategy) Canonicalize(obj runtime.Object) {
    }
    
    // AllowCreateOnUpdate is false for ServiceCIDR; this means POST is needed to create one.
    func (serviceCIDRStrategy) AllowCreateOnUpdate() bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. pkg/registry/core/configmap/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) {
    }
    
    func (strategy) AllowCreateOnUpdate() bool {
    	return false
    }
    
    func (strategy) PrepareForUpdate(ctx context.Context, newObj, oldObj runtime.Object) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 20:38:11 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. pkg/registry/rbac/clusterrole/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.ClusterRole)
    }
    
    // ValidateUpdate is the default update validation for an end user.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 01:52:02 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  9. pkg/registry/certificates/certificates/strategy.go

    func (csrStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string { return nil }
    
    // Canonicalize normalizes the object after validation (which includes a signature check).
    func (csrStrategy) 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: Fri Mar 18 21:41:43 UTC 2022
    - 11.4K bytes
    - Viewed (0)
  10. pkg/registry/core/event/strategy.go

    }
    
    // WarningsOnCreate returns warnings for the creation of the given object.
    func (eventStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string { return nil }
    
    // Canonicalize normalizes the object after validation.
    func (eventStrategy) Canonicalize(obj runtime.Object) {
    }
    
    func (eventStrategy) AllowCreateOnUpdate() bool {
    	return true
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 10 19:01:45 UTC 2022
    - 4.8K bytes
    - Viewed (0)
Back to top