Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for expectMkdir (0.14 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/sftp/SFTPServer.groovy

        }
    
        void expectStat(String path) {
            expectations << new SftpExpectOnePath(SftpConstants.SSH_FXP_STAT, "STAT", path)
        }
    
        void expectMkdir(String path) {
            expectations << new SftpExpectOnePath(SftpConstants.SSH_FXP_MKDIR, "MKDIR", path)
        }
    
        void expectOpendir(String path) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/SingleIncludePatternFileTreeSpec.groovy

            def expectedDir = tempDir.file("dir1")
            def expectedFile = tempDir.file("dir1/file2")
    
            when:
            fileTree.visit(visitor)
    
            then:
            1 * visitor.visitDir(_) >> { FileVisitDetails details ->
                with(details) {
                    file == expectedDir
                    directory
                    size == expectedDir.size()
                    name == expectedDir.name
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top