Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for dirPodMap (0.1 sec)

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

    // Dir -> ID (for convenience)
    var dirQuotaMap = make(map[string]common.QuotaID)
    
    // ID -> pod
    var quotaPodMap = make(map[common.QuotaID]types.UID)
    
    // Directory -> pod
    var dirPodMap = make(map[string]types.UID)
    
    // Backing device -> applier
    // This is *not* cleaned up; its size will be bounded.
    var devApplierMap = make(map[string]common.LinuxVolumeQuotaApplier)
    
    // Directory -> applier
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 07 08:07:51 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  2. pkg/volume/util/fsquota/quota_linux_test.go

    	}
    	fmt.Printf("    Map quotaPodMap contents:\n")
    	for key, val := range quotaPodMap {
    		fmt.Printf("        %v -> %v\n", key, val)
    	}
    	fmt.Printf("    Map dirPodMap contents:\n")
    	for key, val := range dirPodMap {
    		fmt.Printf("        %v -> %v\n", key, val)
    	}
    	fmt.Printf("    Map devApplierMap contents:\n")
    	for key, val := range devApplierMap {
    		fmt.Printf("        %v -> %v\n", key, val)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
Back to top