Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,795 for directory1 (0.32 sec)

  1. maven-model-builder/src/test/java/org/apache/maven/model/inheritance/DefaultInheritanceAssemblerTest.java

         * Check most classical urls inheritance: directory structure where parent POM in parent directory
         * and child directory == artifactId
         * @throws IOException Model read problem
         */
        @Test
        void testUrls() throws Exception {
            testInheritance("urls");
        }
    
        /**
         * Flat directory structure: parent & child POMs in sibling directories, child directory == artifactId.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 13 11:39:50 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/path/PathTranslator.java

    import java.io.File;
    import java.nio.file.Path;
    
    /**
     * Resolves relative paths against a specific base directory.
     *
     */
    public interface PathTranslator {
    
        /**
         * Resolves the specified path against the given base directory. The resolved path will be absolute and uses the
         * platform-specific file separator if a base directory is given. Otherwise, the input path will be returned
         * unaltered.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/EclipseSourceDirectory.java

    import javax.annotation.Nullable;
    import java.util.List;
    
    /**
     * A source directory in an Eclipse project.
     */
    public interface EclipseSourceDirectory extends SourceDirectory, EclipseClasspathEntry {
        /**
         * Returns the relative path for this source directory.
         *
         * @return The path for this source directory. Does not return null.
         */
        String getPath();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/cache/internal/BuildScopeCacheDir.java

                // No build definition, use a cache dir in the user home directory to avoid generating garbage in the root directory
                cacheDir = new File(userHomeDirProvider.getGradleUserHomeDirectory(), UNDEFINED_BUILD + Hashing.hashString(buildLayout.getRootDirectory().getAbsolutePath()));
            } else {
                // Use the .gradle directory in the build root directory
                cacheDir = new File(buildLayout.getRootDirectory(), ".gradle");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 18:02:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. platforms/software/reporting/src/main/java/org/gradle/api/reporting/ReportingExtension.java

        }
    
        /**
         * The base directory for all reports
         * <p>
         * This value can be changed, so any files derived from this should be calculated on demand.
         *
         * @return The base directory for all reports
         */
        public File getBaseDir() {
            return baseDirectory.getAsFile().get();
        }
    
        /**
         * Sets the base directory to use for all reports
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/idea/DefaultIdeaSourceDirectory.java

        private File directory;
    
        private boolean generated;
    
        public File getDirectory() {
            return directory;
        }
    
        public boolean isGenerated() {
            return generated;
        }
    
        public DefaultIdeaSourceDirectory setDirectory(File directory) {
            this.directory = directory;
            return this;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/gradle_directories.adoc

    [[project_root]]
    == Project Root directory
    
    The project root directory contains all source files from your project.
    
    It also contains files and directories Gradle generates, such as `.gradle` and `build`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/internal/cache/CacheDirUtil.java

    /**
     * Utility class for dealing with cache directories.
     */
    class CacheDirUtil {
        private static final Logger LOGGER = LoggerFactory.getLogger(CacheDirUtil.class);
    
        /**
         * Mark a directory as a cache directory. This typically involves setting attributes or creating files in it.
         */
        public static void tryMarkCacheDirectoryByTag(Path dir) {
            if (!Files.isDirectory(dir)) {
                return;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 25 20:35:25 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/main/java/org/gradle/api/plugins/BasePluginConvention.java

        /**
         * Returns the directory to generate TAR and ZIP archives into.
         *
         * @return The directory. Never returns null.
         *
         * @since 6.0
         */
        public abstract DirectoryProperty getDistsDirectory();
    
        /**
         * Returns the directory to generate JAR and WAR archives into.
         *
         * @return The directory. Never returns null.
         *
         * @since 6.0
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/caching/configuration/internal/BuildCacheConfigurationIntegrationTest.groovy

                    settings.buildCache {
                        local {
                            directory = '$cacheDir'
                        }
                    }
                }
            """
            settingsFile << """
                buildCache {
                    local {
                        directory = "wrong"
                    }
                }
            """
            buildFile << customTaskCode()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 19 20:09:35 UTC 2022
    - 9.6K bytes
    - Viewed (0)
Back to top