Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 139 for canonicalized (0.46 sec)

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

    func (limitrangeStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	return nil
    }
    
    // Canonicalize normalizes the object after validation.
    func (limitrangeStrategy) Canonicalize(obj runtime.Object) {
    }
    
    func (limitrangeStrategy) AllowCreateOnUpdate() bool {
    	return true
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 18 14:42:36 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  2. pkg/registry/core/serviceaccount/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, obj, old runtime.Object) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 18 14:42:36 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/rest/create.go

    	WarningsOnCreate(ctx context.Context, obj runtime.Object) []string
    	// 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.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 27 11:48:28 UTC 2022
    - 9.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting_cleanup.h

    // Performs IR cleanup and canonicalization in preparation for Resource Op
    // Lifting pass. It does several things:
    // - Eliminate identity nodes to remove (most) of resource aliasing
    // - Canonicalize functional control flow. For functional control flow we
    //   expect that any resource output of these ops matches the corresponding
    //   input, and then forward that input to the output. Fails if this is not the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 19 00:13:50 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/registry/core/endpoint/strategy.go

    func (endpointsStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	return nil
    }
    
    // Canonicalize normalizes the object after validation.
    func (endpointsStrategy) Canonicalize(obj runtime.Object) {
    }
    
    // AllowCreateOnUpdate is true for endpoints.
    func (endpointsStrategy) AllowCreateOnUpdate() bool {
    	return true
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 18 14:42:36 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top