Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 126 for subdir2 (0.16 sec)

  1. src/cmd/go/testdata/script/mod_vendor_issue46867.txt

    # files from directories outside of the module.
    
    cd subdir
    go mod vendor
    ! exists vendor/example.net/NOTICE
    exists vendor/example.net/m/NOTICE
    
    -- subdir/go.mod --
    module golang.org/issue46867
    
    go 1.17
    
    replace example.net/m v0.1.0 => ./m
    
    require example.net/m v0.1.0
    -- subdir/issue.go --
    package issue
    
    import _ "example.net/m/n"
    -- subdir/m/go.mod --
    module example.net/m
    
    go 1.17
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 01 17:10:57 UTC 2021
    - 675 bytes
    - Viewed (0)
  2. 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)
  3. 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)
  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. 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)
  6. 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)
  7. 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)
  8. src/cmd/go/testdata/script/build_vendor.txt

    # Build
    env GO111MODULE=off
    go build vend/x
    ! stdout .
    ! stderr .
    
    -- vend/dir1/dir1.go --
    package dir1
    -- 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/vend/dir1/dir2/dir2.go --
    package dir2
    -- vend/x/invalid/invalid.go --
    package invalid
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 703 bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/covdata/tool_test.go

    func buildProg(t *testing.T, prog string, dir string, tag string, flags []string) (string, string) {
    	// Create subdirs.
    	subdir := filepath.Join(dir, prog+"dir"+tag)
    	if err := os.Mkdir(subdir, 0777); err != nil {
    		t.Fatalf("can't create outdir %s: %v", subdir, err)
    	}
    	depdir := filepath.Join(subdir, "dep")
    	if err := os.Mkdir(depdir, 0777); err != nil {
    		t.Fatalf("can't create outdir %s: %v", depdir, err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 24.5K bytes
    - Viewed (0)
Back to top