Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for GoFiles (0.17 sec)

  1. src/cmd/dist/build.go

    		if !t.IsZero() && !strings.HasSuffix(p, ".a") && !shouldbuild(p, pkg) {
    			return false
    		}
    		if strings.HasSuffix(p, ".go") {
    			gofiles = append(gofiles, p)
    		} else if strings.HasSuffix(p, ".s") {
    			sfiles = append(sfiles, p)
    		}
    		if t.After(ttarg) {
    			stale = true
    		}
    		return true
    	})
    
    	// If there are no files to compile, we're done.
    	if len(files) == 0 {
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  2. src/go/build/build.go

    	ConflictDir   string   // this directory shadows Dir in $GOPATH
    	BinaryOnly    bool     // cannot be rebuilt from source (has //go:binary-only-package comment)
    
    	// Source files
    	GoFiles           []string // .go source files (excluding CgoFiles, TestGoFiles, XTestGoFiles)
    	CgoFiles          []string // .go source files that import "C"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  3. src/cmd/internal/testdir/testdir_test.go

    		if _, err := os.Stat(filepath.Join(testenv.GOROOT(t), "VERSION")); err == nil {
    			t.Skipf("skipping: GOROOT/test not present")
    		}
    	}
    
    	for _, dir := range dirs {
    		for _, goFile := range goFiles(t, dir) {
    			test := test{testCommon: common, dir: dir, goFile: goFile}
    			t.Run(path.Join(dir, goFile), func(t *testing.T) {
    				t.Parallel()
    				test.T = t
    				testError := test.run()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  4. src/cmd/cgo/out.go

    	base := srcfile
    	base = strings.TrimSuffix(base, ".go")
    	base = filepath.Base(base)
    	fgo1 := creat(*objDir + base + ".cgo1.go")
    	fgcc := creat(*objDir + base + ".cgo2.c")
    
    	p.GoFiles = append(p.GoFiles, base+".cgo1.go")
    	p.GccFiles = append(p.GccFiles, base+".cgo2.c")
    
    	// Write Go output: Go input with rewrites of C.xxx to _C_xxx.
    	fmt.Fprintf(fgo1, "// Code generated by cmd/cgo; DO NOT EDIT.\n\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/load.go

    // figure out what the error-reporting actually ought to be.
    func ImportFromFiles(ctx context.Context, gofiles []string) {
    	rs := LoadModFile(ctx)
    
    	tags := imports.Tags()
    	imports, testImports, err := imports.ScanFiles(gofiles, tags)
    	if err != nil {
    		base.Fatal(err)
    	}
    
    	loaded = loadFromRoots(ctx, loaderParams{
    		PackageOpts: PackageOpts{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  6. src/cmd/go/internal/test/test.go

    			Actor:      work.ActorFunc(builderPrintTest),
    			Deps:       []*work.Action{cleanAction},
    			Package:    p,
    			IgnoreFail: true, // print even if test failed
    		}
    	}
    
    	if len(ptest.GoFiles)+len(ptest.CgoFiles) > 0 {
    		addTestVet(b, ptest, vetRunAction, installAction)
    	}
    	if pxtest != nil {
    		addTestVet(b, pxtest, vetRunAction, installAction)
    	}
    
    	if installAction != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/css/manual.css

    	padding: 30px 12px;
    	max-width: 62.5rem;
    	margin: 0 auto;
    	padding-left: 5rem;
    }
    
    @media not screen and (min-width: 64rem) {
    	.site-footer__navigation {
    		/* same to nav.docs-navigation for mobiles */
    		padding: 20px 20px 20px 26px;
    	}
    }
    
    .site-footer__links {
    	display: flex;
    	flex: 1 1 auto;
    }
    
    .site-footer__links .site-footer__links-list {
    	list-style-type: none;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
Back to top