Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for importpath (0.19 sec)

  1. src/cmd/go/internal/test/test.go

    		if err != nil {
    			str := err.Error()
    			str = strings.TrimPrefix(str, "\n")
    			if p.ImportPath != "" {
    				base.Errorf("# %s\n%s", p.ImportPath, str)
    			} else {
    				base.Errorf("%s", str)
    			}
    			fmt.Printf("FAIL\t%s [setup failed]\n", p.ImportPath)
    			continue
    		}
    		builds = append(builds, buildTest)
    		runs = append(runs, runTest)
    		prints = append(prints, printTest)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  2. src/go/build/build.go

    	// If an Import finds and returns a package using a vendor
    	// directory, the resulting ImportPath is the complete path
    	// to the package, including the path elements leading up
    	// to and including "vendor".
    	// For example, if Import("y", "x/subdir", 0) finds
    	// "x/vendor/y", the returned package's ImportPath is "x/vendor/y",
    	// not plain "y".
    	// See golang.org/s/go15vendor for more information.
    	//
    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/go/internal/modload/load.go

    	// Re-check those paths too.
    
    	mg, _ := rs.Graph(ctx)
    	var importPath string
    	for _, m := range mg.BuildList() {
    		var found bool
    		importPath, found = tryMod(m)
    		if found {
    			break
    		}
    	}
    	return importPath
    }
    
    // ImportFromFiles adds modules to the build list as needed
    // to satisfy the imports in the named Go source files.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/init.go

    			}
    		}
    	}
    
    	// Look for Godeps.json declaring import path.
    	data, _ := os.ReadFile(filepath.Join(dir, "Godeps/Godeps.json"))
    	var cfg1 struct{ ImportPath string }
    	json.Unmarshal(data, &cfg1)
    	if cfg1.ImportPath != "" {
    		return cfg1.ImportPath, nil
    	}
    
    	// Look for vendor.json declaring import path.
    	data, _ = os.ReadFile(filepath.Join(dir, "vendor/vendor.json"))
    	var cfg2 struct{ RootPath string }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  5. src/testing/testing.go

    func (f matchStringOnly) StopCPUProfile()                             {}
    func (f matchStringOnly) WriteProfileTo(string, io.Writer, int) error { return errMain }
    func (f matchStringOnly) ImportPath() string                          { return "" }
    func (f matchStringOnly) StartTestLog(io.Writer)                      {}
    func (f matchStringOnly) StopTestLog() error                          { return errMain }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  6. src/cmd/dist/build.go

    	goCmd := []string{goBinary, "list"}
    	if noOpt {
    		goCmd = append(goCmd, "-tags=noopt")
    	}
    	goCmd = appendCompilerFlags(goCmd)
    	goCmd = append(goCmd, "-f={{if .Stale}}\tSTALE {{.ImportPath}}: {{.StaleReason}}{{end}}")
    
    	out := runEnv(workdir, CheckExit, env, append(goCmd, targets...)...)
    	if strings.Contains(out, "\tSTALE ") {
    		os.Setenv("GODEBUG", "gocachehash=1")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  7. src/cmd/go/go_test.go

    	tg.grepStdoutNot(`^testing`, "unexpected testing")
    
    	tg.run("list", "-test", "runtime/cgo")
    	tg.grepStdout(`^runtime/cgo$`, "missing runtime/cgo")
    
    	tg.run("list", "-deps", "-f", "{{if .DepOnly}}{{.ImportPath}}{{end}}", "sort")
    	tg.grepStdout(`^internal/reflectlite$`, "missing internal/reflectlite")
    	tg.grepStdoutNot(`^sort`, "unexpected sort")
    }
    
    func TestGoListCompiledCgo(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/parser.go

    			}
    			return false
    		})
    	} else {
    		if x := f(nil); x != nil {
    			list = append(list, x)
    		}
    	}
    	return list
    }
    
    // ImportSpec = [ "." | PackageName ] ImportPath .
    // ImportPath = string_lit .
    func (p *parser) importDecl(group *Group) Decl {
    	if trace {
    		defer p.trace("importDecl")()
    	}
    
    	d := new(ImportDecl)
    	d.pos = p.pos()
    	d.Group = group
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  9. 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")
    		cmd.Stderr = new(bytes.Buffer)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  10. src/cmd/internal/testdir/testdir_test.go

    var stdlibImportcfgString string
    
    func stdlibImportcfg() string {
    	stdlibImportcfgStringOnce.Do(func() {
    		output, err := exec.Command(goTool, "list", "-export", "-f", "{{if .Export}}packagefile {{.ImportPath}}={{.Export}}{{end}}", "std").Output()
    		if err != nil {
    			log.Fatal(err)
    		}
    		stdlibImportcfgString = string(output)
    	})
    	return stdlibImportcfgString
    }
    
    var stdlibImportcfgFilenameOnce sync.Once
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
Back to top