Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 972 for retract (0.13 sec)

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

    -- .mod --
    module example.com/retract/ambiguous
    
    go 1.16
    -- .info --
    {"Version":"v1.0.0"}
    -- nested/nested.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 18 15:31:11 UTC 2020
    - 129 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/mod/example.com_cmd_v1.9.0.txt

    example.com/cmd contains main packages.
    
    -- .info --
    {"Version":"v1.9.0"}
    -- .mod --
    module example.com/cmd
    
    go 1.16
    
    // this is a bad version
    retract v1.9.0
    -- go.mod --
    module example.com/cmd
    
    go 1.16
    
    // this is a bad version
    retract v1.9.0
    -- a/a.go --
    package main
    
    func main() {}
    -- b/b.go --
    package main
    
    func main() {}
    -- err/err.go --
    package err
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 15 12:45:59 UTC 2020
    - 381 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/mod/example.com_retract_self_pseudo_v0.0.0-20200325131415-0123456789ab

    This version is not retracted. It should be returned by the proxy's
    @latest endpoint. It should match the @latest version query.
    
    TODO(golang.org/issue/24031): the proxy and proxy.golang.org both return
    the highest release version from the @latest endpoint, even if that
    version is retracted, so there is no way for the go command to
    discover an unretracted pseudo-version.
    
    -- .mod --
    module example.com/retract/self/pseudo
    
    go 1.15
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:01 UTC 2020
    - 568 bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    			errorf("unexpected token after version: %q", args[0])
    			return
    		}
    		retract := &Retract{
    			VersionInterval: vi,
    			Rationale:       rationale,
    			Syntax:          line,
    		}
    		f.Retract = append(f.Retract, retract)
    	}
    }
    
    func parseReplace(filename string, line *Line, verb string, args []string, fix VersionFixer) (*Replace, *Error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/mod/example.com_retract_self_prev_v1.1.0.txt

    See example.com_retract_self_pref_v1.9.0.txt.
    
    This version is the latest (only) non-retracted version.
    
    -- .mod --
    module example.com/retract/self/prev
    
    go 1.15
    
    -- .info --
    {"Version":"v1.1.0"}
    
    -- p.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:12:37 UTC 2020
    - 218 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/mod/example.com_retract_self_prev_v1.0.0-bad.txt

    See example.com_retract_self_prev_v1.9.0.txt.
    
    This version is retracted.
    
    -- .mod --
    module example.com/retract/self/prev
    
    go 1.15
    
    -- .info --
    {"Version":"v1.0.0-bad"}
    
    -- p.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:12:37 UTC 2020
    - 192 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/mod/example.com_retract_rationale_v1.0.1-order.txt

    -- .mod --
    module example.com/retract/rationale
    
    go 1.14
    -- .info --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:11 UTC 2020
    - 96 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/mod/example.com_retract_rationale_v1.0.0-multiline2.txt

    -- .mod --
    module example.com/retract/rationale
    
    go 1.14
    -- .info --
    {"Version":"v1.0.0-multiline2"}
    -- empty.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:11 UTC 2020
    - 130 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/mod/example.com_retract_rationale_v1.0.0-unprintable.txt

    -- .mod --
    module example.com/retract/rationale
    
    go 1.14
    -- .info --
    {"Version":"v1.0.0-unprintable"}
    -- empty.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:11 UTC 2020
    - 131 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/mod/example.com_retract_rationale_v1.0.0-block.txt

    -- .mod --
    module example.com/retract/rationale
    
    go 1.14
    -- .info --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:11 UTC 2020
    - 96 bytes
    - Viewed (0)
Back to top