Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for status (0.17 sec)

  1. cmd/server_test.go

    	c.Assert(err, nil)
    	// assert the HTTP response status code.
    	c.Assert(response.StatusCode, http.StatusOK)
    
    	// initiate anonymous HTTP request to fetch the object which does not exist. We need to return AccessDenied.
    	response, err = s.client.Get(getGetObjectURL(s.endPoint, bucketName, objectName+".1"))
    	c.Assert(err, nil)
    	// assert the http response status code.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 108K bytes
    - Viewed (0)
  2. cmd/object-handlers.go

    			// permission.
    			// * If you have the s3:ListBucket permission
    			//   on the bucket, Amazon S3 will return an
    			//   HTTP status code 404 ("no such key")
    			//   error.
    			// * if you don’t have the s3:ListBucket
    			//   permission, Amazon S3 will return an HTTP
    			//   status code 403 ("access denied") error.`
    			if globalPolicySys.IsAllowed(policy.BucketPolicyArgs{
    				Action:          policy.ListBucketAction,
    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/metrics-v2.go

    		Subsystem: "health",
    		Name:      "status",
    		Help:      "Get current cluster health status",
    		Type:      gaugeMetric,
    	}
    }
    
    func getClusterErasureSetHealthStatusMD() MetricDescription {
    	return MetricDescription{
    		Namespace: clusterMetricNamespace,
    		Subsystem: "health",
    		Name:      "erasure_set_status",
    		Help:      "Get current health status for this erasure set",
    		Type:      gaugeMetric,
    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)
  4. cmd/site-replication.go

    			return errSRInvalidRequest(errInvalidArgument)
    		}
    		userReq := *change.UserReq
    		if userReq.Status != "" && userReq.SecretKey == "" {
    			// Status is set without secretKey updates means we are
    			// only changing the account status.
    			_, err = globalIAMSys.SetUserStatus(ctx, change.AccessKey, userReq.Status)
    		} else {
    			// We don't allow internal user creation with LDAP enabled for now
    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/bucket-replication.go

    	ReplicationReset = "replication-reset"
    	// ReplicationStatus has internal replication status - stringified representation of target's replication status for all replication
    	// activity initiated from this cluster
    	ReplicationStatus = "replication-status"
    	// ReplicationTimestamp - the last time replication was initiated on this cluster for this object version
    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)
  6. internal/s3select/csv/testdata/testdata.zip

    -73.863739013671875 40.732749938964844 -73.76513671875 40.718353271484375 3 6.70 20.5 0.5 0.5 0 0 21.5 1 196 131 green 0.04 0.0 0.0 62 37 5.37 1288 717.02 4 Queens 071702 4071702 I QN18 Rego Park 4108 1380 478 4 Queens 047800 4047800 I QN06 Jamaica Estates-Holliswood 4106 3389335 2 2014-03-15 17:23:01 2014-03-15 17:32:25 N 1 -73.864006042480469 40.732711791992188 -73.896461486816406 40.735050201416016 3 2.22 9.5 0 0.5 0 0 10 2 1 196 157 green 0.00 0.0 0.0 58 42 8.95 1288 717.02 4 Queens 071702 4071702...
    ZIP Archive
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Jun 01 21:59:40 GMT 2021
    - 111.6K bytes
    - Viewed (0)
  7. cmd/admin-handlers.go

    			Decrypt:  result.Decrypt,
    			Version:  result.Version,
    		})
    	}
    
    	return stats
    }
    
    func targetStatus(ctx context.Context, h logger.Target) madmin.Status {
    	if h.IsOnline(ctx) {
    		return madmin.Status{Status: string(madmin.ItemOnline)}
    	}
    	return madmin.Status{Status: string(madmin.ItemOffline)}
    }
    
    // fetchLoggerDetails return log info
    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)
  8. cmd/object-handlers_test.go

    							reqType, test.expectedErr.Code, errXML.Code)
    					}
    					// in case error is not expected response status should be 200OK.
    				} else if rec.Code != http.StatusOK {
    					t.Errorf("%s, Expected to succeed with response HTTP status 200OK, but failed with HTTP status code %d.", reqType, rec.Code)
    				}
    			}
    		})
    	}
    
    	// Test for Anonymous/unsigned http request.
    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