Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for snapshotRegularFile (0.58 sec)

  1. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/registry/impl/AbstractFileWatcherUpdaterTest.groovy

            when:
            registerWatchableHierarchies([watchableHierarchy])
            then:
            0 * _
    
            when:
            addSnapshot(snapshotRegularFile(fileOutsideOfWatchableHierarchy))
            addSnapshot(snapshotRegularFile(fileInDirectoryIgnoredForWatching))
            then:
            0 * _
            vfsHasSnapshotsAt(fileOutsideOfWatchableHierarchy)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  2. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/registry/impl/HierarchicalFileWatcherUpdaterTest.groovy

            when:
            registerWatchableHierarchies([watchableHierarchy])
            addSnapshot(snapshotRegularFile(watchableContent))
            then:
            vfsHasSnapshotsAt(watchableContent)
            1 * watcher.startWatching({ equalIgnoringOrder(it, [watchableHierarchy]) })
            0 * _
    
            when:
            addSnapshot(snapshotRegularFile(unwatchableContent))
            then:
            vfsHasSnapshotsAt(unwatchableContent)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 13:24:54 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top