You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Validate the contiguous string buffer with correct format and parse string elements into list of pairs of memory address and length. Note the returned list of pairs points to valid memory as long as memory pointed by buffer remains allocated.
676
-
/// <int32_len><bytes>...<int32_len><bytes>.
677
-
/// @param buffer The pointer to the contiguous string buffer.
678
-
/// @param buffer_byte_size The size of the buffer in bytes.
679
-
/// @param expected_element_cnt The number of expected string elements.
680
-
/// @param input_name The name of the input buffer.
681
-
/// @param str_list Returns pairs of address and length of parsed strings.
682
-
/// @return a TRITONSERVER_Error indicating success or failure.
675
+
/// Validate the contiguous string buffer with correct format
676
+
/// <int32_len><bytes>...<int32_len><bytes> and parse string
677
+
/// elements into list of pairs of memory address and length.
678
+
/// Note the returned list of pairs points to valid memory as long
679
+
/// as memory pointed by buffer remains allocated.
680
+
///
681
+
/// \param buffer The pointer to the contiguous string buffer.
682
+
/// \param buffer_byte_size The size of the buffer in bytes.
683
+
/// \param expected_element_cnt The number of expected string elements.
684
+
/// \param input_name The name of the input buffer.
685
+
/// \param str_list Returns pairs of address and length of parsed strings.
686
+
/// \return a TRITONSERVER_Error indicating success or failure.
0 commit comments