Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for succeeded (0.16 sec)

  1. cmd/metrics-v2.go

    			Description: MetricDescription{
    				Namespace: clusterMetricNamespace,
    				Subsystem: kmsSubsystem,
    				Name:      kmsRequestsSuccess,
    				Help:      "Number of KMS requests that succeeded",
    				Type:      counterMetric,
    			},
    			Value: float64(metric.RequestOK),
    		})
    		metrics = append(metrics, MetricV2{
    			Description: MetricDescription{
    				Namespace: clusterMetricNamespace,
    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/server_test.go

    	c.Assert(err, nil)
    
    	response, err = s.client.Do(request)
    	c.Assert(err, nil)
    	verifyError(c, response, "BucketAlreadyOwnedByYou", "Your previous request to create the named bucket succeeded and you already own it.",
    		http.StatusConflict)
    }
    
    func (s *TestSuiteCommon) TestGetObjectLarge10MiB(c *check) {
    	// generate a random bucket name.
    	bucketName := getRandomBucketName()
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 108K bytes
    - Viewed (0)
  3. cmd/bucket-replication.go

    	// make sure we have the latest metadata for metrics calculation
    	rinfo.PrevReplicationStatus = objInfo.TargetReplicationStatus(tgt.ARN)
    
    	// use latest ObjectInfo to check if previous replication attempt succeeded
    	if objInfo.TargetReplicationStatus(tgt.ARN) == replication.Completed && !ri.ExistingObjResync.Empty() && !ri.ExistingObjResync.mustResyncTarget(tgt.ARN) {
    		rinfo.ReplicationStatus = replication.Completed
    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/site-replication.go

    		return nil
    	}
    
    	var success int
    	msgs := []string{}
    	for d, err := range errMap {
    		name := c.state.Peers[d].Name
    		if err == nil {
    			msgs = append(msgs, fmt.Sprintf("'%s' on site %s (%s): succeeded", actionName, name, d))
    			success++
    		} else {
    			msgs = append(msgs, fmt.Sprintf("'%s' on site %s (%s): failed(%v)", actionName, name, d, err))
    		}
    	}
    	if success == len(errMap) {
    		return nil
    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)
  5. cmd/object-handlers_test.go

    				getGetObjectURL("", bucketName, objectName), "", "")),
    			expectedRespStatus: http.StatusBadRequest,
    		},
    		// Test case - 7.
    		// Test case with proper parts.
    		// Should succeeded and the content in the response body is asserted.
    		{
    			bucket:    bucketName,
    			object:    objectName,
    			uploadID:  uploadIDs[0],
    			parts:     inputParts[4].parts,
    			accessKey: "Invalid-AccessID",
    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