Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for WhyDepth (0.07 sec)

  1. src/cmd/go/internal/modcmd/why.go

    				byModule[m.Path] = append(byModule[m.Path], path)
    			}
    		}
    		sep := ""
    		for _, m := range mods {
    			best := ""
    			bestDepth := 1000000000
    			for _, path := range byModule[m.Path] {
    				d := modload.WhyDepth(path)
    				if d > 0 && d < bestDepth {
    					best = path
    					bestDepth = d
    				}
    			}
    			why := modload.Why(best)
    			if why == "" {
    				vendoring := ""
    				if *whyVendor {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 21:32:23 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top