Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for drop (0.26 sec)

  1. src/cmd/go/alldocs.go

    // so omitting @v will drop existing replacements for specific versions.
    //
    // The -dropreplace=old[@v] flag drops a replacement of the given
    // module path and version pair. If the @v is omitted, a replacement without
    // a version on the left side is dropped.
    //
    // The -retract=version and -dropretract=version flags add and drop a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/pkg.go

    	p.SysoFiles = pp.SysoFiles
    	if cfg.BuildMSan {
    		// There's no way for .syso files to be built both with and without
    		// support for memory sanitizer. Assume they are built without,
    		// and drop them.
    		p.SysoFiles = nil
    	}
    	p.CgoCFLAGS = pp.CgoCFLAGS
    	p.CgoCPPFLAGS = pp.CgoCPPFLAGS
    	p.CgoCXXFLAGS = pp.CgoCXXFLAGS
    	p.CgoFFLAGS = pp.CgoFFLAGS
    	p.CgoLDFLAGS = pp.CgoLDFLAGS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    		}
    
    		if a == root {
    			close(b.readySema)
    		}
    	}
    
    	var wg sync.WaitGroup
    
    	// Kick off goroutines according to parallelism.
    	// If we are using the -n flag (just printing commands)
    	// drop the parallelism to 1, both to make the output
    	// deterministic and because there is no real work anyway.
    	par := cfg.BuildP
    	if cfg.BuildN {
    		par = 1
    	}
    	for i := 0; i < par; i++ {
    		wg.Add(1)
    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