Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 779 for Directories (0.27 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/file/CopySpec.java

        /**
         * Tells if empty target directories will be included in the copy.
         *
         * @return <code>true</code> if empty target directories will be included in the copy, <code>false</code> otherwise
         */
        boolean getIncludeEmptyDirs();
    
        /**
         * Controls if empty target directories should be included in the copy.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 16 22:05:15 UTC 2022
    - 12.2K bytes
    - Viewed (0)
  2. pkg/volume/util/subpath/subpath_windows_test.go

    		if len(test.volumePath) > 0 && len(test.subPath) > 0 {
    			os.MkdirAll(test.volumePath, 0755)
    			if len(test.symlinkTarget) == 0 {
    				// make all intermediate sub directories
    				os.MkdirAll(test.subPath, 0755)
    			} else {
    				// make all parent sub directories
    				if parent := filepath.Dir(test.subPath); parent != "." {
    					os.MkdirAll(parent, 0755)
    				}
    
    				// make last element as symlink
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 13.8K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_symlink_dotgo.txt

    env GO111MODULE=on
    [!symlink] skip
    
    symlink dir.go -> dir
    
    # Issue #39841: symlinks to directories should be ignored, not treated as source files.
    go list -f '{{range .GoFiles}}{{.}}{{"\n"}}{{end}}' .
    stdout 'p\.go$'
    ! stdout 'dir\.go$'
    
    -- go.mod --
    module example.com
    go 1.15
    -- p.go --
    package p
    -- dir/README.txt --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 25 03:29:25 UTC 2020
    - 372 bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/OutputsCleanerTest.groovy

        Predicate<File> fileSafeToDelete = Mock()
        Predicate<File> dirSafeToDelete = Mock()
        def cleaner = new OutputsCleaner(deleter, fileSafeToDelete, dirSafeToDelete)
    
        def "does not delete non-empty directories"() {
            def outputFiles = []
    
            def outputDir = temporaryFolder.createDir("rootDir")
            outputFiles << outputDir.file("some-output.txt")
    
            def subDir = outputDir.createDir("subDir")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/embed.txt

    [symlink] ! go build -x
    [symlink] stderr 'pattern [*]t: cannot embed irregular file x.tzt'
    [symlink] rm x.tzt
    
    # build rejects empty directories
    mkdir t
    ! go build -x
    stderr '^x.go:5:12: pattern [*]t: cannot embed directory t: contains no embeddable files$'
    
    # build ignores symlinks and invalid names in directories
    cp x.txt t/.git
    ! go build -x
    stderr '^x.go:5:12: pattern [*]t: cannot embed directory t: contains no embeddable files$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 09 18:03:59 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/DirectorySnapshotterStatistics.java

    public interface DirectorySnapshotterStatistics {
        /**
         * The number of visited directory trees.
         */
        long getVisitedHierarchyCount();
    
        /**
         * The number of visited directories.
         */
        long getVisitedDirectoryCount();
    
        /**
         * The number of visited files.
         */
        long getVisitedFiles();
    
        /**
         * The number of files we failed to visit.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. src/crypto/x509/root_wasm.go

    // license that can be found in the LICENSE file.
    
    //go:build wasm
    
    package x509
    
    // Possible certificate files; stop after finding one.
    var certFiles = []string{}
    
    // Possible directories with certificate files; all will be read.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:54:07 UTC 2023
    - 373 bytes
    - Viewed (0)
  8. src/cmd/covdata/merge.go

    type mstate struct {
    	mm *metaMerge
    }
    
    func (m *mstate) Usage(msg string) {
    	if len(msg) > 0 {
    		fmt.Fprintf(os.Stderr, "error: %s\n", msg)
    	}
    	fmt.Fprintf(os.Stderr, "usage: go tool covdata merge -i=<directories> -o=<dir>\n\n")
    	flag.PrintDefaults()
    	fmt.Fprintf(os.Stderr, "\nExamples:\n\n")
    	fmt.Fprintf(os.Stderr, "  go tool covdata merge -i=dir1,dir2,dir3 -o=outdir\n\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:37 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. subprojects/core/src/testFixtures/groovy/org/gradle/api/tasks/AbstractCopyTaskContractTest.groovy

                    assert fcd instanceof DynamicObjectAware
                }
            })
    
            expect:
            execute(task)
        }
    
        @Issue("GRADLE-2906")
        def "each file does not execute action for directories"() {
            given:
            File fromSrcDir = createDir(project.projectDir, 'src')
            File fromConfDir = createDir(fromSrcDir, 'conf')
            File fromPropertiesFile = createFile(fromConfDir, 'file.properties')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 27 06:24:30 UTC 2018
    - 4.1K bytes
    - Viewed (0)
  10. cluster/gce/gci/mounter/stage-upload.sh

    STAGING_DIR=$(mktemp --tmpdir=${TMPDIR} -d gci-mounter-staging.XXXXXXXXXX)
    ACI_DIR=${STAGING_DIR}/gci-mounter
    CWD=${PWD}
    
    # Cleanup the temporary directories
    cleanup() {
        rm -rf "${DOWNLOAD_DIR}"
        rm -rf "${STAGING_DIR}"
        cd "${CWD}"
    }
    
    # Delete temporary directories on exit
    trap cleanup EXIT
    
    mkdir "${ACI_DIR}"
    
    # Convert docker image to aci and stage it
    echo "Downloading docker2aci ${DOCKER2ACI_VERSION}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 23 18:27:20 UTC 2020
    - 2.4K bytes
    - Viewed (0)
Back to top