Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for TearDownAt (0.23 sec)

  1. pkg/volume/git_repo/git_repo.go

    // TearDown simply deletes everything in the directory.
    func (c *gitRepoVolumeUnmounter) TearDown() error {
    	return c.TearDownAt(c.GetPath())
    }
    
    // TearDownAt simply deletes everything in the directory.
    func (c *gitRepoVolumeUnmounter) TearDownAt(dir string) error {
    	return volumeutil.UnmountViaEmptyDir(dir, c.plugin.host, c.volName, wrappedVolumeSpec(), c.podUID)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. pkg/volume/nfs/nfs.go

    	}
    	return nil
    }
    
    var _ volume.Unmounter = &nfsUnmounter{}
    
    type nfsUnmounter struct {
    	*nfs
    }
    
    func (c *nfsUnmounter) TearDown() error {
    	return c.TearDownAt(c.GetPath())
    }
    
    func (c *nfsUnmounter) TearDownAt(dir string) error {
    	// Use extensiveMountPointCheck to consult /proc/mounts. We can't use faster
    	// IsLikelyNotMountPoint (lstat()), since there may be root_squash on the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. pkg/volume/secret/secret.go

    type secretVolumeUnmounter struct {
    	*secretVolume
    }
    
    var _ volume.Unmounter = &secretVolumeUnmounter{}
    
    func (c *secretVolumeUnmounter) TearDown() error {
    	return c.TearDownAt(c.GetPath())
    }
    
    func (c *secretVolumeUnmounter) TearDownAt(dir string) error {
    	return volumeutil.UnmountViaEmptyDir(dir, c.plugin.host, c.volName, wrappedVolumeSpec(), c.podUID)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top