Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 779 for Directories (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/documentation/docs/src/docs/userguide/core-plugins/build_init_plugin.adoc

    * Uses the “`application`” plugin to produce a command-line application implemented in Java
    * Uses the “`mavenCentral`” dependency repository
    * Uses https://junit.org/junit4/[JUnit 4] for testing
    * Has directories in the conventional locations for source code
    * Contains a sample class and unit test, if there are no existing source or test files
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/file/CopySourceSpec.java

    public interface CopySourceSpec {
        /**
         * Specifies source files or directories for a copy. The given paths are evaluated as per {@link
         * org.gradle.api.Project#files(Object...)}.
         *
         * @param sourcePaths Paths to source files for the copy
         */
        CopySourceSpec from(Object... sourcePaths);
    
        /**
         * Specifies the source files or directories for a copy and creates a child {@code CopySourceSpec}. The given source
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 06 22:26:55 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top