Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 54 for subdir2 (0.25 sec)

  1. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/OutputsCleanerTest.groovy

            def subDir = outputDir.createDir("subDir")
            outputFiles << subDir.file("in-subdir.txt")
    
            def outputFile = temporaryFolder.createFile("output.txt")
            outputFiles << outputFile
    
            outputFiles.each {
                it << "output ${it.name}"
            }
    
            def overlappingFile = subDir.file("overlap")
            overlappingFile << "overlapping file"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/internal/fingerprint/classpath/impl/DefaultClasspathFingerprinterTest.groovy

                subdir {
                    file('someOtherFile.log').text = "File in subdir"
                }
            }.zipTo(zipFile)
            def classes = file('classes').create {
                file('thirdFile.txt').text = "Third file"
                file('fourthFile.txt').text = "Fourth file"
                subdir {
                    file('build.log').text = "File in subdir"
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:33 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/CompositeCleanupAction.java

            private final CleanableStore delegate;
            private final File subDir;
            private final String displayName;
    
            CleanableSubDir(CleanableStore delegate, File subDir) {
                this.delegate = delegate;
                this.subDir = subDir;
                this.displayName = delegate.getDisplayName() + " [subdir: " + subDir + "]";
            }
    
            @Override
            public String getDisplayName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/issue53586.txt

    [short] skip  # sleeps to make mtime cacheable
    
    go mod init example
    
    cd subdir
    go mod init example/subdir
    sleep 2s  # allow go.mod mtime to be cached
    
    go list -f '{{.Dir}}: {{.ImportPath}}' ./pkg
    stdout $PWD${/}pkg': example/subdir/pkg$'
    
    rm go.mod  # expose ../go.mod
    
    go list -f '{{.Dir}}: {{.ImportPath}}' ./pkg
    stdout $PWD${/}pkg': example/subdir/pkg$'
    
    -- subdir/pkg/pkg.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 30 18:20:39 UTC 2022
    - 394 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_list_issue61415.txt

    go list -json -m --versions -e vcs-test.golang.org/git/issue61415.git/nested@has-nested
    cp stdout has-nested.json
    stdout '"Origin":'
    stdout '"VCS": "git"'
    stdout '"URL":'  # randomly-chosen vcweb localhost URL
    stdout '"Subdir": "nested"'
    stdout '"TagPrefix": "nested/"'
    stdout '"TagSum": "t1:47DEQpj8HBSa\+/TImW\+5JCeuQeRkm5NMpJWZG3hSuFU="'
    stdout '"Ref": "refs/tags/has-nested"'
    stdout '"Hash": "08a4fa6bb9c04ffba03b26ae427b0d6335d90a2a"'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 22:15:45 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_download_issue51114.txt

    stdout 'Go Gopher'
    
    env GOPROXY=direct
    
    ! go mod download
    stderr '^go: github\.com/golang/notexist/subdir@v0.1.0: reading github\.com/golang/notexist/subdir/go\.mod at revision subdir/v0\.1\.0: '
    
    -- go.mod --
    module test
    
    go 1.18
    
    require github.com/golang/notexist/subdir v0.1.0
    
    -- $WORK/home/gopher/.gitconfig --
    [user]
    	name = Go Gopher
    	email = ******@****.***
    [url "******@****.***:"]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 16:37:00 UTC 2023
    - 749 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/vendor_import.txt

    	"testing"
    )
    
    func TestMsgExternal(t *testing.T) {
    	if strings.Msg != "hello, world" {
    		t.Fatalf("unexpected msg: %v", strings.Msg)
    	}
    }
    -- vend/subdir/bad.go --
    package subdir
    
    import _ "r"
    -- vend/subdir/good.go --
    package subdir
    
    import _ "p"
    -- vend/vendor/p/p.go --
    package p
    -- vend/vendor/q/q.go --
    package q
    -- vend/vendor/strings/msg.go --
    package strings
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 22 21:14:01 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_get_nopkgs.txt

    ! stderr 'matched no packages'
    stderr '^go: example\.net/emptysubdir/subdir/\.\.\.: module example\.net/emptysubdir/subdir: reading http://.*: 404 Not Found\n\tserver response: 404 page not found\n\z'
    
    # It doesn't make sense to 'go get' a path in the standard library,
    # since the standard library necessarily can't have unresolved imports.
    #
    # TODO(#30241): Maybe that won't always be the case?
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modfetch/codehost/shell.go

    				continue
    			}
    			os.Stdout.Write(data)
    
    		case "zip":
    			if len(f) != 4 {
    				fmt.Fprintf(os.Stderr, "?usage: zip rev subdir output\n")
    				continue
    			}
    			subdir := f[2]
    			if subdir == "-" {
    				subdir = ""
    			}
    			rc, err := repo.ReadZip(f[1], subdir, 10<<20)
    			if err != nil {
    				fmt.Fprintf(os.Stderr, "?%s\n", err)
    				continue
    			}
    			data, err := io.ReadAll(rc)
    			rc.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/GradleBuildScriptExecutionFromSubDirIntegTest.groovy

                    }
                }
            """
            settingsFile << "include 'tmp'"
    
            when:
            def subdir = file("tmp")
            subdir.mkdirs()
            executer.inDirectory(subdir)
            succeeds ':checkDir'
    
            then:
            subdir.listFiles().length == 0
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:22 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top