Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getAbsolutePath (0.17 sec)

  1. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

                    File file = new File(path);
                    if (file.isAbsolute()) {
                        path = file.getAbsolutePath();
                    } else if (".".equals(path)) {
                        path = getBasedir().getAbsolutePath();
                    } else {
                        path = new File(getBasedir(), path).getAbsolutePath();
                    }
    
                    if (!paths.contains(path)) {
                        paths.add(path);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 56.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                        if (moduleDir.isDirectory()) {
                            settingsBuilder.put("path.modules", moduleDir.getAbsolutePath());
                        } else {
                            settingsBuilder.put("path.modules", new File(System.getProperty("user.dir"), "modules").getAbsolutePath());
                        }
                        final File pluginDir = new File(esDir, "plugins");
    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)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                                d);
                    } else if (!sysFile.isFile()) {
                        String msg = "refers to a non-existing file " + sysFile.getAbsolutePath();
                        systemPath = systemPath.replace('/', File.separatorChar).replace('\\', File.separatorChar);
                        String jdkHome = request.getSystemProperties().get("java.home") + File.separator + "..";
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 13:13:07 GMT 2024
    - 73.1K bytes
    - Viewed (0)
Back to top