Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 287 for canonicalized (0.31 sec)

  1. 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)
  2. 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)
  3. pkg/registry/storage/storageclass/strategy.go

    func (storageClassStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	return storageutil.GetWarningsForStorageClass(obj.(*storage.StorageClass))
    }
    
    // Canonicalize normalizes the object after validation.
    func (storageClassStrategy) Canonicalize(obj runtime.Object) {
    }
    
    func (storageClassStrategy) AllowCreateOnUpdate() bool {
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 25 07:15:34 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. pkg/registry/core/podtemplate/strategy.go

    	newPodTemplate := obj.(*api.PodTemplate)
    	return pod.GetWarningsForPodTemplate(ctx, field.NewPath("template"), &newPodTemplate.Template, nil)
    }
    
    // Canonicalize normalizes the object after validation.
    func (podTemplateStrategy) Canonicalize(obj runtime.Object) {
    }
    
    // AllowCreateOnUpdate is false for pod templates.
    func (podTemplateStrategy) AllowCreateOnUpdate() bool {
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 18 14:42:36 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  7. 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)
  8. tensorflow/compiler/mlir/tf2xla/internal/clustering_bridge_passes.cc

      // attribute have no host device attribute.
      pm.addPass(mlir::TFTPU::CreateTPUClusterCleanupAttributesPass());
      pm.addNestedPass<FuncOp>(mlir::TFDevice::CreateDeviceAttributeToLaunchPass());
      // Running canonicalizer before decomposing resource ops in cluster helps the
      // latter pass to converge faster as it does not have to spend time folding
      // away dead ops.
      pm.addNestedPass<FuncOp>(mlir::createCanonicalizerPass());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 16:09:14 UTC 2024
    - 11.2K bytes
    - Viewed (1)
  9. src/net/http/server.go

    	var n *routingNode
    	host := r.URL.Host
    	escapedPath := r.URL.EscapedPath()
    	path := escapedPath
    	// CONNECT requests are not canonicalized.
    	if r.Method == "CONNECT" {
    		// If r.URL.Path is /tree and its handler is not registered,
    		// the /tree -> /tree/ redirect applies to CONNECT requests
    		// but the path canonicalization does not.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  10. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/DefaultJavaInstallationRegistry.java

                .map(InstallationSupplier::get)
                .flatMap(Set::stream)
                .filter(this::installationExists)
                .map(this::canonicalize)
                .map(this::maybeGetEnclosedInstallation)
                .filter(this::installationHasExecutable)
                .filter(distinctByKey(InstallationLocation::getLocation))
                .collect(Collectors.toSet());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:46:10 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top