Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 197 for Canonicalize (0.23 sec)

  1. 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)
  2. okhttp/src/test/java/okhttp3/UrlComponentEncodingTester.kt

          }
        }
    
      private fun testParseAlreadyEncoded(
        codePoint: Int,
        encoding: Encoding,
        component: Component,
      ) {
        val expected = component.canonicalize(encoding.encode(codePoint))
        val urlString = component.urlString(expected)
        val url = urlString.toHttpUrl()
        val actual = component.encodedValue(url)
        if (actual != expected) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. pkg/registry/storage/csidriver/strategy.go

    func (csiDriverStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	return nil
    }
    
    // Canonicalize normalizes the object after validation.
    func (csiDriverStrategy) Canonicalize(obj runtime.Object) {
    }
    
    func (csiDriverStrategy) AllowCreateOnUpdate() bool {
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 07:01:37 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/api/internal/file/temp/GradleUserHomeTemporaryFileProvider.java

            super(new Factory<File>() {
                @Override
                public File create() {
                    return FileUtils.canonicalize(new File(gradleUserHomeDirProvider.getGradleUserHomeDirectory(), ".tmp"));
                }
            });
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 07:11:58 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. pkg/registry/autoscaling/horizontalpodautoscaler/strategy.go

    func (autoscalerStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	return nil
    }
    
    // Canonicalize normalizes the object after validation.
    func (autoscalerStrategy) Canonicalize(obj runtime.Object) {
    }
    
    // AllowCreateOnUpdate is false for autoscalers.
    func (autoscalerStrategy) AllowCreateOnUpdate() bool {
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:51:00 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. pkg/registry/networking/servicecidr/strategy.go

    	cidrConfig := obj.(*networking.ServiceCIDR)
    	err := validation.ValidateServiceCIDR(cidrConfig)
    	return err
    }
    
    // Canonicalize normalizes the object after validation.
    func (serviceCIDRStrategy) Canonicalize(obj runtime.Object) {
    }
    
    // AllowCreateOnUpdate is false for ServiceCIDR; this means POST is needed to create one.
    func (serviceCIDRStrategy) AllowCreateOnUpdate() bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/tests/ifrt/tf_identity_propagation.mlir

    // RUN: tf-tfrt-opt %s -tf-identity-propagation -canonicalize | FileCheck %s
    
    // CHECK-LABEL: func @identity
    // CHECK-SAME:    (%[[ARG0:.*]]: tensor<i32>)
    func.func @identity(%arg0: tensor<i32>) -> tensor<i32> {
      // CHECK-NOT: "tf.Identity"
      %0 = "tf.Identity"(%arg0) : (tensor<i32>) -> tensor<i32>
      // CHECK: return %[[ARG0]]
      func.return %0 : tensor<i32>
    }
    
    // CHECK-LABEL: func @identity_terminator
    // CHECK-SAME:    (%[[ARG0:.*]]: tensor<i32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Mar 23 23:34:42 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssagen/abi.go

    		refs: make(map[string]obj.ABISet),
    	}
    }
    
    // canonicalize returns the canonical name used for a linker symbol in
    // s's maps. Symbols in this package may be written either as "".X or
    // with the package's import path already in the symbol. This rewrites
    // both to use the full path, which matches compiler-generated linker
    // symbol names.
    func (s *SymABIs) canonicalize(linksym string) string {
    	if strings.HasPrefix(linksym, `"".`) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresourcedefinition/strategy.go

    }
    
    // AllowUnconditionalUpdate is the default update policy for CustomResourceDefinition objects.
    func (strategy) AllowUnconditionalUpdate() bool {
    	return false
    }
    
    // Canonicalize normalizes the object after validation.
    func (strategy) Canonicalize(obj runtime.Object) {
    }
    
    // ValidateUpdate is the default update validation for an end user updating status.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/language/parse.go

    // The resulting tag is canonicalized using the canonicalization type c.
    func (c CanonType) Parse(s string) (t Tag, err error) {
    	defer func() {
    		if recover() != nil {
    			t = Tag{}
    			err = language.ErrSyntax
    		}
    	}()
    
    	tt, err := language.Parse(s)
    	if err != nil {
    		return makeTag(tt), err
    	}
    	tt, changed := canonicalize(c, tt)
    	if changed {
    		tt.RemakeString()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top