Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CompiledGoFiles (0.27 sec)

  1. src/cmd/go/alldocs.go

    //
    // The -compiled flag causes list to set CompiledGoFiles to the Go source
    // files presented to the compiler. Typically this means that it repeats
    // the files listed in GoFiles and then also adds the Go code generated
    // by processing CgoFiles and SwigFiles. The Imports list contains the
    // union of all imports from both GoFiles and CompiledGoFiles.
    //
    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/work/exec.go

    			continue
    		}
    		file, err := b.findCachedObjdirFile(a, c, name)
    		if err != nil {
    			return fmt.Errorf("finding %s: %w", name, err)
    		}
    		gofiles = append(gofiles, file)
    	}
    	a.Package.CompiledGoFiles = gofiles
    	return nil
    }
    
    // vetConfig is the configuration passed to vet describing a single package.
    type vetConfig struct {
    	ID           string   // package ID (example: "fmt [fmt.test]")
    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