search for: reinvoke

Displaying 20 results from an estimated 20 matches for "reinvoke".

2006 Jul 20
3
How do I modify an exported function in a locked environment?
...t;- 100 * cumsum(y)/k save the file and exit the R.app GUI editor. But this does not update the exported copy of the function (the documentation for fixInNamespace says this is the case) - how do I accomplish this last step? If I list the function after editing, I see the original copy. But if I reinvoke the editor via fixInNamespace(), I do see my modification. Where is my copy residing? How do I push it out to replace the exported copy? Is this the proper way to modify a package function? Are there other ways? I've searched webpages, R news, help files and have been unable to find out how...
2006 Jul 20
3
How do I modify an exported function in a locked environment?
...t;- 100 * cumsum(y)/k save the file and exit the R.app GUI editor. But this does not update the exported copy of the function (the documentation for fixInNamespace says this is the case) - how do I accomplish this last step? If I list the function after editing, I see the original copy. But if I reinvoke the editor via fixInNamespace(), I do see my modification. Where is my copy residing? How do I push it out to replace the exported copy? Is this the proper way to modify a package function? Are there other ways? I've searched webpages, R news, help files and have been unable to find out how...
2014 Jun 03
2
[LLVMdev] How much memory clang llvm needs for debug compiling?
...InitLexer()? And I really can't find > any entry point to clang/lib/*.cpp files within help of SourceInsight > code view start from llvm/tools/clang/tools/driver/driver.cpp main() > function. > > What's wrong with me? > You need to use the -cc1 option that clang is being reinvoked with, use the -v option on your original command line to take a look at it. Also, if you're just doing development you don't need to install the binary. The clang in build/Debug+Asserts/bin/clang will work just fine. -eric
2002 Nov 20
2
restart
....errors" is called, the flag is reset to FALSE and there's an attempt to evaluate the expression given in "i". If there are no errors in evaluation, then the global flag is reset to TRUE before "eval.catching.errors" exits. Otherwise, "eval.catching.errors" is reinvoked (thanks to "restart" catching the error) and exits with the global flag set to FALSE. Subsequent debugger code inspects the status of the global flag to decide what happens next. The problem with changing restart( TRUE) j <- eval( i, envir=envir) into j <- try( eval( i,...
2009 Oct 30
0
[LLVMdev] windows build
thanks for the help ..I could build it with cmake generated project files Being a newbie with cmake one question, is it equivalent to configure in windows environment and so would need to be run everytime I change the source location ? thanks shrey On Wed, Oct 28, 2009 at 4:31 PM, shreyas krishnan <shreyas76 at gmail.com> wrote: > done > >
2007 Jul 09
0
Tbird-DC state problem
...doing some guinea-pig use of DC just ran into the following situation: 1) He brings up SeaMonkey 2) About 30 minutes later, he's in the middle of some involved messaging, mistakenly hits the redX in the top right of the SeaMonkey window, knocking himself out of SeaMonkey. 3) He immediately reinvokes SeaMonkey, all appeared to be OK Viewed some e-mail and some web page references, tries to send a message and then the Send hung for a time with a message "Sending Authenticate Info"..after some minutes, a new E-mail window appeared stating the "Server reported a timeout". A...
2010 Mar 20
0
[LLVMdev] 2.7 Pre-release1 available for testing
Ah, thanks... curious, that set of instructions recommends running make in place (in the combined llvm directory), instead of in a separate directory as when building llvm without clang. Anyway, following those instructions (substituting unpacking the tar files for the svn checkout) gets me a .sln file (the resulting makefile doesn't work, but the .sln does), in which the build all command
2009 Oct 28
2
[LLVMdev] windows build
done http://llvm.org/bugs/show_bug.cgi?id=5331 shrey On Wed, Oct 28, 2009 at 3:29 PM, Óscar Fuentes <ofv at wanadoo.es> wrote: > shreyas krishnan <shreyas76 at gmail.com> writes: > >>     I am running into bunch of windows build issues. Can someone >> please provide help on what might be going wrong >> >> >>
2010 Mar 20
2
[LLVMdev] 2.7 Pre-release1 available for testing
Russell Wallace <russell.wallace at gmail.com> writes: > Okay; it doesn't seem to build with cmake, though? > > C:\d\clang>\cmake-2.8.0-win32-x86\bin\cmake.exe c:\d\clang-2.7 > -- Building for: NMake Makefiles Follow the instructions for building clang: http://clang.llvm.org/get_started.html [snip]
2014 Jun 02
2
[LLVMdev] How much memory clang llvm needs for debug compiling?
Hi, > What should I do to make debug enabled compiling successful? Anyone > can tell me a tiny configuration which can save memory? I only have 3G > RAM, Ubuntu kylin. 3GB is probably going to be painful no matter what you do, but there are a few things to try. First, you could switch to ld.gold instead of ld.bfd. It uses much less memory when linking. It can also be helpful to reduce
2010 Mar 20
2
[LLVMdev] 2.7 Pre-release1 available for testing
...m, do you have c:/llvm/tools/clang/CMakeLists.txt ? If that is not present, most likely your clang setup is wrong. The LLVM cmake build test for the presence of the above file and, if found, automatically builds clang. If the test fails, clang is ignored. Once you have clang on the right place, reinvoke cmake from the top LLVM source directory again so it notices the presence of clang. Use the same command line you used for the first cmake invocation.
2012 Jul 04
1
[LLVMdev] Correct Way to Build an LLVM Pass
Hi; I wrote an LLVM transformation pass and I put my code inside the llvm-src/lib/Transforms/my-pass directory. I want to know what is the correct method for compiling it and building my plugin for the pass. After reading the http://llvm.org/docs/WritingAnLLVMPass.html page, I felt that I have to keep my pass inside the above said directory. But when I run make from inside my-pass directory
2010 Jan 04
0
[LLVMdev] ASM output with JIT / codegen barriers
Responding to the original email... On Sun, Jan 3, 2010 at 10:10 PM, James Y Knight <foom at fuhm.net> wrote: > In working on an LLVM backend for SBCL (a lisp compiler), there are > certain sequences of code that must be atomic with regards to async > signals. Can you define exactly what 'atomic with regards to async signals' this entails? Your descriptions led me to think
2007 May 09
3
No authentication sockets found
Thunderbird (2.0) is all of a sudden checking mail server capabilities and keep posting a popup saying: "Mail Server imap.bard.edu is not an IMAP4 mail server". To the best of my knowledge, neither Tbird nor DC have been updated, though the DC imap host was rebooted today 3 hours ago. Any info on what this is about? DC is currently serving out of a special port and in evaluation
2015 Jun 04
2
[LLVMdev] [RFC] Ideas on improving Compiler-RT CMake
...PM, Reid Kleckner <rnk at google.com> wrote: > > I'm actually pretty leery of using the CMake cross-compiling support because it requires using multiple build directories with split build systems. We end up a situation where the parent build shells out to cmake and then recursively reinvokes the parent build system on the new build directory. Running cmake again in the first place is really slow (lots of test compiles in serial), and recursively invoking the build system leads to really bad job scheduling on all build systems other than 'make'. In particular, ninja shelling ou...
2015 Jun 01
4
[LLVMdev] [RFC] Ideas on improving Compiler-RT CMake
LLVMDev, PR 15732 is the umbrella tracking the progress of making the CMake build system feature equivalent to the autotools one. One of the biggest outstanding tasks is PR 21562, which I've been viewing more as a "We really need to fix how we build Compiler-RT." I've thought about this quite a bit, and I wanted to send out some of my ideas to get some feedback and have some
2010 Jan 04
2
[LLVMdev] ASM output with JIT / codegen barriers
...%do-interruption, label %continue continue: ret i64* %obj do-interruption: call void @do_pending_interrupt() br label %continue } A signal handler will check the thread-local @pseudo_atomic variable: if it was already set it will just change the value to 2 and return, waiting to be reinvoked by do_pending_interrupt at the end of the pseudo-atomic section. This is because it may get confused by the proto-object being built up in this code. This sequence that SBCL does today with its internal codegen is basically like: MOV <pseudo_atomic>, 1 [[do allocation, fill in object,...
2010 Jan 04
4
[LLVMdev] ASM output with JIT / codegen barriers
In working on an LLVM backend for SBCL (a lisp compiler), there are certain sequences of code that must be atomic with regards to async signals. So, for example, on x86, a single SUB on a memory location should be used, not a load/sub/store sequence. LLVM's IR doesn't currently have any way to express this kind of constraint (...and really, that's essentially impossible since
2019 Nov 22
8
Re: [PATCH nbdkit v2 03/10] python: Implement nbdkit API version 2.
On 11/22/19 1:53 PM, Richard W.M. Jones wrote: > To avoid breaking existing plugins, Python plugins wishing to use > version 2 of the API must opt in by declaring: > > def api_version(): > return 2 > > (Plugins which do not do this are assumed to want API version 1). Could we also permit the python code to declare a global variable instead of a function? But a
2009 Jan 28
2
t.test in a loop
Hi All, I've been having a little trouble with creating a loop that will run a a series of t.tests for inspection, Below is the code i've tried, and some checks i've looked at. I've used the get(paste()) idea as i was told previously that the use of the eval should try and be avoided. I've run a single syntax to check that my systax is correct and works without any problems