Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getDescendantSnapshotOfSelectedChild (0.58 sec)

  1. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/DirectoryNodeTest.groovy

            then:
            foundSnapshot == grandChild
            interaction {
                getDescendantSnapshotOfSelectedChild(grandChild)
                noMoreInteractions()
            }
    
            where:
            vfsSpec << onlyDirectChildren(CHILD_IS_PREFIX)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/AbstractIncompleteFileSystemNodeTest.groovy

            when:
            def resultRoot = initialRoot.getSnapshot(searchedPath, CASE_SENSITIVE)
            then:
            resultRoot.get() == descendantSnapshot
            interaction {
                getDescendantSnapshotOfSelectedChild(descendantSnapshot)
                noMoreInteractions()
            }
    
            where:
            vfsSpec << CHILD_IS_PREFIX
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/AbstractFileSystemNodeWithChildrenTest.groovy

        }
    
        String getSelectedChildPathFromCommonPrefix() {
            return selectedChildPath.substring(commonPrefix.length() + 1)
        }
    
        def getDescendantSnapshotOfSelectedChild(@Nullable MetadataSnapshot foundSnapshot) {
            1 * selectedChild.getSnapshot(searchedPath.pathFromChild(selectedChildPath), CASE_SENSITIVE) >> Optional.ofNullable(foundSnapshot)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 9.3K bytes
    - Viewed (0)
Back to top