search for: lasterr

Displaying 6 results from an estimated 6 matches for "lasterr".

2006 Dec 30
2
Evaluating Entire Matlab code at a time
...ent>, > "evaluate.Matlab(matlab, "swissroll")" = <environment>, : > > [2006-12-30 11:58:32] Exception: MatlabException: Undefined function or > variable 'lle'. > at throw(Exception(...)) > at throw.default("MatlabException: ", lasterr) > at throw("MatlabException: ", lasterr) > at readResult.Matlab(this) > at readResult(this) > at evaluate.Matlab(matlab, "swissroll") > at evaluate(matlab, "swissroll") > > // Here another matlab window titled "Figure no.1&quot...
2008 Mar 17
0
R.matlab errors and slow con
...aluate(matlab, "[w,a]=dice(1000);")" = <environment>, : [2008-03-17 17:56:04] Exception: MatlabException: Undefined function or method ' unidrnd' for input arguments of type 'double'. at throw(Exception(...)) at throw.default("MatlabException: ", lasterr) at throw("MatlabException: ", lasterr) at readResult.Matlab(this) at readResult(this) at evaluate.Matlab(matlab, "[w,a]=dice(1000);") at evaluate(matlab, "[w,a]=dice(1000);") Also, can one use this package to call objects generated in Matlab using various t...
2017 Jan 12
3
proposed change to ssh_connect_direct()
On Sat, Jan 7, 2017 at 2:30 PM, Peter Moody <mindrot at hda3.com> wrote: > so I spent a bit of time looking at this and it seems like the only > way to go, at least if I want to keep it in ssh_connect_direct(), is > to use pthreads. further, it seems like getting that accepted is > something of a long shot: Sorry, pthreads is a non-starter. I would have thought that using
2009 Aug 03
1
use gnulib, and begin to pass its "make syntax-check" tests
...;s/\// /g;s/^#/\//;p'` - shift - - pathcomp= - for d - do - pathcomp="$pathcomp$d" - case $pathcomp in - -*) pathcomp=./$pathcomp ;; - esac - - if test ! -d "$pathcomp"; then - echo "mkdir $pathcomp" - - mkdir "$pathcomp" || lasterr=$? - - if test ! -d "$pathcomp"; then - errstatus=$lasterr - else - if test ! -z "$dirmode"; then - echo "chmod $dirmode $pathcomp" - lasterr="" - chmod "$dirmode" "$pathcomp" || lasterr=$? - - if test ! -z &q...
2019 Mar 15
0
Wine release 4.4
...nu with Wine-Mono 4.7.5 or earlier 39606 Infinite loop in StackWalk64 41226 Sound effects play at incorrect volume in Halo PC and Halo Custom Edition 42939 NOX App Player v3.8.x (Android Emulator) fails in post-installation step (VirtualBox COM Server raises assert: failed to set self TLS. lasterr=87 thread 'CGMgr') 42982 Bayonetta can't save settings 43071 Bayonetta can't read its "system_data" config file 43851 Monkey Island Special Edition Collection: Installer crashes on the first run 44423 Office 2007/2010 32bit - links not working 44793 Epic Gam...
2013 Jul 12
14
[LLVMdev] [Proposal] Parallelize post-IPO stage.
...ile = FileMgr.CreateObjFile(FN.c_str())); + } +} + + +bool IPOPartition::SaveBitCode() { + if (!Mod) { + // the bit-code have already saved in disk + return true; + } + + IPOFile &F = getIRFile(); + if (F.ErrOccur()) + return false; + + raw_fd_ostream OF(F.getPath().c_str(), F.getLastErrStr(), + raw_fd_ostream::F_Binary); + WriteBitcodeToFile(Mod, OF); + OF.close(); + + Mod = 0; + delete Ctx; + Ctx = 0; + + return !F.ErrOccur(); +} + +bool IPOPartition::LoadBitCode() { + if (Mod) + return true; + + IPOFile &F = getIRFile(); + if (F.ErrOccur()) +...