Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 54 for NORMALIZED (0.12 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/UserInputReceiver.java

         */
        void readAndForwardStdin();
    
        interface Normalizer {
            /**
             * Validates and normalizes the given text received from the user.
             *
             * @return The normalized text to forward to the daemon.
             */
            @Nullable
            String normalize(String text);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 30 05:03:08 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. build-logic/publishing/src/main/kotlin/gradlebuild.publish-public-libraries.gradle.kts

                    version = moduleIdentity.version.get().baseVersion.version
                }
            }
        }
        tasks.named("publishLocalPublicationToRemoteRepository") {
            enabled = false // don't publish normalized local version to remote repository when using 'publish' lifecycle task
        }
        tasks.named("publishGradleDistributionPublicationToLocalRepository") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:57 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. 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)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransformInvocationFactory.java

            ExecutionEngine effectiveEngine;
            if (producerProject == null) {
                // Non-project-bound transforms run in a global immutable workspace,
                // and are identified by a non-normalized identity
                // See comments on NonNormalizedIdentityImmutableTransformExecution
                identityCache = immutableWorkspaceServices.getIdentityCache();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:14:33 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. src/internal/trace/mud.go

    // utilization. For example, the integral from mutator utilization a
    // to b is the total duration during which the mutator utilization was
    // in the range [a, b].
    //
    // This distribution is *not* normalized (it is not a probability
    // distribution). This makes it easier to work with as it's being
    // updated.
    //
    // It is represented as the sum of scaled uniform distribution
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top