Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ResetLog (0.22 sec)

  1. pkg/volume/nfs/nfs_test.go

    		t.Errorf("Mount was not called exactly one time. It was called %d times.", len(log))
    	} else {
    		if log[0].Action != mount.FakeActionMount {
    			t.Errorf("Unexpected mounter action: %#v", log[0])
    		}
    	}
    	fake.ResetLog()
    
    	unmounter, err := plug.(*nfsPlugin).newUnmounterInternal("vol1", types.UID("poduid"), fake)
    	if err != nil {
    		t.Errorf("Failed to make a new Unmounter: %v", err)
    	}
    	if unmounter == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 01 15:56:32 UTC 2022
    - 9K bytes
    - Viewed (0)
  2. pkg/volume/emptydir/empty_dir_test.go

    		(log[0].Action != mount.FakeActionMount || (log[0].FSType != "tmpfs" && log[0].FSType != "hugetlbfs")) {
    		t.Errorf("Unexpected physicalMounter action during setup: %#v", log[0])
    	}
    	physicalMounter.ResetLog()
    
    	// Make an unmounter for the volume
    	teardownMedium := v1.StorageMediumDefault
    	if config.medium == v1.StorageMediumMemory {
    		teardownMedium = v1.StorageMediumMemory
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 30.7K bytes
    - Viewed (0)
Back to top