Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 265 for retracted (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/cmd/go/testdata/mod/example.com_retract_self_all_v1.9.0.txt

    Module example.com/retract/self/prev is a module that retracts its own
    latest version.
    
    No unretracted versions are available.
    
    -- .mod --
    module example.com/retract/self/all
    
    go 1.15
    
    retract v1.9.0 // bad
    
    -- .info --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:01 UTC 2020
    - 241 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/mod/example.com_retract_self_pseudo_v1.9.0.txt

    Module example.com/retract/self/pseudo is a module that retracts its own
    latest version, as well as an earlier version.
    
    An unretracted pseudo-version is available.
    
    -- .mod --
    module example.com/retract/self/pseudo
    
    go 1.15
    
    retract v1.0.0-bad // bad
    retract v1.9.0 // self
    
    -- .info --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:01 UTC 2020
    - 310 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/mod/example.com_retract_self_prev_v1.9.0.txt

    Module example.com/retract/self/prev is a module that retracts its own
    latest version, as well as an earlier version.
    
    A previous unretracted release version, v1.1.0, is still available.
    
    -- .mod --
    module example.com/retract/self/prev
    
    go 1.15
    
    retract v1.0.0-bad // bad
    retract v1.9.0 // self
    
    -- .info --
    {"Version":"v1.9.0"}
    
    -- p.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:12:37 UTC 2020
    - 351 bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-api/src/main/java/org/gradle/declarative/dsl/model/annotations/Restricted.java

    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    @Target({ElementType.TYPE, ElementType.METHOD})
    @Retention(RetentionPolicy.RUNTIME)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 19 07:57:00 UTC 2024
    - 1005 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/mod/example.com_retract_incompatible_v1.0.0.txt

    The v1.0.0 release of example.com/retract/incompatible retracts
    v2.0.0+incompatible.
    
    -- .mod --
    module example.com/retract/incompatible
    
    go 1.16
    
    retract v2.0.0+incompatible
    -- .info --
    {"Version":"v1.0.0"}
    -- go.mod --
    module example.com/retract/incompatible
    
    go 1.16
    
    retract v2.0.0+incompatible
    -- incompatible.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 20 16:23:19 UTC 2020
    - 342 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/mod/example.com_retract_incompatible_v2.0.0+incompatible.txt

    The v1.0.0 release of example.com/retract/incompatible retracts
    v2.0.0+incompatible.
    
    -- .mod --
    module example.com/retract/incompatible
    -- .info --
    {"Version":"v2.0.0+incompatible"}
    -- incompatible.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 20 16:23:19 UTC 2020
    - 226 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/mod/example.com_retract_self_prerelease_v1.9.1-pre.txt

    Module example.com/retract/self/prerelease is a module that retracts its own
    latest version and all other release version.
    
    A pre-release version higher than the highest release version is still
    available, and that should be matched by @latest.
    
    -- .mod --
    module example.com/retract/self/prerelease
    
    go 1.15
    
    -- .info --
    {"Version":"v1.9.1-pre"}
    
    -- p.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:01 UTC 2020
    - 369 bytes
    - Viewed (0)
Back to top