Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for fullshort (0.23 sec)

  1. src/cmd/vet/vet_test.go

    //
    // Sources files are supplied as fullshort slice.
    // It consists of pairs: full path to source file and its base name.
    func errorCheck(outStr string, wantAuto bool, fullshort ...string) (err error) {
    	var errs []error
    	out := splitOutput(outStr, wantAuto)
    	// Cut directory name.
    	for i := range out {
    		for j := 0; j < len(fullshort); j += 2 {
    			full, short := fullshort[j], fullshort[j+1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 01:02:40 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. src/cmd/internal/testdir/testdir_test.go

    	// Cut directory name.
    	for i := range out {
    		for j := 0; j < len(fullshort); j += 2 {
    			full, short := fullshort[j], fullshort[j+1]
    			out[i] = strings.Replace(out[i], full, short, -1)
    		}
    	}
    
    	var want []wantedError
    	for j := 0; j < len(fullshort); j += 2 {
    		full, short := fullshort[j], fullshort[j+1]
    		want = append(want, t.wantedErrors(full, short)...)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
Back to top