Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 779 for Directories (0.21 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/tasks/TaskInputFilePropertyBuilder.java

        /**
         * Ignore directories during up-to-date checks and build cache key calculations.  When this is set, only the contents of directories
         * will be considered, but not the directories themselves.  Changes to empty directories, and directories that
         * contain only empty directories, will be ignored.
         *
         * @since 6.8
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 13 17:35:59 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classpath/ClassPath.java

        /**
         * Returns the list of URIs of the classpath entries (JARs or class directories) that this classpath consists of. The order is the classpath search order.
         *
         * @return the list of URIs of the classpath entries
         */
        List<URI> getAsURIs();
    
        /**
         * Returns the list of the classpath entries (JARs or class directories) that this classpath consists of. The order is the classpath search order.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/tasks/TaskDestroyables.java

    import org.gradle.internal.HasInternalProtocol;
    
    /**
     * Represents the files or directories that a {@link org.gradle.api.Task} destroys (removes).
     *
     * @since 4.0
     */
    @HasInternalProtocol
    public interface TaskDestroyables {
        /**
         * Registers files or directories that this task destroys.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 14 16:39:36 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_cache_rw.txt

    # Regression test for golang.org/issue/31481.
    
    env GO111MODULE=on
    
    # golang.org/issue/31481: an explicit flag should make directories in the module
    # cache writable in order to work around the historical inability of 'rm -rf' to
    # forcibly remove files in unwritable directories.
    go get -modcacherw rsc.io/quote@v1.5.2
    cp $WORK/extraneous.txt $GOPATH/pkg/mod/rsc.io/quote@v1.5.2/extraneous_file.go
    
    # After adding an extraneous file, 'go mod verify' should fail.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 2K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseTestSourcesIntegrationTest.groovy

    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    
    class EclipseTestSourcesIntegrationTest extends AbstractEclipseTestSourcesIntegrationTest {
    
        @ToBeFixedForConfigurationCache
        def "source directories from main source sets are not marked with test classpath attribute"() {
            buildFile << """
                plugins {
                    id 'java'
                    id 'eclipse'
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/LoggingFileSystemWatchingIntegrationTest.groovy

            result.output =~ /VFS> Statistics since last build:/
            result.output =~ /VFS> > Stat: Executed stat\(\) x 0. getUnixMode\(\) x 0/
            result.output =~ /VFS> > FileHasher: Hashed 0 files \(0 bytes\)/
            result.output =~ /VFS> > DirectorySnapshotter: Snapshot 0 directory hierarchies \(visited 0 directories, 0 files and 0 failed files\)/
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModule.java

         *
         * This should be preferred to {@link #getTestResourceDirs()} as it will include late changes to default directories.
         *
         * @return lazily configurable collection of test resource directories
         * @since 7.4
         */
        public ConfigurableFileCollection getTestResources() {
            return testResources;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 09:58:16 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/gradle_directories.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[gradle_directories]]
    = Gradle Directories
    
    Gradle uses two main directories to perform and manage its work: the <<#gradle_user_home>> and the <<#project_root>>.
    
    image::author-gradle-2.png[]
    
    [[gradle_user_home]]
    == Gradle User Home directory
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/HierarchicalEclipseProject.java

         * @since 1.0-milestone-3
         */
        DomainObjectSet<? extends EclipseProjectDependency> getProjectDependencies();
    
        /**
         * Returns the source directories for this project.
         *
         * @return The source directories. Returns an empty set if the project has no source directories.
         * @since 1.0-milestone-3
         */
        DomainObjectSet<? extends EclipseSourceDirectory> getSourceDirectories();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/main/java/org/gradle/language/cpp/CppLibrary.java

    /**
     * Configuration for a C++ library, defining the source files and header directories that make up the library plus other settings.
     *
     * <p>An instance of this type is added as a project extension by the C++ library plugin.</p>
     *
     * @since 4.2
     */
    public interface CppLibrary extends ProductionCppComponent {
        /**
         * Defines the public header file directories of this library.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top