Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for hierarchies (0.54 sec)

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

     *     This helps decide whether or not something is being watched in a quick way.</dd>
     *
     *     <dt>watched hierarchies</dt>
     *     <dd>The list of file system hierarchies we are currently watching.
     *     When hierarchies are nested inside each other, this includes only the outermost hierarchies.
     *     On OSs with hierarchical file system events (currently Windows and macOS) this is what we tell the
     *     operating system to watch.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/HierarchicalFileWatcherUpdater.java

    import java.util.Collection;
    import java.util.List;
    
    /**
     * Updater for hierarchical file watchers.
     *
     * For hierarchical watchers, we can use the registered watchable hierarchies as watched directories.
     * Build root directories are always watchable hierarchies.
     * Watching the build root directories is better since they are less likely to be deleted and
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. build-logic/packaging/src/main/kotlin/gradlebuild/shade/extension/ShadedJarExtension.kt

        /**
         * Retain only those classes in the keep package hierarchies, plus any classes that are reachable from these classes.
         */
        abstract val keepPackages: SetProperty<String>
    
        /**
         * Do not rename classes in the unshaded package hierarchies. Always includes 'java'.
         */
        abstract val unshadedPackages: SetProperty<String>
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  4. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherRegistry.java

            MODIFIED,
            REMOVED,
            INVALIDATED,
            OVERFLOW
        }
    
        /**
         * Registers a watchable hierarchy.
         *
         * The watcher registry will only watch for changes in watchable hierarchies.
         *
         * @throws WatchingNotSupportedException when the native watchers can't be updated.
         */
        void registerWatchableHierarchy(File watchableHierarchy, SnapshotHierarchy root);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/execution/ProjectExecutionServices.java

        }
    
        @Provides
        MissingTaskDependencyDetector createMissingTaskDependencyDetector(ExecutionNodeAccessHierarchies hierarchies) {
            return new MissingTaskDependencyDetector(hierarchies.getOutputHierarchy(), hierarchies.createInputHierarchy());
        }
    
        @Provides
        TaskExecuter createTaskExecuter(
            AsyncWorkTracker asyncWorkTracker,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/ClasspathElementTransformFactory.java

         *
         * @param file the jar/directory to transform
         * @param classTransform the transform that will be applied to every class
         * @param typeRegistry the registry of type hierarchies
         * @return the transformation that will transform the file upon request.
         */
        ClasspathElementTransform createTransformer(File file, ClassTransform classTransform, InstrumentationTypeRegistry typeRegistry);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:14:01 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. platforms/software/resources/src/main/java/org/gradle/internal/resource/Resource.java

    /**
     * Represents some resource that may have content.
     *
     * <p>This type is currently pretty much empty. It's here as a place to extract and reuse stuff from the various subtypes, which all stared off as separate hierarchies.
     */
    public interface Resource extends Describable {
        /**
         * Returns a display name for this resource. This can be used in log and error messages.
         *
         * @return the display name
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherProbeRegistry.java

     * Once the event arrives, {@link #triggerWatchProbe(String)} is called with the path,
     * and the probe becomes triggered (or proven).
     *
     * The {@link #unprovenHierarchies()} stream returns any hierarchies that were armed, but never received
     * a file system event.
     * These locations cannot be trusted to receive file system events in a timely manner.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:38:01 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/registry/impl/NonHierarchicalFileWatcherUpdaterTest.groovy

        }
    
        @Override
        int getIfNonHierarchical() { 1 }
    
        def "only watches directories in hierarchies to watch"() {
            def watchableHierarchies = ["first", "second", "third"].collect { file(it).createDir() }
            def fileInWatchableHierarchies = file("first/inside/root/dir/file.txt")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 13:24:54 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/DirectorySnapshotterStatistics.java

                        return failedFileCount;
                    }
    
                    @Override
                    public String toString() {
                        return MessageFormat.format("Snapshot {0,number,integer} directory hierarchies (visited {1,number,integer} directories, {2,number,integer} files and {3,number,integer} failed files)",
                            hierarchyCount, directoryCount, fileCount, failedFileCount);
                    }
                };
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top