Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for GONOSUMDB (0.07 sec)

  1. src/cmd/go/internal/modfetch/sumdb.go

    func useSumDB(mod module.Version) bool {
    	if mod.Path == "golang.org/toolchain" {
    		must := true
    		// Downloaded toolchains cannot be listed in go.sum,
    		// so we require checksum database lookups even if
    		// GOSUMDB=off or GONOSUMDB matches the pattern.
    		// If GOSUMDB=off, then the eventual lookup will fail
    		// with a good error message.
    
    		// Exception #1: using GOPROXY=file:// to test a distpack.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 15:02:47 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  2. src/crypto/ed25519/ed25519vectors_test.go

    	cmd := exec.Command(goTool, "mod", "download", "-modcacherw", "-json", path)
    	// TODO: enable the sumdb once the TryBots proxy supports it.
    	cmd.Env = append(os.Environ(), "GONOSUMDB=*")
    	output, err := cmd.Output()
    	if err != nil {
    		t.Fatalf("failed to run `go mod download -json %s`, output: %s", path, output)
    	}
    	var dm struct {
    		Dir string // absolute path to cached source root directory
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 25 14:52:51 UTC 2022
    - 3.7K bytes
    - Viewed (0)
Back to top