Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for badGoFiles (0.13 sec)

  1. src/cmd/go/internal/modindex/read.go

    	}
    
    	// We need to do a second round of bad file processing.
    	var badGoError error
    	badGoFiles := make(map[string]bool)
    	badGoFile := func(name string, err error) {
    		if badGoError == nil {
    			badGoError = err
    		}
    		if !badGoFiles[name] {
    			p.InvalidGoFiles = append(p.InvalidGoFiles, name)
    			badGoFiles[name] = true
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
Back to top