Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for clearApplier (0.1 sec)

  1. pkg/volume/util/fsquota/quota_linux.go

    	return dirApplierMap[path]
    }
    
    func setApplier(path string, applier common.LinuxVolumeQuotaApplier) {
    	dirApplierLock.Lock()
    	defer dirApplierLock.Unlock()
    	dirApplierMap[path] = applier
    }
    
    func clearApplier(path string) {
    	dirApplierLock.Lock()
    	defer dirApplierLock.Unlock()
    	delete(dirApplierMap, path)
    }
    
    func setQuotaOnDir(path string, id common.QuotaID, bytes int64) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 07 08:07:51 UTC 2023
    - 14.1K bytes
    - Viewed (0)
Back to top