Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 225 for dofiles (0.13 sec)

  1. src/cmd/go/internal/work/exec.go

    	dir, _ := filepath.Split(a.Target)
    	if dir != "" {
    		if err := sh.Mkdir(dir); err != nil {
    			return err
    		}
    	}
    
    	gofiles := str.StringList(p.GoFiles)
    	cgofiles := str.StringList(p.CgoFiles)
    	cfiles := str.StringList(p.CFiles)
    	sfiles := str.StringList(p.SFiles)
    	cxxfiles := str.StringList(p.CXXFiles)
    	var objects, cgoObjects, pcCFLAGS, pcLDFLAGS []string
    
    	if p.UsesCgo() || p.UsesSwig() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/gc.go

    }
    
    func (gcToolchain) asm(b *Builder, a *Action, sfiles []string) ([]string, error) {
    	p := a.Package
    	args := asmArgs(a, p)
    
    	var ofiles []string
    	for _, sfile := range sfiles {
    		overlayPath, _ := fsys.OverlayPath(mkAbs(p.Dir, sfile))
    		ofile := a.Objdir + sfile[:len(sfile)-len(".s")] + ".o"
    		ofiles = append(ofiles, ofile)
    		args1 := append(args, "-o", ofile, overlayPath)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/test.go

    		ptest = new(Package)
    		*ptest = *p
    		ptest.Error = ptestErr
    		ptest.Incomplete = incomplete
    		ptest.ForTest = p.ImportPath
    		ptest.GoFiles = nil
    		ptest.GoFiles = append(ptest.GoFiles, p.GoFiles...)
    		ptest.GoFiles = append(ptest.GoFiles, p.TestGoFiles...)
    		ptest.Target = ""
    		// Note: The preparation of the vet config requires that common
    		// indexes in ptest.Imports and ptest.Internal.RawImports
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/load/pkg.go

    	p.GoFiles = pp.GoFiles
    	p.CgoFiles = pp.CgoFiles
    	p.IgnoredGoFiles = pp.IgnoredGoFiles
    	p.InvalidGoFiles = pp.InvalidGoFiles
    	p.IgnoredOtherFiles = pp.IgnoredOtherFiles
    	p.CFiles = pp.CFiles
    	p.CXXFiles = pp.CXXFiles
    	p.MFiles = pp.MFiles
    	p.HFiles = pp.HFiles
    	p.FFiles = pp.FFiles
    	p.SFiles = pp.SFiles
    	p.SwigFiles = pp.SwigFiles
    	p.SwigCXXFiles = pp.SwigCXXFiles
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/gccgo.go

    		}
    	}
    	return nil
    }
    
    func (tools gccgoToolchain) asm(b *Builder, a *Action, sfiles []string) ([]string, error) {
    	p := a.Package
    	var ofiles []string
    	for _, sfile := range sfiles {
    		base := filepath.Base(sfile)
    		ofile := a.Objdir + base[:len(base)-len(".s")] + ".o"
    		ofiles = append(ofiles, ofile)
    		sfile, _ = fsys.OverlayPath(mkAbs(p.Dir, sfile))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/classpath/DefaultModuleRegistryTest.groovy

            def cpFiles = module.implementationClasspath.asFiles.sort(false)
    
            expect:
            if (cpFiles.size() == 1) {
                // jar - command line test execution
                assert cpFiles[0].path.contains("platforms/software/resources/build/libs/gradle-resources".replace('/', File.separator)) // jar
            } else {
                assert cpFiles.size() == 3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactoryTest.groovy

            when:
            def cpFiles = cp.collect { new File("$it-1.0.jar") }
            def mpFiles = mp.collect { new File("$it-1.0.jar") }
    
            def framework = newFramework(true, ["a", "b"], ["c", "d"], ["e", "f"], ["g", "h"])
            def classpath = underTest.create(cpFiles, mpFiles, framework, true)
    
            then:
            if (loadsAll) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  8. src/go/build/build.go

    	CFiles            []string // .c source files
    	CXXFiles          []string // .cc, .cpp and .cxx source files
    	MFiles            []string // .m (Objective-C) source files
    	HFiles            []string // .h, .hh, .hpp and .hxx source files
    	FFiles            []string // .f, .F, .for and .f90 Fortran source files
    	SFiles            []string // .s source files
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/clean/clean.go

    	Short:     "remove object files and cached files",
    	Long: `
    Clean removes object files from package source directories.
    The go command builds most objects in a temporary directory,
    so go clean is mainly concerned with object files left by other
    tools or by manual invocations of go build.
    
    If a package argument is given or the -i or -r flag is set,
    clean removes the following files from each of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. docs/ru/docs/tutorial/static-files.md

    Nils Lindemann <******@****.***> 1713469999 +0200
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top