similar to: Custom Extension halting execution upon caller hanging up

Displaying 20 results from an estimated 4000 matches similar to: "Custom Extension halting execution upon caller hanging up"

2006 Nov 22
1
Probit analysis
Respected Sir/Madam, I have a question regarding calculation of LD50 (Lethal Dose) and IC50 (50% inhibitory concentration) of an antimicrobial experiment. I have used a compound isolated from a plant and observed its effect on the fungus *Fusarium oxysporum* by the food poisoning method. Solutions of the compound at concentrations of 0, 50, 100, 150, 200 and 250µg/ ml were added to
2006 Feb 20
1
Download "Asterisk: The Future Of Telephony" [More Info]
One thing I forgot to mention: I also cropped the registration and cut marks off the sides of the pages. If you want the uncropped version, get: http://www.alexburke.ca/asterisk-tfot-uncropped.pdf Sorry about the excessive noise, but I figured I should mention this. >Date: Mon, 20 Feb 2006 18:55:50 -0500 >To: asterisk-users@lists.digium.com >From: Alexander Burke
2006 Feb 20
2
Download "Asterisk: The Future Of Telephony"
Hello, list! I'm hosting a mirror of the book "Asterisk: The Future Of Telephony" by O'Reilly Press, published under the Creative Commons license; I believe this license allows me to do this, but if I'm mistaken, please let me know. I've taken the liberty of fixing the page numbers so Acrobat is now aware of the correct number of each page, and shrinking the
2006 Oct 15
1
Execution halting of lmer on UNIX when no problem on windows
Dear R-users, I have a frustrating problem that I am hoping has a simple fix. I am running a series of lmer models from the lme4 package of the general form: model<-lmer(y~x1 + x2 ..... + xn + (1|site),data=dataframe,family=poisson,method="Laplace",control=list(usePQL=FALSE,msVerbose=TRUE)) where the same model is executed multiple times on a bootstrapped dataframe. For each
2004 Sep 21
2
Anti Ex-Girlfriend feature for entire area codes?
Hey all, Someone's posted one of my 800#'s on a poster in California for free concert tickets, so I'm getting calls from California AC's at all times of the day asking for tickets. I'm just using the 800# for friends and family, and don't know anyone in these area codes, so I'd like to just give these callers either congestion or a prerecorded message. Works fine
2006 Feb 19
2
Asterisk on Solaris 10 (AMD Opteron, Sun Fire X2100)
Hello, world! I'm considering running Asterisk 1.2.4 on Solaris 10 on a Sun Fire X2100 server or two (Opteron CPU, nForce 4 chipset), and apparently this works. I've read that the Zaptel package won't work on anything other than Linux, since it's intended to hook into the Linux kernel in the form of a kernel module. This concerns me, since I've read that ztdummy, the
2007 May 30
0
host halts upon shutdown of 126000mb domains
The host server halts upon shutdown of 126000mb domU (64-bit SLES10). It booted fine and was able to run kernbench. However, during shutdown the host crashes. Host is Unisys ES7000 host with 32 processors and 128gb memory using x86_64 SLES10 with xen-unstable c/s 15080. Reducing the memory allocation for the domU to 124000mb works fine. My guess is that specifying 126000 does not leave
2006 Oct 27
1
Waiting before executing System command
Hello, all! I'm having a problem with the following snippet that executes upon hangup: exten => h,n,Wait(5) exten => h,n,System(mv /some/file /some/other/dir/) Wait() doesn't want to seem to wait! So instead I tried: exten => h,n,System(sleep 5; mv /tmp/${CALLFILENAME} /var/spool/asterisk/outgoing/) This only executes sleep, not mv. How can I make it wait before moving the
2005 Mar 09
1
Trouble with mixreg
Dear All I am trying to estimate a mixture of regression and get the following error using the mixreg package: Error in y - yhat : non-conformable arrays The instruction I used were: x <- as.matrix(LRHUN) y <- as.matrix(LRINTER) TS <- list(list(beta=c(3.0,1.0),sigsq=1,lambda=0.4), list(beta=c(0.0,1.0),sigsq=1,lambda=0.6)) prova <- mixreg(x,y, ncomp=2, theta.start=TS)
2013 Mar 13
1
Fwd: [bisected] nouveau failure with 3.9-rc1 and ongoing
Hiya, I sent the enclosed email to linux-kernel before realizing that it would, perhaps, be more proper to send it here, which I hereby do. I shall be happy to try out any and all patches. Best regards, Sune M?lgaard -------- Original Message -------- Subject: [bisected] nouveau failure with 3.9-rc1 and ongoing Date: Tue, 12 Mar 2013 19:57:55 +0100 From: Sune M?lgaard <sune at
2004 Aug 04
1
System crash caused by nmbd
I've got Samba 3.0 running on a linux machine (red hat 9). the server is configured as PDM with five windows xp clients connected to it. all day long, when there'S activity on the server it runs without problems, but during the night always the same error occures and causes a system crash on the server. here the relevant part of the logfile: Aug 3 04:14:12 dhcppc1 nmbd[1666]:
2006 Feb 20
3
Fwd: Asterisk on Solaris 10 (AMD Opteron, Sun Fire X2100)
Hello all, I really appreciate the replies I've gotten about this so far (especially the support for wanting to run it on Solaris!). The core issue seems to have been missed, though -- is there any way to run a complete Asterisk solution on Solaris 10 (including music-on-hold and conferencing)? This probably comes down to a few issues: - Is ztdummy (a component of Zaptel) *really*
2010 May 12
1
[LLVMdev] Adding a halting function attribute?
On Sun, May 2, 2010 at 9:32 AM, John Regehr <regehr at cs.utah.edu> wrote: > > On reflection, perhaps this isn't so bad. This really only matters when > > the compiler is able to infer readnone/readonly, which typically doesn't > > include cases with indirect calls. Per #2, I think it could be handled > > by making the GCC-style pure/const attributes imply
2010 May 01
0
[LLVMdev] Adding a halting function attribute?
On May 1, 2010, at 11:07 AM, Owen Anderson wrote: > Hey folks, > > In a recent blog post, John Regehr pointed out that LLVM is currently optimizing away read-only functions containing infinite loops whose return values are never used. The culprit for the moment is the inliner, but the more insidious problem is that isTriviallyDeletable currently returns true for any read-only function
2010 May 02
3
[LLVMdev] Adding a halting function attribute?
On May 1, 2010, at 11:19 AM, Chris Lattner wrote: > > On May 1, 2010, at 11:07 AM, Owen Anderson wrote: > >> Hey folks, >> >> In a recent blog post, John Regehr pointed out that LLVM is currently optimizing away read-only functions containing infinite loops whose return values are never used. The culprit for the moment is the inliner, but the more insidious problem
2010 May 02
0
[LLVMdev] Adding a halting function attribute?
> On reflection, perhaps this isn't so bad. This really only matters when > the compiler is able to infer readnone/readonly, which typically doesn't > include cases with indirect calls. Per #2, I think it could be handled > by making the GCC-style pure/const attributes imply both > readonly/readnone *and* halting. This sounds right to me. John
2009 Apr 22
1
How to make a time series object from a data frame containing dates.
Hi, All I have a data frame like this. > names(x) [1] "month" "alloc_gb" One of the columns contains the dates I want to use: > data.class(x$month) [1] "yearmon" I would like to make a time series object out of this. However the ts function seems to require me to spell out the starting date. Is there a way to tell ts to use the date column I already
2010 May 01
2
[LLVMdev] Adding a halting function attribute?
Hey folks, In a recent blog post, John Regehr pointed out that LLVM is currently optimizing away read-only functions containing infinite loops whose return values are never used. The culprit for the moment is the inliner, but the more insidious problem is that isTriviallyDeletable currently returns true for any read-only function whose value is not used. In order to prevent this from happening
2008 Dec 01
1
gentoo domU halting
Hello, When I am booting my gentoo domU I get the following output to the console and then it just hangs: (full boot output can be found at http://pastecode.com/19771) NET: Registered protocol family 1 NET: Registered protocol family 17 Using IPI Shortcut mode EXT2-fs warning (device sda1): ext2_fill_super: mounting ext3 filesystem as ext2 VFS: Mounted root (ext2 filesystem) readonly. Freeing
2013 Sep 19
0
pxechn.c32 halting
On Wed, Sep 18, 2013 at 4:09 PM, Chris Valentino <chris.valentino at 1010data.com> wrote: > I upgraded from syslinux 4.x to syslinux 6.01 and am now having issues with > pxe chaining. I've tried moving up as far as 6.02-pre16, but I'm still experiencing the same problem. The original config called the next server as follows: What's the version of the first and second