similar to: Context documentation for the newbie!

Displaying 20 results from an estimated 1000 matches similar to: "Context documentation for the newbie!"

2007 May 31
2
How to read SIP debug?
Hi all, i need to study the SIP protocol. can anybody tell me about any ebook which could halp me understand the sip protocol, architecture, and how to read and understand the sip signalling when i use "sip debug" in asterisk? -- Rizwan Hisham Software Engineer AXVOICE Inc. -------------- next part -------------- An HTML attachment was scrubbed... URL:
2004 Mar 10
5
do.call and environments
Hello, I want to call a function "fx" given by name, where some "global" variables (in the environment of fx) are passed to the function. For compatibility reasons I cannot modify the parameter list of fx and I want to avoid setting variables in the global environment (e.g. via <<-) Is there a way, how to do this? Thomas P. The example: fx <- function(y)
2018 Nov 05
3
Safe fptoui/fptosi casts
Hi everyone! The fptoui/fptosi instructions are currently specified to return a poison value if the rounded-towards-zero floating point number cannot be represented by the target integer type. The motivation for this behavior is that overflowing float to int casts in C are undefined behavior. However, many newer languages prefer to have a float to integer cast that is well-defined for all input
2007 May 22
2
FXS + Pots Extensions Help
Hello all, Normally I just use pri's with our asterisk systems, but a request came in to add some normal pots lines to the setup. We have 3 lines, and they run into the fxs ports. They hit the dialplan just fine, and they always dial the "s" extension. However, my question would be... Is there a way to determine what number was dialed and have it forward to a specific phone? With a
2018 Nov 05
5
Safe fptoui/fptosi casts
I would be interested in learning what the set of used semantics for float-to-int conversion is. If the only two used are 1) undefined behavior if unrepresentable and 2) saturate to int_{min,max} with NaN going to zero, then I think it makes sense to expose both of those natively in the IR. If the set is much larger, I think separate intrinsics for each behavior would make sense. It would be nice
2004 Mar 11
4
Summary: do.call and environments
To use the modify the solution from Tony and I so that you can pass the name of the function, rather than the function itself, like this: x <- 7 fx <- function(y) print(x*y) f <- function(fun, x) { fun <- get(fun) environment(fun) <- environment() do.call("fun",list(3)) } f("fx",2) --- Date: Thu, 11 Mar 2004 08:22:45 +0100 From:
2001 Oct 30
4
samba will not work for me... :/
I've had this problem since FreeBSD 4.3. This problem continues with my FreeBSD 4.4 machine. I can't connect from my Win98se and Win2kPro machines to my FreeBSD 4.4 Samba server. I've tried it all... but still no luck. I've run smbd and nmbd manually with the "-D" parameter. I can connect internally from my FreeBSD 4.4 box using "./smbclient
2003 Nov 06
2
Assistance request
Hi Samba team, first I want to appologize for this spam, you probably get tons of such messages per day. However I am desparate and sick of digging into newsgroups, mailing lists and everything else ;)) Since 1 year I am trying to find a way to make samba receive winpopup messages from Windows 2000, or Xp, using the "net send" command. Receiving messages from other linux machines
2017 Mar 19
2
outer not applying a constant function
Hi, the function outer can not apply a constant function as in the last line of the following example: > xg <- 1:4 > yg <- 1:4 > fxyg <- outer(xg, yg, function(x,y) x*y) > fconstg <- outer(xg, yg, function(x,y) 1.0) Error in outer(xg, yg, function(x, y) 1) : dims [product 16] do not match the length of object [1] Of course there are simpler ways to construct a constant
2007 Jul 17
5
Asterisk PRI Busy Problem
Hi, I've an PRI coming to my asterisk ,calls are coming fine and my agents are able to answer no prob. but I've an agreement with my telco with some incoming no if the no of calls on these no are more then 3 then send to another no. they use busy signal to divert call on another number so I'm sending the call to Congestion() if no of calls in this group are more then 3. But my
2007 Apr 25
3
call dispatching - legacy application
Hy all need to preprocess 1) incoming call get caller id lookup some info in my db, 2) based on the result dispatch the call to the right operator step 1 is ok I developped a small .php script that connect manager and parse events, now I have to tell AAH do dispatch call to the right operator questions 1) is this the right practice ? 2) where to find a complete manager api reference, (to buy
2011 Feb 02
2
multicore + xeon ?
Is there any reason to expect a problem ? i'm running this script on the cluster down the hall: module load R/2.11.0 R library(multicore) fxx<-function(ll) runif(1) mclapply(1:10,fxx) i get: Error in fork() : Unable to fork. less /proc/cpuinfo yields: processor : 0 vendor_id : GenuineIntel cpu family : 6 model : 15 model name : Intel(R) Xeon(R) CPU
2008 Mar 25
3
derivatives in R
Hi, I posted this message earlier in "Rmetrics" and I don't know whether I posted in the wrong place, so I'm posting it again in Rhelp. I have a function in x and y and let's call it f(x,y). I need to get the Hessian matrix. i.e I need (d^2f/dx^2), (d^2f/dxdy), (d^2f/dydx), (d^2f/dy^2).I can get these using the D function. now I need to evaluste the hessian matrix for
2017 Mar 20
1
outer not applying a constant function
> Or is this a bad idea? I don't like the proposal. I have seen code like the following (in fact, I have written such code, where I had forgotten a function was not vectorized) where the error would have been discovered much later if outer() didn't catch it. > outer(1:3, 11:13, sum) Error in outer(1:3, 11:13, sum) : dims [product 9] do not match the length of object [1]
2007 Jul 20
1
asterisk novice needs help.
On Fri, 2007-07-20 at 02:08 -0400, BSumrall wrote: > My dial plan of issues?.. > exten => s,1,Answer(60) > exten => s,2,Background(otherwise-press) > exten => s,1,Playback(digits/1) > exten => s,2,Goto(default,s,1) > exten => s,1,Playback(digits/2) > exten => s,2,Goto(default,s,1) I'm not sure why you have three different sets of priorities one and two
2007 Mar 29
8
error in FreePBX
Ive installed asterisk and freepbx. Through the interface ive configured 2 extensions, 6000 and 6001. My problem is that when i try to call from extension 6000 to 6001, i hear this msg "Im-sorry&an-error-has-occured" and the call is terminated. As expected if i call to another number i get an error. i thought the problem might been related with the NAT but if checked and changed some
2004 Dec 02
2
regex to match word boundaries
Can someone verify whether or not this is a bug. When I substitute all occurrence of "\\B" with "X" R seems to correctly place an X at all non-word boundaries (whether or not I specify perl) but "\\b" does not seem to act on all complement positions: > gsub("\\b", "X", "abc def") # nothing done [1] "abc def" >
2011 Jul 08
11
New VirtualBox Beta Has PCI Pass-Through Support
Can you say a Virtualized Asterisk with a PRI card! http://www.phoronix.com/scan.php?page=news_item&px=OTY0OQ Doug -- Ben Franklin quote: "Those who would give up Essential Liberty to purchase a little Temporary Safety, deserve neither Liberty nor Safety."
2005 Jun 18
6
htb child classes don''t borrow form "parent''s parent class" :(
Dear list, I have the problem that child classes don''t seem to issue the parent class to borrow from their parent. This is a simplified version of my script: tc qdisc del dev $DEV root tc qdisc add dev $DEV root handle 1: htb default 10 tc class add dev $DEV parent 1: classid 1:1 htb rate 10mbit tc class add dev $DEV parent 1:1 classid 1:10 htb rate 1kbit ceil 512kbit #groups tc
2005 May 31
4
Extension context question
I have a very simple question . I have 2 internal extension 301 and 300 sip phone . I want to these extesion can call each other, and ext 300 can call outside to pstn, and ext 301 to call internatonal. How can I do that ? [x1] exten => 300,1,Dial(SIP/300) include => pstnlocal [x2] exten => 301,1,Dial(SIP/301) include =>international [pstnlocal] exten =>