Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 56 of 56 for getParentFile (0.07 sec)

  1. compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            request.setExecutionListener(determineExecutionListener());
    
            if ((request.getPom() != null) && (request.getPom().getParentFile() != null)) {
                request.setBaseDirectory(request.getPom().getParentFile());
            }
    
            request.setResumeFrom(commandLine.getOptionValue(CLIManager.RESUME_FROM));
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Oct 27 13:24:03 UTC 2025
    - 78.1K bytes
    - Viewed (0)
  2. 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: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 08:30:43 UTC 2025
    - 36.6K bytes
    - Viewed (0)
  3. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

            context.setUserProperties(userProperties);
            context.setProjectDirectory(
                    (request.getPomFile() != null) ? request.getPomFile().getParentFile() : null);
    
            return context;
        }
    
        private void configureResolver(ModelResolver modelResolver, Model model, DefaultModelProblemCollector problems) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sun Mar 30 23:08:08 UTC 2025
    - 55.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/io/Files.java

       * @since 4.0
       */
      public static void createParentDirs(File file) throws IOException {
        checkNotNull(file);
        File parent = file.getCanonicalFile().getParentFile();
        if (parent == null) {
          /*
           * The given directory is a filesystem root. All zero of its ancestors exist. This doesn't
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Sep 25 20:24:13 UTC 2025
    - 32.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/io/Files.java

       * @since 4.0
       */
      public static void createParentDirs(File file) throws IOException {
        checkNotNull(file);
        File parent = file.getCanonicalFile().getParentFile();
        if (parent == null) {
          /*
           * The given directory is a filesystem root. All zero of its ancestors exist. This doesn't
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Sep 25 20:24:13 UTC 2025
    - 32.8K bytes
    - Viewed (0)
  6. impl/maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            InternalSession iSession = InternalSession.from(repoSession);
            InternalMavenSession mSession = InternalMavenSession.from(iSession);
            Path root = pomFile.getParentFile().toPath();
            while (root != null
                    && !Files.isDirectory(root.resolve(".mvn"))
                    && Files.isRegularFile(root.resolve("../pom.xml"))) {
                root = root.getParent();
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 94.8K bytes
    - Viewed (0)
Back to top