Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for express (0.17 sec)

  1. cmd/api-errors.go

    	},
    	ErrMalformedExpires: {
    		Code:           "AuthorizationQueryParametersError",
    		Description:    "X-Amz-Expires should be a number",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrNegativeExpires: {
    		Code:           "AuthorizationQueryParametersError",
    		Description:    "X-Amz-Expires must be non-negative",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrAuthHeaderEmpty: {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun May 05 16:56:21 GMT 2024
    - 91.4K bytes
    - Viewed (7)
  2. docs/metrics/prometheus/grafana/minio-dashboard.json

              "intervalFactor": 1,
              "legendFormat": "",
              "metric": "process_start_time_seconds",
              "refId": "A",
              "step": 60
            }
          ],
          "title": "Total S3 Egress",
          "type": "stat"
        },
        {
          "datasource": {
            "type": "prometheus",
            "uid": "${DS_PROMETHEUS}"
          },
          "description": "",
          "fieldConfig": {
    Json
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 15 10:03:01 GMT 2024
    - 93K bytes
    - Viewed (2)
  3. cmd/test-utils_test.go

    	d := UTCNow()
    	// Find epoch expires when the request will expire.
    	epochExpires := d.Unix() + expires
    
    	// Add expires header if not present.
    	expiresStr := req.Header.Get("Expires")
    	if expiresStr == "" {
    		expiresStr = strconv.FormatInt(epochExpires, 10)
    		req.Header.Set("Expires", expiresStr)
    	}
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 17:26:51 GMT 2024
    - 76.2K bytes
    - Viewed (0)
  4. cmd/object-api-datatypes_gen.go

    			z.ContentEncoding, bts, err = msgp.ReadStringBytes(bts)
    			if err != nil {
    				err = msgp.WrapError(err, "ContentEncoding")
    				return
    			}
    		case "Expires":
    			z.Expires, bts, err = msgp.ReadTimeBytes(bts)
    			if err != nil {
    				err = msgp.WrapError(err, "Expires")
    				return
    			}
    		case "CacheControl":
    			z.CacheControl, bts, err = msgp.ReadStringBytes(bts)
    			if err != nil {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Mar 08 19:08:18 GMT 2024
    - 69.8K bytes
    - Viewed (0)
  5. cmd/batch-handlers.go

    		VersionID:                 objInfo.VersionID,
    		IsLatest:                  objInfo.IsLatest,
    		DeleteMarker:              objInfo.IsDeleteMarker,
    		ContentType:               objInfo.ContentType,
    		Expires:                   objInfo.Expires,
    		StorageClass:              objInfo.StorageClass,
    		ReplicationStatusInternal: objInfo.ReplicationStatus,
    		UserTags:                  tags.String(),
    	}
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun May 05 16:56:21 GMT 2024
    - 55.2K bytes
    - Viewed (0)
  6. cmd/bucket-handlers.go

    					Key:          objInfo.Name,
    					Bucket:       objInfo.Bucket,
    					ETag:         getDecryptedETag(formValues, objInfo, false),
    					ModTime:      objInfo.ModTime,
    					Expires:      objInfo.Expires.UTC().Format(http.TimeFormat),
    					CacheControl: objInfo.CacheControl,
    					Metadata:     cleanReservedKeys(objInfo.UserDefined),
    					Size:         asize,
    				})
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 25 16:27:27 GMT 2024
    - 61.6K bytes
    - Viewed (0)
Back to top