Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 56 for makedirs (0.07 sec)

  1. RELEASE.md

    answered questions, and were part of inspiring discussions.
    
    # Release 0.7.1
    
    ## Bug Fixes and Other Changes
    
    *   Added gfile.Open and gfile.Copy, used by input_data.py.
    *   Fixed Saver bug when MakeDirs tried to create empty directory.
    *   GPU Pip wheels are built with cuda 7.5 and cudnn-v4, making them required
        for the binary releases. Lower versions of cuda/cudnn can be supported by
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Tue Oct 22 14:33:53 UTC 2024
    - 735.3K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/FileOperationsTest.java

            try ( SmbFile r = createTestDirectory();
                  SmbResource e = new SmbFile(r, "foo/bar/test/") ) {
                try {
                    e.mkdirs();
                }
                finally {
                    r.delete();
                }
            }
        }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:17:59 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/design/AdminDesignAction.java

                return null;
            }
    
            final File parentFile = uploadFile.getParentFile();
            if (!parentFile.exists() && !parentFile.mkdirs()) {
                logger.warn("Could not create {}", parentFile.getAbsolutePath());
            }
    
            try {
                write(uploadFile.getAbsolutePath(), form.designFile.getFileData());
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/job/CrawlJob.java

            if (fessConfig.isUseOwnTmpDir() && StringUtil.isNotBlank(tmpDir)) {
                ownTmpDir = new File(tmpDir, "fessTmpDir_" + sessionId);
                if (ownTmpDir.mkdirs()) {
                    cmdList.add("-Djava.io.tmpdir=" + ownTmpDir.getAbsolutePath());
                    cmdList.add("-Dpdfbox.fontcache=" + ownTmpDir.getAbsolutePath());
                } else {
                    ownTmpDir = null;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sun Jun 23 04:13:47 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

            systemHelper.addDesignJspFileName("xxx", "yyy.jsp");
            final File designJspFile = systemHelper.getDesignJspFile("/WEB-INF/view/yyy.jsp");
            designJspFile.getParentFile().mkdirs();
            FileUtil.writeBytes(designJspFile.getAbsolutePath(), "ok".getBytes());
            fileList = systemHelper.refreshDesignJspFiles();
            assertEquals(1, fileList.size());
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbFile.java

                this.attrExpiration = this.sizeExpiration = 0;
            }
            catch ( CIFSException e ) {
                throw SmbException.wrap(e);
            }
        }
    
    
        @Override
        public void mkdirs () throws SmbException {
            String p = this.fileLocator.getParent();
            try ( SmbTreeHandle th = ensureTreeConnected();
                  SmbFile parent = new SmbFile(p, getContext()) ) {
                try {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

                    baseDir = new File(varPath, THUMBNAILS_DIR_NAME);
                } else {
                    baseDir = ResourceUtil.getThumbnailPath().toFile();
                }
            }
            if (baseDir.mkdirs()) {
                logger.info("Created: {}", baseDir.getAbsolutePath());
            }
            if (!baseDir.isDirectory()) {
                throw new FessSystemException("Not found: " + baseDir.getAbsolutePath());
            }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  8. impl/maven-core/src/main/java/org/apache/maven/DefaultMaven.java

            File localRepoDir = request.getLocalRepositoryPath();
    
            logger.debug("Using local repository at {}", localRepoDir);
    
            localRepoDir.mkdirs();
    
            if (!localRepoDir.isDirectory()) {
                throw new IOException("Could not create local repository at " + localRepoDir);
            }
        }
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 27.5K bytes
    - Viewed (1)
  9. src/main/java/org/codelibs/fess/helper/SystemHelper.java

                            final File jspFile = getDesignJspFile("/WEB-INF/view" + key + "/" + e.getValue());
                            if (!jspFile.exists()) {
                                jspFile.getParentFile().mkdirs();
                                final File baseJspFile = getDesignJspFile("/WEB-INF/view/" + e.getValue());
                                try {
                                    final Path jspPath = jspFile.toPath();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Oct 17 12:10:08 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  10. src/main/java/jcifs/SmbResource.java

         * because workgroups, servers, and shares cannot be dynamically created
         * (although in the future it may be possible to create shares).
         *
         * @throws CIFSException
         */
        void mkdirs () throws CIFSException;
    
    
        /**
         * Creates a directory with the path specified by this
         * <code>SmbResource</code>. For this method to be successful, the target
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Dec 20 14:09:34 UTC 2020
    - 26K bytes
    - Viewed (1)
Back to top