Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 779 for Directories (0.41 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    }
    ----
    
    [[sec:deleting_files_example]]
    == Deleting files and directories
    
    Deleting files and directories in Gradle involves removing them from the file system.
    
    === Using the `Delete` task
    
    You can easily delete files and directories using the link:{groovyDslPath}/org.gradle.api.tasks.Delete.html[Delete] task.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_find.txt

    mkdir $GOPATH/src/empty
    cd $GOPATH/src/empty
    go mod init
    stderr 'empty'
    rm go.mod
    
    # In Plan 9, directories are automatically created in /n.
    # For example, /n/go.mod always exist, but it's a directory.
    # Test that we ignore directories when trying to find go.mod.
    cd $WORK/gomoddir
    ! go list .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:14 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/file/FileTree.java

        /**
         * Visits the files and directories in this file tree. Files are visited in depth-first prefix order, so that a directory
         * is visited before its children.
         *
         * @param visitor The visitor.
         * @return this
         */
        FileTree visit(FileVisitor visitor);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 06 22:26:55 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/script/cmds.go

    			}
    			return wait, nil
    		})
    }
    
    // Mkdir creates a directory and any needed parent directories.
    func Mkdir() Cmd {
    	return Command(
    		CmdUsage{
    			Summary: "create directories, if they do not already exist",
    			Args:    "path...",
    			Detail: []string{
    				"Unlike Unix mkdir, parent directories are always created if needed.",
    			},
    		},
    		func(s *State, args ...string) (WaitFunc, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ContinuousBuildChangeReportingIntegrationTest.groovy

            where:
            changesCount << [1, changesLimit, 11]
        }
    
        def "should report the changes when directories are created #changesCount"(changesCount) {
            given:
            // We need to put these directories in subdirectories, since on Linux we'd stop watching a directory as soon as we
            // received file changes for all the files inside.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/SnapshotVisitResult.java

         */
        CONTINUE,
    
        /**
         * Terminate visiting immediately.
         */
        TERMINATE,
    
        /**
         * If returned from visiting a directory, the directories entries will not be visited;
         * otherwise works as {@link #CONTINUE}.
         */
        SKIP_SUBTREE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. src/cmd/internal/cov/readcovdata.go

    	err            error
    	verbosityLevel int
    }
    
    // MakeCovDataReader creates a CovDataReader object to process the
    // given set of input directories. Here 'vis' is a visitor object
    // providing methods to be invoked as we walk through the data,
    // 'indirs' is the set of coverage data directories to examine,
    // 'verbosityLevel' controls the level of debugging trace messages
    // (zero for off, higher for more output), 'flags' stores flags that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/controlplane/volumes.go

    	// On some systems where we host-mount /etc/ssl/certs, it is also required to mount additional directories.
    	// This is needed due to symlinks pointing from files in /etc/ssl/certs to these directories.
    	for _, caCertsExtraVolumePath := range caCertsExtraVolumePaths {
    		if isExtraVolumeMountNeeded(caCertsExtraVolumePath) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:33:18 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  9. cmd/os_unix.go

    //
    // osMkdirAll creates a directory named path,
    // along with any necessary parents, and returns nil,
    // or else returns an error.
    // The permission bits perm (before umask) are used for all
    // directories that MkdirAll creates.
    // If path is already a directory, MkdirAll does nothing
    // and returns nil.
    func osMkdirAll(dirPath string, perm os.FileMode, baseDir string) error {
    	if baseDir != "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/providers/fileAndDirectoryProperty/kotlin/build.gradle.kts

            srcFile.writeText("public class ${className} { }")
        }
    }
    
    // Create the source generation task
    tasks.register<GenerateSource>("generate") {
        // Configure the locations, relative to the project and build directories
        configFile = layout.projectDirectory.file("src/config.txt")
        outputDir = layout.buildDirectory.dir("generated-source")
    }
    
    // Change the build directory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top