Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 139 for canonicalized (0.19 sec)

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

    func (storageClassStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	return storageutil.GetWarningsForStorageClass(obj.(*storage.StorageClass))
    }
    
    // Canonicalize normalizes the object after validation.
    func (storageClassStrategy) Canonicalize(obj runtime.Object) {
    }
    
    func (storageClassStrategy) AllowCreateOnUpdate() 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)
  2. tensorflow/compiler/mlir/lite/tests/raise-custom-ops.mlir

    // RUN: tf-opt -tfl-raise-custom-ops -canonicalize %s --split-input-file | FileCheck %s
    // RUN: tf-opt -tfl-raise-custom-ops="test-raise-tf-targets=tf.FakeQuantWithMinMaxVarsPerChannel" -canonicalize %s --split-input-file | FileCheck --check-prefix=WRAPPED %s
    
    // CHECK-LABEL: custom_op
    func.func @custom_op(%arg0: tensor<4xf32>) -> tensor<4xf32> {
      %0 = "arith.constant" () {value = dense<1.0> : tensor<4xf32>} : () -> tensor<4xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. pkg/registry/admissionregistration/validatingwebhookconfiguration/strategy.go

    func (validatingWebhookConfigurationStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	return nil
    }
    
    // Canonicalize normalizes the object after validation.
    func (validatingWebhookConfigurationStrategy) Canonicalize(obj runtime.Object) {
    }
    
    // AllowCreateOnUpdate is true for validatingWebhookConfiguration; 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
    - 4.1K bytes
    - Viewed (0)
  4. pkg/registry/core/podtemplate/strategy.go

    	newPodTemplate := obj.(*api.PodTemplate)
    	return pod.GetWarningsForPodTemplate(ctx, field.NewPath("template"), &newPodTemplate.Template, nil)
    }
    
    // Canonicalize normalizes the object after validation.
    func (podTemplateStrategy) Canonicalize(obj runtime.Object) {
    }
    
    // AllowCreateOnUpdate is false for pod templates.
    func (podTemplateStrategy) AllowCreateOnUpdate() bool {
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 18 14:42:36 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  5. pkg/registry/networking/networkpolicy/strategy.go

    func (networkPolicyStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	return nil
    }
    
    // Canonicalize normalizes the object after validation.
    func (networkPolicyStrategy) Canonicalize(obj runtime.Object) {}
    
    // AllowCreateOnUpdate is false for NetworkPolicy; this means POST is needed to create one.
    func (networkPolicyStrategy) AllowCreateOnUpdate() bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. pkg/registry/storage/volumeattachment/strategy.go

    func (volumeAttachmentStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	return nil
    }
    
    // Canonicalize normalizes the object after validation.
    func (volumeAttachmentStrategy) Canonicalize(obj runtime.Object) {
    }
    
    func (volumeAttachmentStrategy) AllowCreateOnUpdate() bool {
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 06 21:19:19 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  7. pkg/registry/apiserverinternal/storageversion/strategy.go

    func (storageVersionStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	return nil
    }
    
    // Canonicalize normalizes the object after validation.
    func (storageVersionStrategy) Canonicalize(obj runtime.Object) {
    }
    
    // Does not allow creating a StorageVersion object with a PUT request.
    func (storageVersionStrategy) AllowCreateOnUpdate() bool {
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top