Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for formatEntry (0.08 sec)

  1. src/testing/fstest/testfs.go

    		if entry1 == nil {
    			checkMode(entry2)
    			diffs = append(diffs, "+ "+formatEntry(entry2))
    			continue
    		}
    		if formatEntry(entry1) != formatEntry(entry2) {
    			diffs = append(diffs, "- "+formatEntry(entry1), "+ "+formatEntry(entry2))
    		}
    		delete(old, entry2.Name())
    	}
    	for _, entry1 := range old {
    		diffs = append(diffs, "- "+formatEntry(entry1))
    	}
    
    	if len(diffs) == 0 {
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
Back to top