Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 972 for retract (0.14 sec)

  1. src/cmd/go/testdata/mod/example.com_retract_rationale_v1.0.0-blockwithcomment.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
    - 107 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/mod/example.com_retract_rationale_v1.0.0-empty.txt

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

    -- .mod --
    module example.com/retract/rationale
    
    go 1.14
    -- .info --
    {"Version":"v1.0.0-multiline1"}
    -- 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)
  4. src/cmd/go/testdata/mod/example.com_retract_rationale_v1.0.0-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)
  5. src/cmd/go/testdata/mod/example.com_retract_rationale_v1.0.0-long.txt

    -- .mod --
    module example.com/retract/rationale
    
    go 1.14
    -- .info --
    {"Version":"v1.0.0-long"}
    -- empty.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:11 UTC 2020
    - 124 bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

      }
    
      // If there is an active menu and a down event outside, retract the menu.
      for (const t of ['mousedown', 'touchstart']) {
        document.addEventListener(t, (e) => {
          // Note: to avoid unnecessary flicker, if the down event is inside
          // the active menu header, do not retract the menu.
          if (activeMenuHdr != e.target.closest('.menu-item')) {
            cancelActiveMenu();
          }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  8. 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)
  9. src/cmd/go/alldocs.go

    // space-separated version list.
    //
    // 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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modfetch/coderepo.go

    	if err != nil {
    		return nil, err
    	}
    	f, err := modfile.ParseLax("go.mod", data, nil)
    	if err != nil {
    		return nil, err
    	}
    	retractions := make([]modfile.VersionInterval, 0, len(f.Retract))
    	for _, r := range f.Retract {
    		retractions = append(retractions, r.VersionInterval)
    	}
    
    	return func(v string) bool {
    		for _, r := range retractions {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
Back to top