Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 280 for Canonicalize (0.42 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/AbstractWindowsKitComponentLocator.java

                locateComponentsInRegistry(baseKey);
            }
        }
    
        private void locateComponentsInRegistry(String baseKey) {
            try {
                File windowsKitDir = FileUtils.canonicalize(new File(windowsRegistry.getStringValue(WindowsRegistry.Key.HKEY_LOCAL_MACHINE, baseKey + REGISTRY_ROOTPATH_KIT, REGISTRY_KIT_10)));
                Set<T> found = findIn(windowsKitDir, DiscoveryType.REGISTRY);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  2. pkg/registry/batch/cronjob/strategy.go

    	}
    	warnings = append(warnings, job.WarningsForJobSpec(ctx, field.NewPath("spec", "jobTemplate", "spec"), &newCronJob.Spec.JobTemplate.Spec, nil)...)
    	return warnings
    }
    
    // Canonicalize normalizes the object after validation.
    func (cronJobStrategy) Canonicalize(obj runtime.Object) {
    }
    
    func (cronJobStrategy) AllowUnconditionalUpdate() bool {
    	return true
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 15:14:03 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  3. pkg/registry/discovery/endpointslice/strategy.go

    	if eps == nil {
    		return nil
    	}
    	var warnings []string
    	warnings = append(warnings, warnOnDeprecatedAddressType(eps.AddressType)...)
    	return warnings
    }
    
    // Canonicalize normalizes the object after validation.
    func (endpointSliceStrategy) Canonicalize(obj runtime.Object) {
    }
    
    // AllowCreateOnUpdate is false for EndpointSlice; this means POST is needed to create one.
    func (endpointSliceStrategy) AllowCreateOnUpdate() bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 02 10:00:01 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/canonicalize_compile_and_replicate_attributes.mlir

    // RUN: tf-opt %s -tf-canonicalize-compile-and-replicate-attributes | FileCheck %s
    
    // CHECK-LABEL: func.func @convert_tpu_replicate
    func.func @convert_tpu_replicate() {
      tf_executor.graph {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/version/WindowsRegistryVersionLocator.java

                }
                File visualCppDir = new File(windowsRegistry.getStringValue(WindowsRegistry.Key.HKEY_LOCAL_MACHINE, baseKey + REGISTRY_ROOTPATH_VC, versionString));
                visualCppDir = FileUtils.canonicalize(visualCppDir);
                File visualStudioDir = visualCppDir.getParentFile();
                VersionNumber version = VersionNumber.parse(versionString);
                installs.add(new VisualStudioMetadataBuilder()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. pkg/registry/resource/resourceclass/strategy.go

    	return validation.ValidateClass(resourceClass)
    }
    
    func (resourceClassStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	return nil
    }
    
    func (resourceClassStrategy) Canonicalize(obj runtime.Object) {
    }
    
    func (resourceClassStrategy) AllowCreateOnUpdate() bool {
    	return false
    }
    
    func (resourceClassStrategy) PrepareForUpdate(ctx context.Context, obj, old runtime.Object) {
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 10 19:08:24 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  7. pkg/registry/policy/poddisruptionbudget/strategy.go

    func (podDisruptionBudgetStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	return nil
    }
    
    // Canonicalize normalizes the object after validation.
    func (podDisruptionBudgetStrategy) Canonicalize(obj runtime.Object) {
    }
    
    // AllowCreateOnUpdate is true for PodDisruptionBudget; this means you may create one with a PUT request.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 10 22:25:42 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  8. src/net/http/header.go

    // The key is case insensitive; it is canonicalized by
    // [CanonicalHeaderKey].
    func (h Header) Add(key, value string) {
    	textproto.MIMEHeader(h).Add(key, value)
    }
    
    // Set sets the header entries associated with key to the
    // single element value. It replaces any existing values
    // associated with key. The key is case insensitive; it is
    // canonicalized by [textproto.CanonicalMIMEHeaderKey].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. pkg/registry/admissionregistration/validatingadmissionpolicy/strategy.go

    func (v *validatingAdmissionPolicyStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	return nil
    }
    
    // Canonicalize normalizes the object after validation.
    func (v *validatingAdmissionPolicyStrategy) Canonicalize(obj runtime.Object) {
    }
    
    // AllowCreateOnUpdate is true for validatingAdmissionPolicy; this means you may create one with a PUT request.
    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. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/remove_init_variable_v1.py

              outputs={'r': tensor_info_r},
              method_name='some_function'))
      }, tf.initializers.global_variables(), None
    
    
    if __name__ == '__main__':
      common_v1.set_tf_options()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top