Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 711 for Directories (0.25 sec)

  1. subprojects/core/src/test/groovy/org/gradle/cache/internal/VersionSpecificCacheDirectoryScannerTest.groovy

        def "lists version-specific cache directories"() {
            given:
            cacheBaseDir.createDir("_foo")
            cacheBaseDir.createDir("1.2.3-rc-1")
            cacheBaseDir.createDir("0.9-20101220110000+1100")
            cacheBaseDir.createDir("2.3.4")
            cacheBaseDir.createDir("99_BAR")
            cacheBaseDir.createDir("ZZZZ")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 05 23:07:23 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  2. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/tasks/SourceSetOutput.java

     * </pre>
     *
     * Find more information in {@link #dir(Object)} and {@link #getDirs()}
     */
    public interface SourceSetOutput extends FileCollection {
    
        /**
         * Returns the directories containing compiled classes.
         *
         * @return The classes directories. This value may safely be cast to a {@link org.gradle.api.file.ConfigurableFileCollection}.
         * @since 4.0
         */
        FileCollection getClassesDirs();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. src/go/doc/comment/testdata/text8.txt

     directives (replace and exclude) that would cause it to be interpreted
     differently than if it were the main module. The module must not require
     a higher version of itself.
    
     - Vendor directories are not used in any module. (Vendor directories are not
     included in the module zip files downloaded by 'go install'.)
    
    If the arguments don't have version suffixes, "go install" may run in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:48 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  4. pkg/volume/util/subpath/subpath_windows.go

    	return uintptr(fd), err
    }
    
    // Lock all directories in subPath and check they're not symlinks.
    func (sp *subpath) PrepareSafeSubpath(subPath Subpath) (newHostPath string, cleanupAction func(), err error) {
    	handles, err := lockAndCheckSubPath(subPath.VolumePath, subPath.Path)
    
    	// Unlock the directories when the container starts
    	cleanupAction = func() {
    		unlockPath(handles)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 12:57:11 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  5. src/io/fs/walk.go

    //
    // All errors that arise visiting files and directories are filtered by fn:
    // see the [fs.WalkDirFunc] documentation for details.
    //
    // The files are walked in lexical order, which makes the output deterministic
    // but requires WalkDir to read an entire directory into memory before proceeding
    // to walk that directory.
    //
    // WalkDir does not follow symbolic links found in directories,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 08:50:19 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/ProjectLibrary.java

        }
    
        /**
         * A set of Jar files or directories containing compiled code.
         */
        public Set<File> getClasses() {
            return classes;
        }
    
        /**
         * A set of Jar files or directories containing source code.
         */
        public void setClasses(Set<File> classes) {
            this.classes = classes;
        }
    
        /**
         * A set of Jar files or directories containing javadoc.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  7. src/cmd/doc/dirs.go

    // only walks the tree once, caching the data it finds.
    type Dirs struct {
    	scan   chan Dir // Directories generated by walk.
    	hist   []Dir    // History of reported Dirs.
    	offset int      // Counter for Next.
    }
    
    var dirs Dirs
    
    // dirsInit starts the scanning of package directories in GOROOT and GOPATH. Any
    // extra paths passed to it are included in the channel.
    func dirsInit(extra ...Dir) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 17:49:12 UTC 2022
    - 9K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/main/java/org/gradle/language/swift/SwiftComponent.java

         * Defines the Swift module for this component. The default value is calculated from the project name.
         */
        Property<String> getModule();
    
        /**
         * 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/swift} is used by default.</p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. cmd/config-dir.go

    import (
    	"os"
    	"path/filepath"
    
    	homedir "github.com/mitchellh/go-homedir"
    )
    
    const (
    	// Default minio configuration directory where below configuration files/directories are stored.
    	defaultMinioConfigDir = ".minio"
    
    	// Directory contains below files/directories for HTTPS configuration.
    	certsDir = "certs"
    
    	// Directory contains all CA certificates other than system defaults for HTTPS.
    	certsCADir = "CAs"
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 02 17:15:06 UTC 2022
    - 3K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/phases/reset/cleanupnode.go

    		if err != nil {
    			klog.Warningf("[reset] Skipping unmount of directories in %q: %v\n",
    				kubeadmconstants.KubeletRunDirectory, err)
    		} else {
    			// Unmount all mount paths under kubeletRunDirectory.
    			fmt.Printf("[reset] Unmounting mounted directories in %q\n", kubeadmconstants.KubeletRunDirectory)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top