Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for outdirs (1.62 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

                }
                task dirProducer {
                    outputs.dir 'build/outdir'
                    doLast {
                        file('build/outdir').mkdirs()
                        file('build/outdir/file1.txt').text = 'some content'
                        file('build/outdir/sub').mkdirs()
                        file('build/outdir/sub/file2.txt').text = 'some content'
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/init.go

    	}
    	for i, m := range ms {
    		mainModules.pathPrefix[m] = m.Path
    		mainModules.modRoot[m] = rootDirs[i]
    		mainModules.modFiles[m] = modFiles[i]
    		mainModules.indices[m] = indices[i]
    
    		if mainModules.modRoot[m] == modRootContainingCWD {
    			mainModules.modContainingCWD = m
    		}
    
    		if rel := search.InDir(rootDirs[i], cfg.GOROOTsrc); rel != "" {
    			mainModules.inGorootSrc[m] = true
    			if m.Path == "std" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/test.go

    			// test packages, and all the run actions for these
    			// packages will depend on it. Motivating example:
    			// supposed we have a top level directory with three
    			// package subdirs, "a", "b", and "c", and
    			// from the top level, a user runs "go test -coverpkg=./... ./...".
    			// This will result in (roughly) the following action graph:
    			//
    			//	build("a")       build("b")         build("c")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top