Set the file VOL connector for a file access property list
Procedure:
H5P_SET_VOL ( plist_id, new_vol_id, new_vol_info )
Signature:
herr_t H5Pset_vol ( hid_t plist_id, hid_t new_vol_id, const void *new_vol_info )
SUBROUTINE h5pset_vol_f(plist_id, new_vol_id, hdferr, new_vol_info)
IMPLICIT NONE
INTEGER(HID_T) , INTENT(IN) :: plist_id
INTEGER(HID_T) , INTENT(IN) :: new_vol_id
INTEGER , INTENT(OUT) :: hdferr
TYPE(C_PTR) , OPTIONAL :: new_vol_info
END SUBROUTINE h5pset_vol_f
Parameters:
hid_t plist_id | IN: File access property list |
hid_t new_vol_id | IN: VOL connector identifier |
const void *new_vol_info | IN: Optional VOL information |
Description:
H5P_SET_VOL sets the VOL connector new_vol_id
for a file access property list plist_id
using the (optional) VOL information in new_vol_info
.
Returns:
Returns a non-negative on success and a negative value on failure.
Example:
Include Bitbucket Server for Confluence: An error occured
Connection to Bitbucket Server could not be established. Verify that you have properly configured the Bitbucket Server application link for your Confluence space and that your Bitbucket Server instance is up and running. Error details: javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
History:
Release | Change |
---|
1.12.0 | Function introduced in this release. |
--- Last Modified: March 17, 2020 | 02:48 PM