search for: e634fbaed323aac88667e7826865b160r72

Displaying 3 results from an estimated 3 matches for "e634fbaed323aac88667e7826865b160r72".

2019 May 03
2
mccollect with NULL in R 3.6
...iling with an explicit error message whenever mccollect hits a NULL for consistency might help here instead of skipping "delivered.result <- delivered.result + 1L" when the returned value is not raw at https://github.com/wch/r-source/commit/f0d15be765dcf92e2349429428d49cd5b212abb4#diff-e634fbaed323aac88667e7826865b160R72 ? Or even better (at least for my use case), maybe allowing to return NULL and throwing the warning on line 108 in that case. Thanks for considering this, Gergely > > Best > Tomas > > > > > Thanks, > > Gergely > > > > [[alternative HTML version del...
2019 May 03
0
mccollect with NULL in R 3.6
...xplicit error message whenever mccollect > hits a NULL for consistency might help here instead of skipping > "delivered.result <- delivered.result + 1L" when the returned value is > not raw at https://github.com/wch/r-source/commit/f0d15be765dcf92e2349429428d49cd5b212abb4#diff-e634fbaed323aac88667e7826865b160R72 > ? Or even better (at least for my use case), maybe allowing to return > NULL and throwing the warning on line 108 in that case. Thanks for the report, I've fixed mccollect() in R-devel to return NULL from the job. To be ported to R-pathed unless problems appear. Best Tomas > >...
2019 Apr 30
2
mccollect with NULL in R 3.6
Dear All, I'm running into issues with calling mccollect on a list containing NULL using R 3.6 (this used to work in 3.5.3): jobs <- lapply( list(NULL, 'foobar'), function(x) mcparallel(identity(x))) mccollect(jobs, wait = FALSE, timeout = 0) #> Error in names(res) <- pnames[match(s, pids)] : #> 'names' attribute [2] must be the same length as the vector