Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 180 for NORMALIZED (0.13 sec)

  1. 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)
  2. subprojects/core-api/src/main/java/org/gradle/work/FileChange.java

         *     For {@link ChangeType#REMOVED} the type of the file which was removed is reported.
         * </p>
         */
        FileType getFileType();
    
        /**
         * The normalized path of the file, as specified by the path normalization strategy.
         *
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 06 13:15:59 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  3. 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)
  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. subprojects/core-api/src/main/java/org/gradle/work/NormalizeLineEndings.java

    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Attached to an input property to specify that line endings should be normalized
     * when snapshotting inputs. Two files with the same contents but different line endings
     * will be considered equivalent.
     *
     * Line ending normalization is only supported with ASCII encoding and its supersets (i.e.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 13 17:35:59 UTC 2022
    - 2K bytes
    - Viewed (0)
  6. 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)
  7. staging/src/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/construct.go

    func defaultFillFuncs() map[reflect.Type]FillFunc {
    	funcs := map[reflect.Type]FillFunc{}
    	funcs[reflect.TypeOf(&runtime.RawExtension{})] = func(s string, i int, obj interface{}) {
    		// generate a raw object in normalized form
    		// TODO: test non-normalized round-tripping... YAMLToJSON normalizes and makes exact comparisons fail
    		obj.(*runtime.RawExtension).Raw = []byte(`{"apiVersion":"example.com/v1","kind":"CustomType","spec":{"replicas":1},"status":{"available":1}}`)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 19:12:59 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  8. 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)
  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. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/publication/DefaultIvyPublication.java

            // Preserve identity of artifacts
            Set<IvyArtifact> main = linkedHashSetOf(
                normalized(
                    mainArtifacts.stream(),
                    this::isValidArtifact
                )
            );
            LinkedHashSet<IvyArtifact> all = new LinkedHashSet<>(main);
            normalized(
                Streams.concat(metadataArtifacts.stream(), derivedArtifacts.stream()),
                this::isPublishableArtifact
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 20.6K bytes
    - Viewed (0)
Back to top