similar to: restart w/o interrupting

Displaying 19 results from an estimated 19 matches similar to: "restart w/o interrupting"

2008 Apr 01
1
interrupting MOH
Hi all, I am hoping someone can help me out on this. I want to be able to interrupt MOH every X seconds after the DIAL command is executed. The interrupt greeting is something like "please wait while we transfer your call". How can I do that? Within the DIAL options, I can't see any announce frequency or options that can help. Could anyone please tell me how that function can
2013 Oct 23
1
interrupting Sweave leaves open sink connection
Hello, if I interrupt Sweave while it's processing a file it seemingly leaves an open sink connection that hides printed output. Can this be changed to reset the sink on exit? I've been baffled by this for years. This is seen in Windows (R Under development (unstable) (2013-10-20 r64082)) and an older Linux (R version 3.0.0 (2013-04-03)). Run the code below in two parts with a manual
2012 Feb 23
0
RcppProgress: progress monitoring and interrupting c++ code, request for comments
Hello, I just created a little package, RcppProgress, to display a progress bar to monitor the execution status of a C++ code loop, possibly multihreaded with OpenMP. I also implemented the possibility to check for user interruption, using the work-around by Simon Urbanek. I just uploaded the package on my R-forge project, so you should be able to get the package from
2009 Jan 02
1
interrupting R
Dear fellow R users, is there a generic way to gracefully interrupt an R function without terminating the entire session ? I am mainly interested in this answer for Linux and MacOS. I found neither Esc nor Ctrl-C to work; it seems that R does not check for signals periodically? Also, an entirely unrelated question: I have been looking unsuccessfully for the R sources for the examples given in
2015 Jan 16
0
Re: How do you force a VM reboot (when its KPd etc) without interrupting a blockcopy?
On 01/16/2015 10:21 AM, Scott Sullivan wrote: > My question is this: > > If you have an ongoing blockcopy (drive-mirror) of a running transient VM, and the VM kernel panics, can you restart the VM without interrupting the ongoing blockcopy? Sadly, this is not yet possible. There is work being done in upstream qemu to add persistent bitmap support, and the libvirt would have to be
2005 May 13
0
Re: Interrupting voicemail with "*", dropping to "a"
I'd be curious about this as well. In Asterisk version 1.0.7, it can't possibly work, unless my C reading skill is completely broken, because the voicemail app isn't listening for a "*" but only for a "#" or a "0". That's also true of /app_voicemail.c/1.203/Thu Mar 10 19:33:15 2005//D2005.03.10.08.00.00 For those interested, I've created a patch
2006 Jan 22
0
Interrupting ring to go to voicemail pickup -- How to ring after Answer()?
Hi, I've successfully used the 'd' flag in Dial() so that when I dial into my phone system from out there in the PSTN network I can press the 2 key while the phone is ringing to listen to my voicemail. It seems that one issue is that the public providers do not deliver DTMF, or anything, until the phone is answered. This is for security reasons and sounds like a good idea to me.
2006 Apr 03
2
Interrupting a call
Greetings all, I've tried out chanspy, but what I'm really looking for is the ability to interrupt a call (i.e. barge in for emergency purposes). Has anyone found a way to do that with Asterisk? Regards, Eric -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20060403/dfe6e99e/attachment.htm
2003 Mar 13
0
patch: interrupting ssh when it's asking for a password turns off echo in the shell
Here's another scratch for an itch I've been having with rsync (and there's also a Debian bug report about it). When doing: rsync -e ssh bla remote:foo if there's no ssh agent or such, ssh will ask for a password or passphrase. If you then hit ctrl-C, rsync will terminate, but the shell will not echo as rsync has killed ssh before ssh had a chance to restore the termio
2001 Sep 06
1
interrupting the sourcing of a file
Hi all I'm running lm()/leaps() kind of computations within a loop, and I submitted the entire thing by sourcing a file of R code in interactive mode. I'd like to interrupt the evaluation of this (it's taking way too long) but I am not able to. I'm running R-1.3.0 from an emacs window (ESS-5.0) and I'm on a linux box, (Debian). I tried Control-c Control-c (nothing happens),
2009 Oct 31
1
Interrupting Yum Update
Hi All, Quick question, I just finished googling and found the thread that is dealing with the rpmdup_remover.sh script, and thanks to everyone that was involved in this. I followed the following threads: http://www.opensubscriber.com/message/centos at centos.org/11086209.html http://www.centos.org/modules/newbb/viewtopic.php?viewmode=flat&topic_id=17166&forum=37 Which lead me to the
2005 May 12
3
Interrupting voicemail with "*", dropping to "a" extension. Does it work?
I've played around with the lightly documented Asterisk voicemail feature whereby a caller can press "*" during the playback of the OGM and be returned to the "a" extension in the context of the voicemail box. No matter what, Asterisk does nothing when you press "*". It does not interrupt the OGM and it certainly does not return to the "a" context.
2001 Aug 20
2
interrupting Sys.sleep (PR#1063)
On Linux R1.3.0 (and current pre1.3.1 and pre1.4.0) Sys.sleep(30) interrupt with CTRL-C Sys.sleep(30) causes a segmentation fault. It doesn't happen under Windows (2000). -thomas -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-devel mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or
2009 Jan 16
1
interrupting R from a GUI
list(...), I am looking for a way to interrupt R from a callback: specifically, to interrupt plotting (typically on a cairoDevice, but would be good if it worked with other devices too). Of course, one can interrupt R nicely from the console with Ctrl-C (or Esc in Rgui), but I need to do it from a GUI. Callbacks run in a new thread, so obviously stop() etc will not work. I tried to look into how
2012 Sep 28
2
Failure to zfs destroy - after interrupting zfs receive
Formerly, if you interrupted a zfs receive, it would leave a clone with a % in its name, and you could find it via "zdb -d" and then you could destroy the clone, and then you could destroy the filesystem you had interrupted receiving. That was considered a bug, and it was fixed, I think by Sun. If the lingering clone was discovered laying around, zfs would automatically destroy it.
2011 Apr 25
3
Interrupting C++ code execution
Hello, I am writing an R interface for one of my C++ programs. The computations in C++ are very time consuming (several hours), so the user needs to be able to interrupt them. Currently, the only way I found to do so is calling R_CheckUserInterrupt() frequently. Unfortunately, there are several problems with that: 1. Calling R_CheckUserInterrupt() interrupts immediately, so I have no
2015 Jan 16
3
How do you force a VM reboot (when its KPd etc) without interrupting a blockcopy?
My question is this: If you have an ongoing blockcopy (drive-mirror) of a running transient VM, and the VM kernel panics, can you restart the VM without interrupting the ongoing blockcopy? A virsh reboot won't work since if the VM is kernel panicked, its not going to respond to ACPI requests.
2003 Oct 10
4
1.8.0 on Unix: interrupting huge print()s ??
NEWS for R 1.8.0 has >> USER-VISIBLE CHANGES >> >> <......> >> >> o On Unix-like systems interrupt signals now set a flag that is >> checked periodically rather than calling longjmp from the >> signal handler. This is analogous to the behavior on Windows. >> This reduces responsiveness to interrupts but prevents bugs
2006 Jan 20
5
Height problem after interrupting SlideDown/SlideUp effects
Hi, i have a problem with the the SlideDown and SlideUp effects. Since a similiar problem is also visible on the script.aculo.us homepage, i''m going to explain it this way. - Go to http://script.aculo.us/ - On the main site below "visual effects", click "Advanced options", the sub panel will scroll down. - Hit the close button, and while the panel is still