Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for maksimum (0.47 sec)

  1. cmd/metrics-v2.go

    		Name:      maxInQueueCount,
    		Help:      "Maximum number of objects queued for replication since server start",
    		Type:      gaugeMetric,
    	}
    }
    
    func getClusterReplMaxQueuedBytesMD() MetricDescription {
    	return MetricDescription{
    		Namespace: clusterMetricNamespace,
    		Subsystem: replicationSubsystem,
    		Name:      maxInQueueBytes,
    		Help:      "Maximum number of bytes queued for replication since server start",
    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)
  2. cmd/object-handlers.go

    		reqInfo.BucketName = srcBucket
    		reqInfo.ObjectName = srcObject
    		writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    	defer gr.Close()
    	srcInfo := gr.ObjInfo
    
    	// maximum Upload size for object in a single CopyObject operation.
    	if isMaxObjectSize(srcInfo.Size) {
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrEntityTooLarge), r.URL)
    		return
    	}
    
    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)
  3. cmd/site-replication.go

    	MaxBuckets        int                             // maximum buckets seen across sites
    	MaxUsers          int                             // maximum users seen across sites
    	MaxGroups         int                             // maximum groups seen across sites
    	MaxPolicies       int                             // maximum policies across sites
    	MaxILMExpiryRules int                             // maximum ILM expiry rules across sites
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 184.2K bytes
    - Viewed (1)
  4. cmd/admin-handlers.go

    	enc := json.NewEncoder(w)
    	if err := enc.Encode(madmin.NetperfResult{NodeResults: results}); err != nil {
    		return
    	}
    }
    
    // ObjectSpeedTestHandler - reports maximum speed of a cluster by performing PUT and
    // GET operations on the server, supports auto tuning by default by automatically
    // increasing concurrency and stopping when we have reached the limits on the
    // system.
    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)
  5. cmd/object-handlers_test.go

    			secretKey:          credentials.SecretKey,
    			expectedRespStatus: http.StatusBadRequest,
    			wantAPICode:        "InvalidDigest",
    		},
    		// Test Case with object greater than maximum allowed size.
    		4: {
    			bucketName:         bucketName,
    			objectName:         objectName,
    			data:               bytesData,
    			dataLen:            len(bytesData),
    			accessKey:          credentials.AccessKey,
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 160K bytes
    - Viewed (0)
Back to top