Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for inWorkspaceMode (0.15 sec)

  1. src/cmd/go/internal/modload/init.go

    	if modRoot == "" {
    		panic("vendor directory does not exist when in single module mode outside of a module")
    	}
    	return filepath.Join(modRoot, "vendor")
    }
    
    func inWorkspaceMode() bool {
    	if !initialized {
    		panic("inWorkspaceMode called before modload.Init called")
    	}
    	if !Enabled() {
    		return false
    	}
    	return workFilePath != ""
    }
    
    // HasModRoot reports whether a main module is present.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/buildlist.go

    	}
    
    	var graphRoots []module.Version
    	if inWorkspaceMode() {
    		graphRoots = roots
    	} else {
    		graphRoots = MainModules.Versions()
    	}
    	var (
    		mu       sync.Mutex // guards mg.g and hasError during loading
    		hasError bool
    		mg       = &ModuleGraph{
    			g: mvs.NewGraph(cmpVersion, graphRoots),
    		}
    	)
    
    	if pruning != workspace {
    		if inWorkspaceMode() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/import.go

    					mods = append(mods, vendorPkgModule[path])
    					dirs = append(dirs, dir)
    					roots = append(roots, vendorDir)
    				} else {
    					subCommand := "mod"
    					if inWorkspaceMode() {
    						subCommand = "work"
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/load.go

    				break
    			}
    		}
    		if !found && search.InDir(absDir, cfg.GOROOTsrc) == "" && pathInModuleCache(ctx, absDir, rs) == "" {
    			m.Dirs = []string{}
    			scope := "main module or its selected dependencies"
    			if inWorkspaceMode() {
    				scope = "modules listed in go.work or their selected dependencies"
    			}
    			m.AddError(fmt.Errorf("directory prefix %s does not contain %s", base.ShortPath(absDir), scope))
    			return
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top