Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for parameters (0.58 sec)

  1. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrSSEEncryptedObject: {
    		Code:           "InvalidRequest",
    		Description:    "The object was stored using a form of Server Side Encryption. The correct parameters must be provided to retrieve the object.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun May 05 16:56:21 GMT 2024
    - 91.4K bytes
    - Viewed (6)
  2. cmd/test-utils_test.go

    	queryValue := url.Values{}
    	queryValue.Set("uploads", "")
    	return makeTestTargetURL(endPoint, bucketName, "", queryValue)
    }
    
    // return URL for listing pending multipart uploads with parameters.
    func getListMultipartUploadsURLWithParams(endPoint, bucketName, prefix, keyMarker, uploadIDMarker, delimiter, maxUploads string) string {
    	queryValue := url.Values{}
    	queryValue.Set("uploads", "")
    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)
  3. cmd/object-api-listobjects_test.go

    		{"test-bucket-list-object", "obj", "obj1", "", 1, resultCases[21], nil, true},
    		{"test-bucket-list-object", "new", "newPrefix0", "", 2, resultCases[22], nil, true},
    		// Testing with maxKeys set to 0 (46-52).
    		// The parameters have to valid.
    		{"test-bucket-list-object", "", "obj1", "", 0, ListObjectsInfo{}, nil, true},
    		{"test-bucket-list-object", "", "obj0", "", 0, ListObjectsInfo{}, nil, true},
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 11:07:40 GMT 2024
    - 73.1K bytes
    - Viewed (0)
  4. src/cmd/cgo/gcc.go

    	p := make([]*Type, len(dtype.ParamType))
    	gp := make([]*ast.Field, len(dtype.ParamType))
    	for i, f := range dtype.ParamType {
    		// gcc's DWARF generator outputs a single DotDotDotType parameter for
    		// function pointers that specify no parameters (e.g. void
    		// (*__cgo_0)()).  Treat this special case as void. This case is
    		// invalid according to ISO C anyway (i.e. void (*__cgo_1)(...) is not
    		// legal).
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  5. cmd/admin-handlers-users.go

    	}
    
    	writeSuccessResponseJSON(w, usageInfoJSON)
    }
    
    // InfoCannedPolicy - GET /minio/admin/v3/info-canned-policy?name={policyName}
    //
    // Newer API response with policy timestamps is returned with query parameter
    // `v=2` like:
    //
    // GET /minio/admin/v3/info-canned-policy?name={policyName}&v=2
    //
    // The newer API will eventually become the default (and only) one. The older
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 12:41:13 GMT 2024
    - 77.5K bytes
    - Viewed (0)
  6. tests/query_test.go

    			})
    		}
    	}
    
    	var none []User
    	if err := DB.Where("name in (?)", []string{}).Find(&none).Error; err != nil || len(none) != 0 {
    		t.Errorf("errors happened when query find with in clause and zero length parameter: %v, length: %v", err, len(none))
    	}
    }
    
    func TestQueryWithAssociation(t *testing.T) {
    Go
    - Registered: Sun May 05 09:35:13 GMT 2024
    - Last Modified: Thu Apr 25 12:22:53 GMT 2024
    - 49.8K bytes
    - Viewed (0)
  7. cmd/bucket-handlers.go

    	// Make sure that the URL does not contain object name.
    	if bucket != path.Clean(resource[1:]) {
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrMethodNotAllowed), r.URL)
    		return
    	}
    
    	// Here the parameter is the size of the form data that should
    	// be loaded in memory, the remaining being put in temporary files.
    	mp, err := r.MultipartReader()
    	if err != nil {
    		apiErr := errorCodes.ToAPIErr(ErrMalformedPOSTRequest)
    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