Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 711 for Directories (0.2 sec)

  1. platforms/software/platform-base/src/main/java/org/gradle/language/base/internal/tasks/StaleOutputCleaner.java

        }
    
        /**
         * Clean up the given stale output files under the given directories.
         *
         * Any files and directories are removed that are descendants of any of the {@code directoriesToClean}.
         * Files and directories outside {@code directoriesToClean} and {@code directoriesToClean} themselves are not deleted.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/LocationListInstallationSupplierTest.groovy

            buildOptions.installationsFromPaths >> []
            def directories = supplier.get()
    
            then:
            directories.isEmpty()
        }
    
        def "supplies single installations for single path"() {
            when:
            def expectedFile = tmpDir.createDir("foo/bar")
            buildOptions.installationsFromPaths >> [expectedFile.absolutePath]
            def directories = supplier.get()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:33:15 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/tasks/JacocoReportBase.java

        /**
         * Gets the class directories that coverage will be reported for. All classes in these directories will be included in the report.
         *
         * @return class dirs to report coverage of
         */
        @Internal
        public FileCollection getAllClassDirs() {
            return classDirectories.plus(getAdditionalClassDirs());
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:19:29 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/tasks/PathSensitivity.java

         *
         * <p>
         *     For files in the root of the file collection, the file name is used as the normalized path.
         *     For directories in the root of the file collection, an empty string is used as normalized path.
         *     For files in directories in the root of the file collection, the normalized path is the relative path of the file to the root directory containing it.
         * </p>
         *
         * <br>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 26 09:19:43 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/idea/IdeaContentRoot.java

         */
        File getRootDirectory();
    
        /**
         * The set of source directories.
         */
        DomainObjectSet<? extends IdeaSourceDirectory> getSourceDirectories();
    
        /**
         * The set of test source directories.
         */
        DomainObjectSet<? extends IdeaSourceDirectory> getTestDirectories();
    
        /**
         * The set of resource directories.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/DirectorySensitivity.java

    import java.util.function.Predicate;
    
    /**
     * Specifies how a fingerprinter should handle directories that are found in a filecollection.
     */
    public enum DirectorySensitivity {
        /**
         * Whatever the default behavior is for the given fingerprinter.  For some fingerprinters, the
         * default behavior is to fingerprint directories, for others, they ignore directories by default.
         */
        DEFAULT(snapshot -> true),
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/OutputsCleaner.java

    import java.util.PriorityQueue;
    import java.util.function.Predicate;
    
    /**
     * Cleans outputs, removing empty directories.
     *
     * This class should be used when cleaning output directories when only a subset of the files can be deleted.
     * After cleaning up a few output directories, the method {@link #cleanupDirectories()} cleans the directories which became empty.
     *
     * IMPORTANT: This class is stateful, so it can't be used as a service.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/main/java/org/gradle/language/cpp/CppComponent.java

         */
        Property<String> getBaseName();
    
        /**
         * Defines the source files or directories of this component. You can add files or directories to this collection. When a directory is added, all source files are included for compilation.
         *
         * <p>When this collection is empty, the directory {@code src/main/cpp} is used by default.</p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/resolver/SourceDistributionResolverIntegrationTest.kt

                require(sourceDirs.isNotEmpty()) {
                    "Expected source directories but got none"
                }
    
                val subprojectSourcePath = "org/gradle/StartParameter.java"
                val subprojectFound = sourceDirs.find { it.resolve(subprojectSourcePath).isFile }
                require(subprojectFound != null) {
                    "Source directories do not contain subproject file '${'$'}subprojectSourcePath'. Searched in:\n  " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 13:27:15 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/WatchedDirectoriesFileSystemWatchingIntegrationTest.groovy

                .with { line ->
                    def matcher = line =~ /Watched directory hierarchies: \[(.*)]/
                    String directories = matcher[0][1]
                    return (directories.empty
                        ? []
                        : directories.split(', ').collect { new File(it) }
                    ) as Set
                }
    
            assert watchedHierarchies == (expected as Set)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 15.2K bytes
    - Viewed (0)
Back to top