 Chromium Code Reviews
 Chromium Code Reviews Issue 2944633003:
  [milo] Add BuildSummary and common models.  (Closed)
    
  
    Issue 2944633003:
  [milo] Add BuildSummary and common models.  (Closed) 
  | OLD | NEW | 
|---|---|
| (Empty) | |
| 1 // Code generated by "stringer -type=Verbosity"; DO NOT EDIT. | |
| 2 | |
| 3 package resp | |
| 4 | |
| 5 import "fmt" | |
| 6 | |
| 7 const _Verbosity_name = "NormalHiddenInteresting" | |
| 8 | |
| 9 var _Verbosity_index = [...]uint8{0, 6, 12, 23} | |
| 10 | |
| 11 func (i Verbosity) String() string { | |
| 12 if i < 0 || i >= Verbosity(len(_Verbosity_index)-1) { | |
| 13 return fmt.Sprintf("Verbosity(%d)", i) | |
| 14 } | |
| 15 return _Verbosity_name[_Verbosity_index[i]:_Verbosity_index[i+1]] | |
| 16 } | |
| OLD | NEW |