Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for available (0.18 sec)

  1. cmd/object-handlers.go

    					return
    				}
    				w.Header()[xhttp.MinIOTaggingProxied] = []string{"true"}
    				writeSuccessResponseHeadersOnly(w)
    				// when tagging is proxied, the object version is not available to return
    				// as header in the response, or ObjectInfo in the notification event.
    				sendEvent(eventArgs{
    					EventName:    event.ObjectCreatedPutTagging,
    					BucketName:   bucket,
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu May 02 20:15:54 GMT 2024
    - 125.2K bytes
    - Viewed (0)
  2. cmd/metrics-v2.go

    	}
    }
    
    func getNodeDriveFreeBytesMD() MetricDescription {
    	return MetricDescription{
    		Namespace: nodeMetricNamespace,
    		Subsystem: driveSubsystem,
    		Name:      freeBytes,
    		Help:      "Total storage available on a drive",
    		Type:      gaugeMetric,
    	}
    }
    
    func getClusterDrivesOfflineTotalMD() MetricDescription {
    	return MetricDescription{
    		Namespace: clusterMetricNamespace,
    		Subsystem: driveSubsystem,
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 132.6K bytes
    - Viewed (0)
  3. cmd/bucket-replication.go

    // ARN
    func (s *replicationResyncer) resyncBucket(ctx context.Context, objectAPI ObjectLayer, heal bool, opts resyncOpts) {
    	select {
    	case <-s.workerCh: // block till a worker is available
    	case <-ctx.Done():
    		return
    	}
    
    	resyncStatus := ResyncFailed
    	defer func() {
    		s.markStatus(resyncStatus, opts, objectAPI)
    		globalSiteResyncMetrics.incBucket(opts, resyncStatus)
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 112.2K bytes
    - Viewed (1)
  4. cmd/admin-handlers.go

    	capacityNeeded := uint64(concurrent * size)
    	capacity := GetTotalUsableCapacityFree(storageInfo.Disks, storageInfo)
    
    	if capacity < capacityNeeded {
    		return false, false, fmt.Sprintf("not enough usable space available to perform speedtest - expected %s, got %s",
    			humanize.IBytes(capacityNeeded), humanize.IBytes(capacity))
    	}
    
    	// Verify if we can employ autotune without running out of capacity,
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 29 17:39:04 GMT 2024
    - 97.8K bytes
    - Viewed (2)
Back to top