Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 136 for NORMALIZED (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/UrlNormalizingPostProcessor.java

    import java.util.Set;
    
    import org.apache.maven.model.path.UrlNormalizer;
    import org.codehaus.plexus.interpolation.InterpolationPostProcessor;
    
    /**
     * Ensures that expressions referring to URLs evaluate to normalized URLs.
     *
     */
    class UrlNormalizingPostProcessor implements InterpolationPostProcessor {
    
        private static final Set<String> URL_EXPRESSIONS;
    
        static {
            Set<String> expressions = new HashSet<>();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/LineEndingNormalizingFileSystemLocationSnapshotHasher.java

     * normalizes line endings for text files.  If a file is detected to be binary, we fall back to the existing non-normalized hash.
     *
     * See {@link LineEndingNormalizingInputStreamHasher}.
     */
    public class LineEndingNormalizingFileSystemLocationSnapshotHasher implements FileSystemLocationSnapshotHasher {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. 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)
  8. src/net/netip/slow_test.go

    		}
    		return parseIPv4Slow(s)
    	}
    
    	normal, err := normalizeIPv6Slow(s)
    	if err != nil {
    		return Addr{}, err
    	}
    
    	// At this point, we've normalized the address back into 8 hex
    	// fields of 16 bits each. Parse that.
    	fs = strings.Split(normal, ":")
    	if len(fs) != 8 {
    		return Addr{}, fmt.Errorf("netaddr.ParseIP(%q): wrong size address", s)
    	}
    	var ret [16]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. pkg/kubelet/clustertrustbundle/clustertrustbundle_manager.go

    		})
    	} else {
    		m.normalizationCache.RemoveAll(func(key any) bool {
    			return key.(cacheKeyType).ctbName == ctb.ObjectMeta.Name
    		})
    	}
    }
    
    // GetTrustAnchorsByName returns normalized and deduplicated trust anchors from
    // a single named ClusterTrustBundle.
    func (m *InformerManager) GetTrustAnchorsByName(name string, allowMissing bool) ([]byte, error) {
    	if !m.ctbInformer.HasSynced() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/properties/internal/EnvironmentUtils.java

         * env.PATH}. Unlike native environment variables, properties are always case-sensitive. For the sake of
         * determinism, the environment variable names will be normalized to upper case on platforms with case-insensitive
         * variable lookup.
         *
         * @param props The properties to add the environment variables to, may be {@code null}.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 06:01:36 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top