Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for makesDir (0.12 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/file/DefaultFileOperationsTest.groovy

            fileToBeDeleted.touch()
    
            expect:
            fileOperations.delete('file') == true
            fileToBeDeleted.isFile() == false
        }
    
        def makesDir() {
            TestFile dirToBeCreated = tmpDir.file("parentDir", "dir")
            resolver.resolve('parentDir/dir') >> dirToBeCreated
    
            when:
            File actualDir = fileOperations.mkdir('parentDir/dir')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. pkg/volume/util/hostutil/hostutil_unsupported.go

    }
    
    // MakeFile always returns an error on unsupported platforms
    func (hu *HostUtil) MakeFile(pathname string) error {
    	return errUnsupported
    }
    
    // MakeDir always returns an error on unsupported platforms
    func (hu *HostUtil) MakeDir(pathname string) error {
    	return errUnsupported
    }
    
    // PathExists always returns an error on unsupported platforms
    func (hu *HostUtil) PathExists(pathname string) (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 10:17:38 UTC 2022
    - 3.3K bytes
    - Viewed (0)
Back to top