Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 406 for Directories (0.23 sec)

  1. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/Deleter.java

         */
        boolean deleteRecursively(File target) throws IOException;
    
        /**
         * Attempts to delete the given file or directory recursively.
         *
         * Can delete directories with contents.
         * Follows symlinks pointing to directories when instructed to.
         *
         * @return {@code true} if anything was removed, {@code false} if no change was
         *         attempted (because {@code target} didn't exist).
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/resource/RemoteResource.groovy

        void expectMetadataRetrieveMissing()
    
        void expectMetadataRetrieveBroken()
    
        /**
         * Expects that the parent directories of this resource be created, for those resources where this is required. May be a no-op.
         */
        void expectParentMkdir()
    
        /**
         * Expects that the parent directories of this resource be checked, for those resources where this is required. May be a no-op.
         */
        void expectParentCheckdir()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/build_nocache.txt

    stderr 'build cache is disabled by GOCACHE=off'
    
    # If GOCACHE is set to an unwritable directory, we should diagnose it as such.
    [GOOS:windows] stop # Does not support unwritable directories.
    [root] skip # Can write to unwritable directories.
    
    mkdir $WORK/unwritable/home
    chmod 0555 $WORK/unwritable/home
    [!GOOS:plan9] env HOME=$WORK/unwritable/home
    [GOOS:plan9] env home=$WORK/unwritable/home
    
    env GOCACHE=$WORK/unwritable/home
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/AbstractCacheCleanupTest.groovy

            cacheEntries[0].assertExists()
            cacheEntries[1].assertDoesNotExist()
            cacheEntries[2].assertExists()
            deletedFiles == [cacheEntries[1]]
        }
    
        def "can delete directories"() {
            given:
            def cacheEntry = cacheDir.file("subDir").createFile("somefile")
            cacheEntry.text = "delete me"
    
            when:
            cleanupAction(finder([cacheEntry.parentFile]), { true })
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerRequirement.java

     * limitations under the License.
     */
    
    package org.gradle.workers.internal;
    
    import java.io.File;
    
    /**
     * Represents the directories a worker needs to understand in order to execute.
     *
     * TODO: This, and its subclasses, should probably be renamed to indicate that it is only about directories (for now)
     */
    public interface WorkerRequirement {
        /**
         * Returns the directory in which to execute new workers.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:52 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. src/README.vendor

    selection in other modules. They are only considered when running
    module commands like 'go get' and 'go mod vendor' from a directory
    in GOROOT/src.
    
    Maintaining vendor directories
    ==============================
    
    Before updating vendor directories, ensure that module mode is enabled.
    Make sure that GO111MODULE is not set in the environment, or that it is
    set to 'on' or 'auto', and if you use a go.work file, set GOWORK=off.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/ModuleLibrary.java

            this.exported = false;
        }
    
        /**
         * A set of Jar files or directories containing compiled code.
         */
        public Set<Path> getClasses() {
            return classes;
        }
    
        public void setClasses(Set<Path> classes) {
            this.classes = classes;
        }
    
        /**
         * A set of directories containing Jar files.
         */
        public Set<JarDirectory> getJarDirectories() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/build_trimpath.txt

    [short] skip
    
    # If GOROOT is set, 'go build -trimpath' bakes that into the resulting
    # binary. Explicitly unset it here.
    env GOROOT=
    
    # Set up two identical directories that can be used as GOPATH.
    env GO111MODULE=on
    mkdir $WORK/a/src/paths $WORK/b/src/paths
    cp paths.go $WORK/a/src/paths
    cp paths.go $WORK/b/src/paths
    cp overlay.json $WORK/a/src/paths
    cp overlay.json $WORK/b/src/paths
    cp go.mod $WORK/a/src/paths/
    cp go.mod $WORK/b/src/paths/
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/tasks/ClasspathNormalizer.java

     *
     * Compared to the default behavior this normalizer keeps the order of any root files,
     * but ignores the order and timestamps of files in directories and ZIP/JAR files.
     *
     * This normalization applies to not only files directly on the classpath, but also
     * to any ZIP/JAR files found inside directories or nested inside other ZIP/JAR files.
     *
     * @see org.gradle.api.tasks.Classpath
     *
     * @since 4.3
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 28 21:23:55 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/DuplicateBaseNamesIntegrationTest.groovy

        @RequiresInstalledToolChain(SUPPORTS_32)
        @ToBeFixedForConfigurationCache
        def "can have sourcefiles with same base name but different directories"() {
            given:
            def testApp = initTestApp(testAppType)
    
            when:
            testApp.writeSources(file("src/main"))
            buildFile.text = ""
            testApp.plugins.each { plugin ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.9K bytes
    - Viewed (0)
Back to top