Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isDirectory (0.16 sec)

  1. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                    config.disableESLogger();
                    runner.onBuild((number, settingsBuilder) -> {
                        final File moduleDir = new File(esDir, "modules");
                        if (moduleDir.isDirectory()) {
                            settingsBuilder.put("path.modules", moduleDir.getAbsolutePath());
                        } else {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 84.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

         */
        public String getDfsPath () throws SmbException {
            try {
                String path = this.treeConnection.ensureDFSResolved(this.fileLocator).getDfsPath();
                if ( path != null && isDirectory() ) {
                    path += '/';
                }
                return path;
            }
            catch ( CIFSException e ) {
                throw SmbException.wrap(e);
            }
        }
    
    
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

                Properties userProperties,
                String... profileIds)
                throws Exception {
            File pomFile = new File(testDirectory, pomPath);
            if (pomFile.isDirectory()) {
                pomFile = new File(pomFile, "pom.xml");
            }
    
            ProjectBuildingRequest config = new DefaultProjectBuildingRequest();
    
            String localRepoUrl =
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
Back to top