Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Checksum (0.56 sec)

  1. src/cmd/go/internal/modinfo/info.go

    	Error      *ModuleError     `json:",omitempty"` // error loading module
    	Sum        string           `json:",omitempty"` // checksum for path, version (as in go.sum)
    	GoModSum   string           `json:",omitempty"` // checksum for go.mod (as in go.sum)
    	Origin     *codehost.Origin `json:",omitempty"` // provenance of module
    	Reuse      bool             `json:",omitempty"` // reuse of old module info is safe
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modfetch/sumdb.go

    		// The checksum database provides a stronger guarantee,
    		// so we don't make that exception.
    
    		// Otherwise, require the checksum database.
    		if must {
    			return true
    		}
    	}
    	return cfg.GOSUMDB != "off" && !module.MatchPrefixPatterns(cfg.GONOSUMDB, mod.Path)
    }
    
    // lookupSumDB returns the Go checksum database's go.sum lines for the given module,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 15:02:47 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/help.go

    https://golang.org/doc/tutorial/create-module.
    
    For a detailed reference on modules, see https://golang.org/ref/mod.
    
    By default, the go command may download modules from https://proxy.golang.org.
    It may authenticate modules using the checksum database at
    https://sum.golang.org. Both services are operated by the Go team at Google.
    The privacy policies for these services are available at
    https://proxy.golang.org/privacy and https://sum.golang.org/privacy,
    respectively.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 30 17:07:46 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/gover/version.go

    	// ones. See https://golang.org/issue/45965.
    	SeparateIndirectVersion = "1.17"
    
    	// tidyGoModSumVersion is the Go version at which
    	// 'go mod tidy' preserves go.mod checksums needed to build test dependencies
    	// of packages in "all", so that 'go test all' can be run without checksum
    	// errors.
    	// See https://go.dev/issue/56222.
    	TidyGoModSumVersion = "1.21"
    
    	// goStrictVersion is the Go version at which the Go versions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/list.go

    		// should be considered up-to-date. The fix for now is to always treat the
    		// go.sum as up-to-date during list -m -u. Probably the right fix is more targeted,
    		// but in general list -u is looking up other checksums in the checksum database
    		// that won't be necessary later, so it makes sense not to write the go.sum back out.
    		if !ExplicitWriteGoMod && mode&ListU == 0 {
    			err = commitRequirements(ctx, WriteOpts{})
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 22:43:50 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modcmd/tidy.go

    are retained as explicit requirements in the go.mod file.
    (Go versions 1.17 and higher retain more requirements in order to
    support lazy module loading.)
    
    The -compat flag preserves any additional checksums needed for the
    'go' command from the indicated major Go release to successfully load
    the module graph, and causes tidy to error out if that version of the
    'go' command would load any imported package from a different module
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top