Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for NORMALIZED (0.14 sec)

  1. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

        }
    
    fun configureDistribution(name: String, distributionSpec: CopySpec, buildDistLifecycleTask: TaskProvider<Task>, normalized: Boolean = false) {
        val disDir = if (normalized) "normalized-distributions" else "distributions"
        val zipRootFolder = if (normalized) {
            moduleIdentity.version.map { "gradle-${it.baseVersion.version}" }
        } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/execution/selection/DefaultBuildTaskSelector.java

                StringBuilder normalized = new StringBuilder();
                for (int i = 0; i < path.segmentCount(); i++) {
                    if (!StringUtils.isBlank(path.segment(i))) {
                        if (isAbsolute || normalized.length() > 0) {
                            normalized.append(":");
                        }
                        normalized.append(path.segment(i));
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. pkg/test/framework/resource/flags.go

    	if s.SkipTProxy {
    		s.SkipWorkloadClasses = append(s.SkipWorkloadClasses, "tproxy")
    	}
    	// Allow passing a single CSV flag as well
    	normalized := make(ArrayFlags, 0)
    	for _, sk := range s.SkipWorkloadClasses {
    		normalized = append(normalized, strings.Split(sk, ",")...)
    	}
    	s.SkipWorkloadClasses = normalized
    
    	if s.Image.Hub == "" {
    		s.Image.Hub = env.HUB.ValueOrDefault("gcr.io/istio-testing")
    	}
    
    	if s.Image.Tag == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14K bytes
    - Viewed (0)
  4. src/math/big/nat.go

    // with 0 <= x[i] < _B and 0 <= i < n is stored in a slice of length n,
    // with the digits x[i] as the slice elements.
    //
    // A number is normalized if the slice contains no leading 0 digits.
    // During arithmetic operations, denormalized values may occur but are
    // always normalized before returning the final result. The normalized
    // representation of 0 is the empty or nil slice (length = 0).
    type nat []Word
    
    var (
    	natOne  = nat{1}
    	natTwo  = nat{2}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  5. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt

            val normalizedDistribution = bucket("${prefix}TestNormalizedDistribution", "Declare a normalized distribution (bin distribution without timestamp in version) to be used in tests")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 23:14:25 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/upgrade/apply.go

    	if err := configutil.NormalizeKubernetesVersion(&initCfg.ClusterConfiguration); err != nil {
    		return err
    	}
    
    	// Use normalized version string in all following code.
    	newK8sVersion, err := version.ParseSemantic(initCfg.KubernetesVersion)
    	if err != nil {
    		return errors.Errorf("unable to parse normalized version %q as a semantic version", initCfg.KubernetesVersion)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/AbstractTransformExecution.java

                // since it is part of the ComponentArtifactIdentifier returned by the transform.
                // For absolute paths, the name is already part of the normalized path,
                // and for all the other normalization strategies we use the name directly.
                transform.getInputArtifactNormalizer() == InputNormalizer.ABSOLUTE_PATH
                    ? inputArtifact.getAbsolutePath()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/unfuse_batch_norm_pass.cc

            bn_op.getLoc(), inputs, bn_op.getScale(), bn_op.getOffset(), mean,
            variance, epsilon, rewriter.getI64IntegerAttr(feature_index));
    
        // Return normalized values, mean, variable.
        rewriter.replaceOp(bn_op, ::mlir::ValueRange{batch_norm, mean, variance});
        return success();
      }
    };
    
    class UnfuseBatchNormInferencePattern
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  9. src/math/big/float.go

    	z.neg = math.Signbit(x) // handle -0, -Inf correctly
    	if x == 0 {
    		z.form = zero
    		return z
    	}
    	if math.IsInf(x, 0) {
    		z.form = inf
    		return z
    	}
    	// normalized x != 0
    	z.form = finite
    	fmant, exp := math.Frexp(x) // get normalized mantissa
    	z.mant = z.mant.setUint64(1<<63 | math.Float64bits(fmant)<<11)
    	z.exp = int32(exp) // always fits
    	if z.prec < 53 {
    		z.round(0)
    	}
    	return z
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuter.java

            }
    
            private void assertHasFailure(Matcher<? super String> matcher, Consumer<? super Failure> action) {
                Matcher<String> normalized = normalizedLineSeparators(matcher);
                for (FailureDetails failure : failures) {
                    if (normalized.matches(failure.description)) {
                        action.accept(failure);
                        return;
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 37.1K bytes
    - Viewed (0)
Back to top