Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for _TestRemoveAllLarge_ (0.3 sec)

  1. src/os/removeall_test.go

    func TestRemoveAllLarge(t *testing.T) {
    	if testing.Short() {
    		t.Skip("skipping in short mode")
    	}
    	t.Parallel()
    
    	tmpDir := t.TempDir()
    	path := filepath.Join(tmpDir, "_TestRemoveAllLarge_")
    
    	// Make directory with 1000 files and remove.
    	if err := MkdirAll(path, 0777); err != nil {
    		t.Fatalf("MkdirAll %q: %s", path, err)
    	}
    	for i := 0; i < 1000; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:21:29 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top