Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 575 for retracted (0.14 sec)

  1. src/cmd/go/testdata/mod/example.com_cmd_v1.0.0.txt

    example.com/cmd contains main packages.
    
    v1.0.0 is the latest non-retracted version. Other versions contain errors or
    detectable problems.
    
    -- .info --
    {"Version":"v1.0.0"}
    -- .mod --
    module example.com/cmd
    
    go 1.16
    -- go.mod --
    module example.com/cmd
    
    go 1.16
    -- a/a.go --
    package main
    
    import "fmt"
    
    func main() { fmt.Println("a@v1.0.0") }
    -- b/b.go --
    package main
    
    import "fmt"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 16 16:11:09 UTC 2021
    - 476 bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/modfile.go

    			}
    			summary.require = append(summary.require, module.Version{Path: "go", Version: summary.goVersion})
    		}
    		if len(f.Retract) > 0 {
    			summary.retract = make([]retraction, 0, len(f.Retract))
    			for _, ret := range f.Retract {
    				summary.retract = append(summary.retract, retraction{
    					VersionInterval: ret.VersionInterval,
    					Rationale:       ret.Rationale,
    				})
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 17:53:40 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_tidy_compat_incompatible.txt

    
    # There are two ways for the module author to bring the two into alignment.
    # One is to *explicitly* 'exclude' the version that is already *implicitly*
    # pruned out under 1.17.
    
    go mod edit -exclude=example.com/retract/incompatible@v2.0.0+incompatible
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/list.go

    					continue
    				}
    			}
    
    			allowed := CheckAllowed
    			if IsRevisionQuery(path, vers) || mode&ListRetracted != 0 {
    				// Allow excluded and retracted versions if the user asked for a
    				// specific revision or used 'go list -retracted'.
    				allowed = nil
    			}
    			info, err := queryReuse(ctx, path, vers, current, allowed, reuse)
    			if err != nil {
    				var origin *codehost.Origin
    				if info != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 22:43:50 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_install_pkg_version.txt

    
    # 'go install pkg@version' will only match a retracted version if it's
    # explicitly requested.
    env GO111MODULE=on
    go list -m -versions example.com/cmd
    ! stdout v1.9.0
    go list -m -versions -retracted example.com/cmd
    stdout v1.9.0
    go install example.com/cmd/a@latest
    go version -m $GOPATH/bin/a$GOEXE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/mod/modfile/work.go

    //
    // Later replace directives take priority.
    //
    // require directives are not de-duplicated. That's left up to higher-level
    // logic (MVS).
    //
    // retract directives are not de-duplicated since comments are
    // meaningful, and versions may be retracted multiple times.
    func (f *WorkFile) removeDups() {
    	removeDups(f.Syntax, nil, &f.Replace)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. src/cmd/go/alldocs.go

    //
    // The -retracted flag causes list to report information about retracted
    // module versions. When -retracted is used with -f or -json, the Retracted
    // field will be set to a string explaining why the version was retracted.
    // The string is taken from comments on the retract directive in the
    // module's go.mod file. When -retracted is used with -versions, retracted
    // versions are listed together with unretracted versions. The -retracted
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/coderepo.go

    	tagPrefix := ""
    	if r.codeDir != "" {
    		tagPrefix = r.codeDir + "/"
    	}
    
    	isRetracted, err := r.retractedVersions(ctx)
    	if err != nil {
    		isRetracted = func(string) bool { return false }
    	}
    
    	// tagToVersion returns the version obtained by trimming tagPrefix from tag.
    	// If the tag is invalid, retracted, or a pseudo-version, tagToVersion returns
    	// an empty version.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/mvs/mvs.go

    		downgraded = append(downgraded, r)
    	}
    
    	// The downgrades we computed above only downgrade to versions enumerated by
    	// reqs.Previous. However, reqs.Previous omits some versions — such as
    	// pseudo-versions and retracted versions — that may be selected as transitive
    	// requirements of other modules.
    	//
    	// If one of those requirements pulls the version back up above the version
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 21:58:12 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  10. src/syscall/zerrors_aix_ppc64.go

    	37:  "signal 37",
    	38:  "signal 38",
    	39:  "signal 39",
    	48:  "signal 48",
    	49:  "signal 49",
    	58:  "signal 58",
    	59:  "CPU Failure Predicted",
    	60:  "monitor mode granted",
    	61:  "monitor mode retracted",
    	62:  "sound completed",
    	63:  "secure attention",
    	255: "signal 255",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 16:18:12 UTC 2019
    - 47.2K bytes
    - Viewed (0)
Back to top