Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for vgo (0.12 sec)

  1. src/cmd/go/testdata/savedir.go

    	"io/fs"
    	"log"
    	"os"
    	"path/filepath"
    	"strings"
    	"unicode/utf8"
    )
    
    func usage() {
    	fmt.Fprintf(os.Stderr, "usage: go run savedir.go dir >saved.txt\n")
    	os.Exit(2)
    }
    
    const goCmd = "vgo"
    
    func main() {
    	flag.Usage = usage
    	flag.Parse()
    	if flag.NArg() != 1 {
    		usage()
    	}
    
    	log.SetPrefix("savedir: ")
    	log.SetFlags(0)
    
    	dir := flag.Arg(0)
    
    	a := new(txtar.Archive)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 30 19:41:54 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/mod/README

    have been replaced with underscores. The archive must contain
    two files ".info" and ".mod", to be served as the info and mod files
    in the proxy protocol (see https://research.swtch.com/vgo-module).
    The remaining files are served as the content of the module zip file.
    The path@vers prefix required of files in the zip file is added
    automatically by the proxy: the files in the archive have names without
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/vendor.go

    				}
    			}
    			if !foundRequire {
    				article := ""
    				if inWorkspaceMode() {
    					article = "a "
    				}
    				vendErrorf(mod, "is marked as explicit in vendor/modules.txt, but not explicitly required in %vgo.mod", article)
    			}
    
    		}
    	}
    
    	for _, mod := range vendorReplaced {
    		r := Replacement(mod)
    		replacementSource := "go.mod"
    		if inWorkspaceMode() {
    			replacementSource = "the workspace"
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 18:09:22 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top