Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for old (0.89 sec)

  1. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/HierarchicalFileWatcherUpdater.java

     * - When updating the watches, we watch watchable hierarchies registered for this build or old watched directories from previous builds instead of
     *   directories inside them.
     * - At the end of the build
     *   - stop watching the watchable directories with nothing to watch inside
     *   - remember the currently watched directories as old watched directories for the next build
     *   - remove everything that isn't watched from the virtual file system.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/JarCompat.java

        }
    
        public static JarCompat open(File jarFile) throws IOException {
            if (JAVA_9_COMPATIBLE) {
                return new MultiReleaseSupportingJar(jarFile);
            }
            // Running on Java 8, fall back to the old ways.
            return new LegacyJar(jarFile);
        }
    
    
        private static class LegacyJar extends JarCompat {
            public LegacyJar(File jarFile) throws IOException {
                super(new JarFile(jarFile));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileOrUriNotationConverter.java

                            return;
                        } catch (IllegalArgumentException ignored) {
                            // Bad file URI, use old logic
                        }
                    } catch (URISyntaxException ignored) {
                        // Unparsable, use old logic
                    }
                    // Fallback if relative or unparsable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:38 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. 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;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/LimitedDescription.java

     * limitations under the License.
     */
    
    package org.gradle.util.internal;
    
    import com.google.common.collect.Lists;
    
    import java.util.LinkedList;
    import java.util.List;
    
    /**
     * Discards old entries when current count is over the limit.
     *
     * @deprecated Used only by a deprecated public class GFileUtils. Prefer Guava's EvictionQueue in the new code.
     */
    @Deprecated
    public class LimitedDescription {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/upgrades/UpgradedProperties.java

         * Here we automatically accept the following cases:
         * - A setter `setX` of an upgraded property is removed
         * - A boolean `isX` of an upgraded property is removed
         * - A new getter `getX` is added, where the old getter is a boolean getter `isX` of an upgraded property
         * - A return type is changed for a getter `getX` of an upgraded property
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/xml/XmlFactories.java

            }
        }
    
        private static String errorMessageFor(String factory) {
            return "Unable to create secure " + factory + ", please make sure that your build does not depend on an old XML parser.";
        }
    
        private XmlFactories() {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 25 23:24:49 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/locklistener/FileLockPacketPayload.java

            try {
                int ordinal = dataInput.readByte();
                if (ordinal < TYPES.size()) {
                    return TYPES.get(ordinal);
                }
            } catch (EOFException ignore) {
                // old versions don't send a type
            }
            return UNKNOWN;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/extensibility/ConventionAwareHelper.java

                // When there's a convention-supporting object, use its `.convention()` method instead
                // This is something we added to support properties migrated in the future from
                // Java bean to Property where old code uses ConventionMapping to set conventions.
                Class<? extends IConventionAware> sourceType = _source.getClass();
                Method getter = JavaPropertyReflectionUtil.findGetterMethod(sourceType, propertyName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 09:53:33 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/work/WorkerLeaseService.java

        /**
         * Runs the given {@link Factory} while the specified locks are released and the given new lock is acquired. On completion,
         * the new lock is released and the old locks reacquired.
         * If a lock cannot be immediately (re)acquired, the current worker lease will be released and the method will block until the locks are (re)acquired.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top