Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 280 for Canonicalize (0.21 sec)

  1. subprojects/core/src/test/groovy/org/gradle/initialization/DefaultSettingsLoaderTest.groovy

    class DefaultSettingsLoaderTest extends Specification {
    
        def gradle = Mock(GradleInternal)
        def settings = Mock(SettingsInternal)
        def state = Mock(SettingsState)
        def buildLayout = new BuildLayout(null, FileUtils.canonicalize(new File("someDir")), null, Stub(ScriptFileResolver))
        def buildLayoutFactory = Mock(BuildLayoutFactory)
        def settingsScript = Mock(ScriptSource)
        def startParameter = new StartParameterInternal()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 14 20:50:34 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. pkg/registry/apps/deployment/strategy.go

    	}
    	warnings = append(warnings, pod.GetWarningsForPodTemplate(ctx, field.NewPath("spec", "template"), &newDeployment.Spec.Template, nil)...)
    	return warnings
    }
    
    // Canonicalize normalizes the object after validation.
    func (deploymentStrategy) Canonicalize(obj runtime.Object) {
    }
    
    // AllowCreateOnUpdate is false for deployments.
    func (deploymentStrategy) AllowCreateOnUpdate() bool {
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 16 21:07:13 UTC 2022
    - 8.2K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

            logBuildOrSettingsFileDeprecation("buildFile");
            if (buildFile == null) {
                this.buildFile = null;
                setCurrentDir(null);
            } else {
                this.buildFile = FileUtils.canonicalize(buildFile);
                setProjectDir(this.buildFile.getParentFile());
            }
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  4. guava/src/com/google/common/reflect/TypeToken.java

       *       extends Enum<?>>} canonicalizes to {@code Enum<?>}, which is a supertype (if we disregard
       *       the upper bound is implicitly an Enum too).
       *   <li>If {@code canonicalize(A) == canonicalize(B)}, then {@code Foo<A>.isSubtypeOf(Foo<B>)}
       *       and vice versa. i.e. {@code A.is(B)} and {@code B.is(A)}.
       *   <li>{@code canonicalize(canonicalize(A)) == canonicalize(A)}.
       * </ol>
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/fallback_canonicalization.mlir

    // RUN: tf-tfrt-opt %s -pass-pipeline='builtin.module(func.func(canonicalize))' | FileCheck %s
    
    // CHECK-LABEL: func @test_const_tensor_canonicalization_single_denst_tensor_operand
    func.func @test_const_tensor_canonicalization_single_denst_tensor_operand() -> !tfrt_fallback.tf_tensor {
      // CHECK: tfrt_fallback_async.const_dense_tensor
      %a = corert.const_dense_tensor dense<[true, false]> : tensor<2xi1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Nov 04 14:07:37 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/initialization/layout/BuildLayoutFactory.java

        }
    
        private BuildLayout layout(File rootDir, File settingsFile) {
            return new BuildLayout(rootDir, settingsFile.getParentFile(), FileUtils.canonicalize(settingsFile), scriptFileResolver);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. pkg/registry/resource/resourceclassparameters/strategy.go

    }
    
    func (resourceClassParametersStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	return nil
    }
    
    func (resourceClassParametersStrategy) Canonicalize(obj runtime.Object) {
    }
    
    func (resourceClassParametersStrategy) AllowCreateOnUpdate() bool {
    	return false
    }
    
    func (resourceClassParametersStrategy) PrepareForUpdate(ctx context.Context, obj, old runtime.Object) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. pkg/credentialprovider/config.go

    	}
    
    	for _, configPath := range searchPaths {
    		absDockerConfigFileLocation, err := filepath.Abs(filepath.Join(configPath, configFileName))
    		if err != nil {
    			klog.Errorf("while trying to canonicalize %s: %v", configPath, err)
    			continue
    		}
    		klog.V(4).Infof("looking for .dockercfg at %s", absDockerConfigFileLocation)
    		contents, err := os.ReadFile(absDockerConfigFileLocation)
    		if os.IsNotExist(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 19 15:11:57 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/exec/EstablishBuildEnvironment.java

            originalSystemProperties.putAll(System.getProperties());
            Map<String, String> originalEnv = new HashMap<String, String>(System.getenv());
            File originalProcessDir = FileUtils.canonicalize(new File("."));
    
            for (Map.Entry<String, String> entry : build.getParameters().getSystemProperties().entrySet()) {
                if (SystemProperties.getInstance().isStandardProperty(entry.getKey())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. pkg/registry/resource/resourceclaimparameters/strategy.go

    }
    
    func (resourceClaimParametersStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	return nil
    }
    
    func (resourceClaimParametersStrategy) Canonicalize(obj runtime.Object) {
    }
    
    func (resourceClaimParametersStrategy) AllowCreateOnUpdate() bool {
    	return false
    }
    
    func (resourceClaimParametersStrategy) PrepareForUpdate(ctx context.Context, obj, old runtime.Object) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top