Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Security (0.47 sec)

  1. src/cmd/go/internal/load/pkg.go

    	StaleReason string `json:",omitempty"` // why is Stale true?
    
    	// Source files
    	// If you add to this list you MUST add to p.AllFiles (below) too.
    	// Otherwise file name security lists will not apply to any new additions.
    	GoFiles           []string `json:",omitempty"` // .go source files (excluding CgoFiles, TestGoFiles, XTestGoFiles)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    // Go package ecosystem, in which code can be imported from any server,
    // but it is also a potential security problem, if a malicious server finds a
    // way to cause the invoked version control command to run unintended code.
    //
    // To balance the functionality and security concerns, the 'go get' command
    // by default will only use git and hg to download code from public servers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    // primary culprits are use of plugins or use of LTO, but we err on
    // the side of caution, supporting only those flags that are on the
    // allow-list for safe flags from security perspective. Return is TRUE
    // if a sensitive flag is found, FALSE otherwise.
    func flagsNotCompatibleWithInternalLinking(sourceList []string, flagListList [][]string) bool {
    	for i := range sourceList {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top