Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for getDirMode (0.04 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/EmptyDirTask.java

         * @param dir The path of the directory to create. Takes a String and coerces it to a file.
         */
        public void setDir(String dir) {
            this.dir = getProject().file(dir);
        }
    
        @Input
        public int getDirMode() {
            return dirMode;
        }
    
        /**
         * @param dirMode The permissions to apply to the new directory
         */
        public void setDirMode(int dirMode) {
            this.dirMode = dirMode;
        }
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 1.7K bytes
    - Click Count (0)
Back to Top