Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,073 for directory1 (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/eclipse/DefaultEclipseSourceDirectory.java

            this.path = path;
            this.directory = directory;
            this.excludes = excludes;
            this.includes = includes;
            this.output = output;
        }
    
        @Override
        public String toString() {
            return "source directory '" + path + "'";
        }
    
        public File getDirectory() {
            return directory;
        }
    
        public String getPath() {
            return path;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/DirectorySnapshotBuilder.java

    /**
     * A builder for {@link DirectorySnapshot}.
     *
     * In order to build a directory snapshot, you need to call the methods for entering/leaving a directory
     * and for visiting leaf elements.
     * The visit methods need to be called in depth-first order.
     * When leaving a directory, the builder will create a {@link DirectorySnapshot} for the directory,
     * calculating the combined hash of the entries.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. platforms/core-execution/build-cache-packaging/src/test/groovy/org/gradle/caching/internal/packaging/impl/TarBuildCacheEntryPackerTest.groovy

            0 * _
    
            where:
            type      | preExistsAs
            FILE      | "file"
            FILE      | "dir"
            FILE      | "none"
            DIRECTORY | "file"
            DIRECTORY | "dir"
            DIRECTORY | "none"
        }
    
        def "can pack single tree file with #type name"() {
            def sourceOutputFile = temporaryFolder.file("source.txt")
            sourceOutputFile << "output"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/DecompressionCoordinator.java

     * to the same expanded directory.
     *
     * Multiple threads are allowed to extract into different expanded directories concurrently.
     * <p>
     * There currently are no checks on modifications to files in the expanded directory. This can cause problems if the expanded directory is used
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/type/ArtifactTypeDefinition.java

        String JAR_TYPE = "jar";
    
        /**
         * Represents a directory tree containing class files.
         *
         * @since 4.0
         */
        String JVM_CLASS_DIRECTORY = "java-classes-directory";
    
        /**
         * Represents a directory tree containing jvm classpath resource files.
         *
         * @since 4.0
         */
        String JVM_RESOURCES_DIRECTORY = "java-resources-directory";
    
        /**
         * Represents a zip file
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 17 13:01:55 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  10. platforms/core-execution/build-cache/src/integTest/groovy/org/gradle/caching/internal/FinalizeBuildCacheConfigurationBuildOperationIntegrationTest.groovy

            result.local.config.removeUnusedEntriesAfter == "7 days"
            result.local.type == 'directory'
            result.local.push == true
    
            result.remote == null
        }
    
        def "custom build cache connector configuration is exposed"() {
            given:
            def type = 'CustomBuildCache Desc'
            def directory = 'someLocation'
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top