github.com/cyverse/go-irodsclient@v0.13.2/irods/common/constants.go (about) 1 package common 2 3 // constants 4 const ( 5 // VERSION 6 IRODSVersionRelease string = "4.3.0" 7 IRODSVersionAPI string = "d" 8 9 // Magic Numbers 10 MaxQueryRows int = 500 11 MaxPasswordLength int = 50 12 MaxNameLength int = 64 13 ReadWriteBufferSize int = 1024 * 1024 * 4 // 4MB 14 15 /* 16 MAX_SQL_ATTR int = 50 17 MAX_PATH_ALLOWED int = 1024 18 MAX_NAME_LEN int = MAX_PATH_ALLOWED + 64 19 MAX_SQL_ROWS int = 256 20 */ 21 )