Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for parseProjid (0.31 sec)

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

    		i, err := strconv.Atoi(match[1])
    		if err == nil {
    			return projectType{true, common.QuotaID(i), match[2], l}
    		}
    	}
    	return projectType{true, common.BadQuotaID, "", l}
    }
    
    func parseProjid(l string) projectType {
    	if match := projidParseRegexp.FindStringSubmatch(l); match != nil {
    		i, err := strconv.Atoi(match[2])
    		if err == nil {
    			return projectType{true, common.QuotaID(i), match[1], l}
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 10.6K bytes
    - Viewed (0)
Back to top