Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for badGoFiles (0.16 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)
  2. src/go/build/build.go

    	if err != nil {
    		return p, err
    	}
    
    	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: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
Back to top