Search Results
OK to copy?
Examples 1 through 10 of
52 (0.0020 seconds)
Class:
org.apache.axis.wsdl.toJava.JavaUndeployWriter
©,
Rating:
0% of 0,
C1
Class: org.apache.tools.ant.taskdefs.Mkdir ©, Rating: 0% of 0, C1
Class: org.apache.tools.ant.taskdefs.Mkdir ©, Rating: 0% of 0, C1
Class: org.apache.tools.ant.taskdefs.Mkdir ©, Rating: 0% of 0, C1
Class: org.apache.batik.apps.svgbrowser.WindowsAltFileSystemView ©, Rating: 0% of 0, C2
Class: org.apache.axis.wsdl.toJava.Namespaces ©, Rating: 0% of 0, C1
Class: org.apache.axis.server.DefaultAxisServerFactory ©, Rating: 0% of 0, C2
Class: org.springframework.web.multipart.cos.CosMultipartResolver ©, Rating: 0% of 0, C1
Class: org.apache.axis.wsdl.toJava.JavaWriter ©, Rating: 0% of 0, C1
Class: org.springframework.web.multipart.commons.CommonsMultipartResolver ©, Rating: 0% of 0, C1
161 File file = new File(filename);
162 File parent = new File(file.getParent());
163 parent.mkdirs();
164 FileOutputStream out = new FileOutputStream(file);
165 OutputStreamWriter writer = new OutputStreamWriter(out, "UTF-8");
Class: org.apache.tools.ant.taskdefs.Mkdir ©, Rating: 0% of 0, C1
Class: org.apache.tools.ant.taskdefs.Mkdir ©, Rating: 0% of 0, C1
83 try {
84 Thread.sleep(MKDIR_RETRY_SLEEP_MILLIS);
85 return f.mkdirs();
86 } catch (InterruptedException ex) {
87 return f.mkdirs();
Class: org.apache.tools.ant.taskdefs.Mkdir ©, Rating: 0% of 0, C1
80 */
81 private boolean mkdirs(File f) {
82 if (!f.mkdirs()) {
83 try {
84 Thread.sleep(MKDIR_RETRY_SLEEP_MILLIS);
Class: org.apache.batik.apps.svgbrowser.WindowsAltFileSystemView ©, Rating: 0% of 0, C2
Class: org.apache.axis.wsdl.toJava.Namespaces ©, Rating: 0% of 0, C1
198 String pkgDirString = toDir(pkg);
199 File packageDir = new File(pkgDirString);
200 packageDir.mkdirs();
201 } // mkdir
202
Class: org.apache.axis.server.DefaultAxisServerFactory ©, Rating: 0% of 0, C2
126 File attdirFile = new File(attachmentsdir);
127 if (!attdirFile.isDirectory()) {
128 attdirFile.mkdirs();
129 }
130 }
Class: org.springframework.web.multipart.cos.CosMultipartResolver ©, Rating: 0% of 0, C1
131 */
132 public void setUploadTempDir(Resource uploadTempDir) throws IOException {
133 if (!uploadTempDir.exists() && !uploadTempDir.getFile().mkdirs()) {
134 throw new IllegalArgumentException("Given uploadTempDir [" + uploadTempDir + "] could not be created");
135 }
Class: org.apache.axis.wsdl.toJava.JavaWriter ©, Rating: 0% of 0, C1
191 File file = new File(filename);
192 File parent = new File(file.getParent());
193 parent.mkdirs();
194 return new PrintWriter(new FileWriter(file));
195 } // getPrintWriter
Class: org.springframework.web.multipart.commons.CommonsMultipartResolver ©, Rating: 0% of 0, C1
162 */
163 public void setUploadTempDir(Resource uploadTempDir) throws IOException {
164 if (!uploadTempDir.exists() && !uploadTempDir.getFile().mkdirs()) {
165 throw new IllegalArgumentException("Given uploadTempDir [" + uploadTempDir + "] could not be created");
166 }