Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 779 for Directories (0.17 sec)

  1. 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)
  2. 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)
  3. pkg/kubelet/kubelet_getters.go

    }
    
    // getPodsDir returns the full path to the directory under which pod
    // directories are created.
    func (kl *Kubelet) getPodsDir() string {
    	return filepath.Join(kl.getRootDir(), config.DefaultKubeletPodsDirName)
    }
    
    // getPluginsDir returns the full path to the directory under which plugin
    // directories are created.  Plugins can use these directories for data that
    // they need to persist.  Plugins should create subdirectories under this named
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 00:48:07 UTC 2024
    - 17.9K 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. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[directory_layout]]
    = Gradle-managed Directories
    
    Gradle uses two main directories to perform and manage its work: the <<#dir:gradle_user_home>> and the <<#dir:project_root>>.
    
    image::author-gradle-2.png[]
    
    [[dir:gradle_user_home]]
    == Gradle User Home directory
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top