Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for ExitIfErrors (0.19 sec)

  1. src/cmd/go/internal/load/pkg.go

    			anyIncomplete = true
    		}
    	}
    	if anyIncomplete {
    		all := PackageList(pkgs)
    		for _, p := range all {
    			if p.Error != nil {
    				base.Errorf("%v", p.Error)
    			}
    		}
    	}
    	base.ExitIfErrors()
    
    	// Check for duplicate loads of the same package.
    	// That should be impossible, but if it does happen then
    	// we end up trying to build the same package twice,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. src/cmd/go/internal/test/test.go

    					buf.WriteString(pkg.ImportPath)
    					buf.WriteString("\n")
    				}
    
    				base.Errorf("cannot write test binary %s for multiple packages:\n%s", testBinary, buf.String())
    			}
    		}
    
    		base.ExitIfErrors()
    	}
    
    	initCoverProfile()
    	defer closeCoverProfile()
    
    	// If a test timeout is finite, set our kill timeout
    	// to that timeout plus one minute. This is a backup alarm in case
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top