Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 180 for NORMALIZED (0.16 sec)

  1. src/math/frexp.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package math
    
    // Frexp breaks f into a normalized fraction
    // and an integral power of two.
    // It returns frac and exp satisfying f == frac × 2**exp,
    // with the absolute value of frac in the interval [½, 1).
    //
    // Special cases are:
    //
    //	Frexp(±0) = ±0, 0
    //	Frexp(±Inf) = ±Inf, 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 929 bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/fess/hi/stopwords.txt

    वे
    वग़ैरह
    संग
    सकता
    सकते
    सबसे
    सभी
    साथ
    साबुत
    साभ
    सारा
    से
    सो
    ही
    हुआ
    हुई
    हुए
    है
    हैं
    हो
    होता
    होती
    होते
    होना
    होने
    # additional normalized forms of the above
    अपनि
    जेसे
    होति
    सभि
    तिंहों
    इंहों
    दवारा
    इसि
    किंहें
    थि
    उंहों
    ओर
    जिंहें
    वहिं
    अभि
    बनि
    हि
    उंहिं
    उंहें
    हें
    वगेरह
    एसे
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 2.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/testFixtures/groovy/org/gradle/internal/logging/text/TestStyledTextOutput.groovy

                @Override protected void doStyleChange(Style style) {
                }
            }
        }
    
        String getRawValue() {
            return result.toString()
        }
    
        /**
         * Returns the normalized value of this text output. Normalizes:
         * - style changes to {style} where _style_ is the lowercase name of the style.
         * - line endings to \n
         * - stack traces to {stacktrace}\n
         */
        String getValue() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/path/UrlNormalizer.java

     * model inheritance.
     *
     */
    public interface UrlNormalizer {
    
        /**
         * Normalizes the specified URL.
         *
         * @param url The URL to normalize, may be {@code null}.
         * @return The normalized URL or {@code null} if the input was {@code null}.
         */
        String normalize(String url);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/tasks/DistributionTest.kt

         */
        @Internal
        val gradleInstallationForTest = GradleInstallationForTestEnvironmentProvider(project, this)
    
        /**
         * A 'normalized' distribution to test against if needed
         */
        @Internal
        val normalizedDistributionZip = DistributionZipEnvironmentProvider(project, "normalized")
    
        /**
         * A 'bin' distribution to test - for integration tests testing the final distributions
         */
        @Internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 01 22:53:59 UTC 2022
    - 8K bytes
    - Viewed (0)
  6. 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)
  7. maven-model-builder/src/main/java/org/apache/maven/model/path/ModelUrlNormalizer.java

     * model inheritance.
     *
     */
    public interface ModelUrlNormalizer {
    
        /**
         * Normalizes the well-known URLs of the specified model.
         *
         * @param model The model whose URLs should be normalized, may be {@code null}.
         * @param request The model building request that holds further settings, must not be {@code null}.
         */
        void normalize(Model model, ModelBuildingRequest request);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. 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)
  9. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/jvm/toolchain/internal/operations/JavaToolchainUsageProgressDetails.java

             */
            String getJavaVersion();
    
            /**
             * Returns the display name of the toolchain vendor such as {@code Eclipse Temurin}.
             * <p>
             * The value could be normalized for uniformity, and does not necessarily correspond to a system property value.
             */
            String getJavaVendor();
    
            /**
             * Returns Java runtime name such as {@code OpenJDK Runtime Environment}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. src/math/big/ftoa.go

    //	'b'	-ddddddp±dd, decimal mantissa, decimal power of two exponent (non-standard)
    //
    // For the power-of-two exponent formats, the mantissa is printed in normalized form:
    //
    //	'x'	hexadecimal mantissa in [1, 2), or 0
    //	'p'	hexadecimal mantissa in [½, 1), or 0
    //	'b'	decimal integer mantissa using x.Prec() bits, or 0
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 13.5K bytes
    - Viewed (0)
Back to top