Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 139 for canonicalized (0.35 sec)

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

    	return storageutil.GetWarningsForCSIStorageCapacity(obj.(*storage.CSIStorageCapacity))
    }
    
    // Canonicalize normalizes the object after validation.
    func (csiStorageCapacityStrategy) Canonicalize(obj runtime.Object) {
    }
    
    func (csiStorageCapacityStrategy) AllowCreateOnUpdate() bool {
    	return false
    }
    
    // PrepareForUpdate is currently a NOP.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 08:41:09 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. 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)
  3. pkg/registry/core/namespace/strategy.go

    func (namespaceStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	return nil
    }
    
    // Canonicalize normalizes the object after validation.
    func (namespaceStrategy) Canonicalize(obj runtime.Object) {
    	// Ensure the label matches the name for namespaces just created using GenerateName,
    	// where the final name wasn't available for defaulting to make this change.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 07 08:51:17 UTC 2021
    - 8.3K bytes
    - Viewed (0)
  4. pkg/registry/rbac/role/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.Role)
    }
    
    // ValidateUpdate is the default update validation for an end user.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 18 14:42:36 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  5. pkg/registry/rbac/rolebinding/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.RoleBinding)
    }
    
    // ValidateUpdate is the default update validation for an end user.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 18 14:42:36 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  6. 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)
  7. pkg/registry/networking/ingressclass/strategy.go

    func (ingressClassStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	return nil
    }
    
    // Canonicalize normalizes the object after validation.
    func (ingressClassStrategy) Canonicalize(obj runtime.Object) {
    }
    
    // AllowCreateOnUpdate is false for IngressClass; this means POST is needed to
    // create one.
    func (ingressClassStrategy) AllowCreateOnUpdate() bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 10 16:58:39 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  8. pkg/registry/networking/ipaddress/strategy.go

    	ipAddress := obj.(*networking.IPAddress)
    	err := validation.ValidateIPAddress(ipAddress)
    	return err
    }
    
    // Canonicalize normalizes the object after validation.
    func (ipAddressStrategy) Canonicalize(obj runtime.Object) {
    }
    
    // AllowCreateOnUpdate is false for IPAddress; this means POST is needed to create one.
    func (ipAddressStrategy) AllowCreateOnUpdate() bool {
    	return false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 22:58:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. testing/integ-test/src/integTest/groovy/org/gradle/integtests/environment/BuildEnvironmentIntegrationTest.groovy

        def "canonicalizes working directory on case insensitive file system"() {
            testProject()
    
            when:
            def mixedCaseDir = new File(testDirectory, "JAVA/QuickStart")
            executer.inDirectory(mixedCaseDir).run()
    
            then:
            noExceptionThrown()
        }
    
        @Requires(UnitTestPreconditions.Windows)
        def "canonicalizes working directory for short windows path"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. pkg/registry/scheduling/priorityclass/strategy.go

    func (priorityClassStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	return nil
    }
    
    // Canonicalize normalizes the object after validation.
    func (priorityClassStrategy) Canonicalize(obj runtime.Object) {}
    
    // AllowCreateOnUpdate is false for PriorityClass; this means POST is needed to create one.
    func (priorityClassStrategy) AllowCreateOnUpdate() bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 08 10:11:23 UTC 2022
    - 3K bytes
    - Viewed (0)
Back to top