Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for XTestGoFiles (0.14 sec)

  1. src/cmd/go/alldocs.go

    //	    DefaultGODEBUG string  // default GODEBUG setting, for main packages
    //
    //	    // Source files
    //	    GoFiles           []string   // .go source files (excluding CgoFiles, TestGoFiles, XTestGoFiles)
    //	    CgoFiles          []string   // .go source files that import "C"
    //	    CompiledGoFiles   []string   // .go files presented to compiler (when using -compiled)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. src/cmd/dist/test.go

    		cmd := exec.Command(gorootBinGo, "list")
    		if t.short {
    			// In short test mode, use a format string to only
    			// list packages and commands that have tests.
    			const format = "{{if (or .TestGoFiles .XTestGoFiles)}}{{.ImportPath}}{{end}}"
    			cmd.Args = append(cmd.Args, "-f", format)
    		}
    		if t.race {
    			cmd.Args = append(cmd.Args, "-tags=race")
    		}
    		cmd.Args = append(cmd.Args, "std", "cmd")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Package.TestImports", Field, 0},
    		{"Package.XTestDirectives", Field, 21},
    		{"Package.XTestEmbedPatternPos", Field, 16},
    		{"Package.XTestEmbedPatterns", Field, 16},
    		{"Package.XTestGoFiles", Field, 0},
    		{"Package.XTestImportPos", Field, 0},
    		{"Package.XTestImports", Field, 0},
    		{"ToolDir", Var, 0},
    	},
    	"go/build/constraint": {
    		{"(*AndExpr).Eval", Method, 16},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  4. api/go1.txt

    pkg go/build, type Package struct, TestGoFiles []string
    pkg go/build, type Package struct, TestImportPos map[string][]token.Position
    pkg go/build, type Package struct, TestImports []string
    pkg go/build, type Package struct, XTestGoFiles []string
    pkg go/build, type Package struct, XTestImportPos map[string][]token.Position
    pkg go/build, type Package struct, XTestImports []string
    pkg go/build, var Default Context
    pkg go/build, var ToolDir string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top