Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,864 for versions (2.08 sec)

  1. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/VersionStrategy.java

    public enum VersionStrategy {
        /**
         * A separate cache instance for each Gradle version. This is the default.
         */
        CachePerVersion,
        /**
         * A single cache instance shared by all Gradle versions. It is the caller's responsibility to make sure that this is shared only with
         * those versions of Gradle that are compatible with the cache implementation and contents.
         */
        SharedCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classanalysis/AsmConstants.java

        /**
         * The minimal version of Java for which ASM understands the bytecodes.
         */
        public static final int MIN_SUPPORTED_JAVA_VERSION = 1;
    
        /**
         * The latest version of Java for which ASM understands the bytecodes.
         *
         * Updated for ASM 9.7.
         *
         * @see <a href="https://asm.ow2.io/versions.html">ASM release notes</a>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 17:43:28 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/id/UniqueId.java

    import java.util.regex.Pattern;
    
    /**
     * A more compact / aesthetically pleasing representation of effectively a UUID.
     * <p>
     * Values of this type are serialized and deserialized (as strings) across Gradle versions.
     * The string representation cannot change.
     *
     * @since 4.0
     */
    public final class UniqueId {
    
        private static final BaseEncoding ENCODING = BaseEncoding.base32().lowerCase().omitPadding();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-configuration/src/main/java/org/gradle/internal/buildconfiguration/tasks/UpdateDaemonJvmModifier.java

        private static void validateToolchainVersion(JavaVersion version) {
            // TODO: It would be nice to enforce this as part of task configuration instead of at runtime.
            // TODO: Need to consider how to handle future versions of Java that are not yet known. This currently allows any version of Java above the minimum.
            JavaVersion minimumSupportedVersion = JavaVersion.VERSION_1_8;
            if (version.compareTo(minimumSupportedVersion) < 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 21:41:57 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/locklistener/FileLockPacketPayload.java

            DataInputStream dataInput = new DataInputStream(new ByteArrayInputStream(bytes));
            byte version = dataInput.readByte();
            if (version != PROTOCOL_VERSION) {
                throw new IllegalArgumentException(String.format("Unexpected protocol version %s received in lock contention notification message", version));
            }
            long lockId = dataInput.readLong();
            FileLockPacketType type = readType(dataInput, length);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/jvm/JpmsConfiguration.java

    import java.util.Collections;
    import java.util.List;
    
    /**
     * These JVM arguments should be passed to any Gradle process that will be running on Java 9+
     * Gradle accesses those packages reflectively. On Java versions 9 to 15, the users will get
     * a warning they can do nothing about. On Java 16+, strong encapsulation of JDK internals is
     * enforced and not having the explicit permissions for reflective accesses will result in runtime exceptions.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/TextUtil.java

        }
    
        /**
         * Checks if a String is whitespace, empty ("") or null.
         * <p>
         * This function was copied from Apache Commons-Lang to restore TAPI compatibility
         * with Java 6 on old Gradle versions because StringUtils require SQLException which
         * is absent from Java 6.
         */
        public static boolean isBlank(String str) {
            int strLen;
            if (str == null || (strLen = str.length()) == 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/impl/VersionHierarchy.java

        }
    
        private VersionHierarchy(ChildMap<VersionHierarchy> children, long version, long maxVersionInHierarchy) {
            this.children = children;
            this.version = version;
            this.maxVersionInHierarchy = maxVersionInHierarchy;
        }
    
        /**
         * Queries the version for the hierarchy at relative path.
         *
         * The version for the hierarchy is the maximum version of all the locations in the hierarchy.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/CacheVersion.java

    public final class CacheVersion implements Comparable<CacheVersion> {
    
        public static final String COMPONENT_SEPARATOR = ".";
    
        public static CacheVersion parse(String version) {
            String[] parts = StringUtils.split(version, COMPONENT_SEPARATOR);
            int[] components = new int[parts.length];
            for (int i = 0; i < parts.length; i++) {
                components[i] = Integer.parseInt(parts[i]);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/filelock/Version1LockStateSerializer.java

    /*
     * Copyright 2013 the original author or authors.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *      http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top