Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 200 for Canonicalize (0.22 sec)

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

                for (String subkey : subkeys) {
                    try {
                        String basePath = baseKey + REGISTRY_ROOTPATH_SDK + "\\" + subkey;
                        File sdkDir = FileUtils.canonicalize(new File(windowsRegistry.getStringValue(WindowsRegistry.Key.HKEY_LOCAL_MACHINE, basePath, REGISTRY_FOLDER)));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  2. src/net/textproto/header.go

    func (h MIMEHeader) Set(key, value string) {
    	h[CanonicalMIMEHeaderKey(key)] = []string{value}
    }
    
    // Get gets the first value associated with the given key.
    // It is case insensitive; [CanonicalMIMEHeaderKey] is used
    // to canonicalize the provided key.
    // If there are no values associated with the key, Get returns "".
    // To use non-canonical keys, access the map directly.
    func (h MIMEHeader) Get(key string) string {
    	if h == nil {
    		return ""
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/version/VisualStudioMetadataBuilder.java

        public VisualStudioMetadataBuilder installDir(File installDir) {
            this.installDir = FileUtils.canonicalize(installDir);
            return this;
        }
    
        public VisualStudioMetadataBuilder visualCppDir(File visualCppDir) {
            this.visualCppDir = FileUtils.canonicalize(visualCppDir);
            return this;
        }
    
        public VisualStudioMetadataBuilder version(VersionNumber version) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/internal/match.go

    	for i, tag := range t {
    		ct, err := language.All.Canonicalize(tag)
    		if err != nil {
    			ct = tag
    		}
    		tags.index[ct] = i
    	}
    	return tags
    }
    
    type InheritanceMatcher struct {
    	index map[language.Tag]int
    }
    
    func (m InheritanceMatcher) Match(want ...language.Tag) (language.Tag, int, language.Confidence) {
    	for _, t := range want {
    		ct, err := language.All.Canonicalize(t)
    		if err != nil {
    			ct = t
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top