Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for batchJobMetric (0.17 sec)

  1. cmd/batchjobmetric_string.go

    var _batchJobMetric_index = [...]uint8{0, 11, 22, 28}
    
    func (i batchJobMetric) String() string {
    	if i >= batchJobMetric(len(_batchJobMetric_index)-1) {
    		return "batchJobMetric(" + strconv.FormatInt(int64(i), 10) + ")"
    	}
    	return _batchJobMetric_name[_batchJobMetric_index[i]:_batchJobMetric_index[i+1]]
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sat Dec 02 10:51:33 GMT 2023
    - 797 bytes
    - Viewed (0)
  2. cmd/batch-handlers.go

    	metrics map[string]*batchJobInfo
    }
    
    //msgp:ignore batchJobMetric
    //go:generate stringer -type=batchJobMetric -trimprefix=batchJobMetric $GOFILE
    type batchJobMetric uint8
    
    const (
    	batchJobMetricReplication batchJobMetric = iota
    	batchJobMetricKeyRotation
    	batchJobMetricExpire
    )
    
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Mon Apr 08 14:11:38 GMT 2024
    - 55.2K bytes
    - Viewed (0)
Back to top