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
/** Parse a JSON string to a JX expression. @param str A null-terminated C string containing JSON data. @return A JX expression which must be deleted with @ref jx_delete. If the parse fails or no JSON value is present, null is returned. */
32
32
structjx*jx_parse_string( constchar*str );
33
33
34
-
/** Parse a JSON string to a JX expression. @param str An unterminated string containing JSON data. @param Length of the string in bytes. @return A JX expression which must be deleted with @ref jx_delete. If the parse fails or no JSON value is present, null is returned. */
34
+
/** Parse a JSON string to a JX expression. @param str An unterminated string containing JSON data. @param length of the string in bytes. @return A JX expression which must be deleted with @ref jx_delete. If the parse fails or no JSON value is present, null is returned. */
/** Parse a standard IO stream to a JX expression. @param file A stream containing JSON data. @return A JX expression which must be deleted with @ref jx_delete. If the parse fails or no JSON value is present, null is returned. */
Copy file name to clipboardExpand all lines: taskvine/src/bindings/python3/ndcctools/taskvine/task.py
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -339,6 +339,7 @@ def add_feature(self, name):
339
339
# @param self Reference to the current task object.
340
340
# @param file A file object of class @ref ndcctools.taskvine.file.File, such as from @ref ndcctools.taskvine.manager.Manager.declare_file, @ref ndcctools.taskvine.manager.Manager.declare_buffer, @ref ndcctools.taskvine.manager.Manager.declare_url, etc.
341
341
# @param remote_name The name of the file at the execution site.
342
+
# @param mount_symlink Whether to mount file in task's sandbox as a symlink. The default (False) mounts it as a hard link.
342
343
# @param strict_input Whether the file should be transfered to the worker
343
344
# for execution. If no worker has all the input files already cached marked
0 commit comments