Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for MT (0.17 sec)

  1. cmd/metrics-v3-types.go

    	// HistogramMT - represents a histogram metric.
    	HistogramMT
    )
    
    func (mt MetricType) String() string {
    	switch mt {
    	case CounterMT:
    		return "counter"
    	case GaugeMT:
    		return "gauge"
    	case HistogramMT:
    		return "histogram"
    	default:
    		return "*unknown*"
    	}
    }
    
    func (mt MetricType) toProm() prometheus.ValueType {
    	switch mt {
    	case CounterMT:
    		return prometheus.CounterValue
    	case GaugeMT:
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Apr 30 15:05:22 GMT 2024
    - 14.7K bytes
    - Viewed (0)
  2. cmd/storage-datatypes.go

    	// Indicates if this object is still in V1 format.
    	XLV1 bool `msg:"v1"`
    
    	// Date and time when the file was last modified, if Deleted
    	// is 'true' this value represents when while was deleted.
    	ModTime time.Time `msg:"mt"`
    
    	// Total file size.
    	Size int64 `msg:"sz"`
    
    	// File mode bits.
    	Mode uint32 `msg:"m"`
    
    	// WrittenByVersion is the unix time stamp of the MinIO
    	// version that created this version of the object.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Apr 23 17:15:52 GMT 2024
    - 15.3K bytes
    - Viewed (0)
  3. cmd/xl-storage.go

    			Prefix: req.Prefix,
    			File:   f,
    		}
    		var data []byte
    		var mt time.Time
    		fullPath := pathJoin(volumeDir, req.Prefix, f)
    		w := xioutil.NewDeadlineWorker(globalDriveConfig.GetMaxTimeout())
    		if err := w.Run(func() (err error) {
    			if req.MetadataOnly {
    				data, mt, err = s.readMetadataWithDMTime(ctx, fullPath)
    			} else {
    				data, mt, err = s.readAllData(ctx, req.Bucket, volumeDir, fullPath, true)
    			}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 84.7K bytes
    - Viewed (0)
  4. cmd/testdata/xl-meta-merge.zip

    ñ¢G`CQäêñºjóFr¨<rfÂzZq¢»•ûk`Icjñ–}cxyW¸ñ@aS~fs(puTÌ ÇaNd²H‹r O¾bñÀ êkDEqH¸çìs²@D}êLqAŒ{V ÎyTt¢Z‹ Dt bf Ô™ŒÂÍ T{€ e@ ¼KòJˆ^\G†—QT ®…yxYs^wˆÖKKNGåZ_Pg~Wˆcp¸zøoºinNqTzyf¼ÆuNEcH ºº's\<àe 8› # 93 ' & Œ </ " %< H vW²|vÜt@_ ë£y#,Õ7js”icxãñ°sÈimT~gºxgÜNªXë¤mT_WÖq¤HriˆæRUG{I\„ÖkO}crïG¼K¾Ú9fg>þÖ iATiBèïÀ!$ š^ܵU} ôgrje’ª_ê„amCD¼2”+¼åGFVûzeCKÜuW¦|c¼xñt¾øÛJGˆ|Ìñ>¹” ©£Ž öÓâ üØÏ —yn ‘¸KaÖHsÖŽjYEÜœ°VøK¾ Sò 5ª {n}cvw†ëã9¾@ã}v¼Ü[†Pã\kfã K¾r^e„åYlòiAVyYx X[¦JrG†Íï|zwH°¨¿Kk´V~G†ø— ‘% /<”f¾sZPg~Wòicòt°Pã i 4*G^f„É„»...
    ZIP Archive
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Mar 08 17:50:48 GMT 2024
    - 30.2K bytes
    - Viewed (0)
Back to top