Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 51 for hierarchies (0.39 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/SnapshotHierarchy.java

            SnapshotDiffListener NOOP = (removedSnapshots, addedSnapshots) -> {};
    
            /**
             * Called after the update to {@link SnapshotHierarchy} finished.
             *
             * Only the roots of added/removed hierarchies are reported.
             */
            void changed(Collection<FileSystemLocationSnapshot> removedSnapshots, Collection<FileSystemLocationSnapshot> addedSnapshots);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/ProgressOperationsTest.groovy

            when:
            ops.start("resolve", null, new OperationIdentifier(1), null).message == "resolve"
    
            then:
            thrown(IllegalStateException)
        }
    
        def "starts operations from different hierarchies"() {
            when:
            def op1 = ops.start("compile", null, new OperationIdentifier(1), null)
            def op2 = ops.start("resolve", null, new OperationIdentifier(2), null)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/LoggingFileSystemWatchingIntegrationTest.groovy

            result.output =~ /VFS> > Stat: Executed stat\(\) x 0. getUnixMode\(\) x 0/
            result.output =~ /VFS> > FileHasher: Hashed 0 files \(0 bytes\)/
            result.output =~ /VFS> > DirectorySnapshotter: Snapshot 0 directory hierarchies \(visited 0 directories, 0 files and 0 failed files\)/
            result.output =~ /Received \d+ file system events during the current build while watching \d+ locations/
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/BuildLifecycleAwareVirtualFileSystem.java

        /**
         * Register a watchable hierarchy.
         *
         * Only locations within watchable hierarchies will be watched for changes.
         * This method is first called for the root directory of the root project.
         * It is also called for the root directories of included builds, and all other nested builds.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/impl/FileSystemSnapshotSerializerTest.groovy

            when:
            def out = serialize(snapshots, serializer)
    
            then:
            assertEqualSnapshots(out, snapshots)
        }
    
        def "reads and writes directory snapshot hierarchies"() {
            def snapshots = directory("/home/lptr/dev", [
                regularFile("/home/lptr/dev/one.txt"),
                regularFile("/home/lptr/dev/two.txt"),
                directory("/home/lptr/dev/empty", []),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. pkg/test/framework/features/README.md

    ## Adding New Feature Constants
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 19:13:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top