Displaying 4 results from an estimated 4 matches for "looper".
Did you mean:
cooper
2006 Apr 05
5
Dial Plan Logic Problem
...rong? The same happens if you
hit key 1.
[campon]
exten => _*1XXX,1,Answer
exten => _*1XXX,2,SetCallerID(${CALLERIDNUM})
exten => _*1XXX,3,SetVar(CALLEDEXTEN=${EXTEN:2,3})
exten => _*1XXX,4,ResponseTimeout(3)
exten => _*1XXX,5,Background(entagroup/campon)
exten => _*1XXX,6,SetVar(LOOPER=1)
exten => _*1XXX,7,Background(entagroup/silence)
exten => _*1XXX,8,NoOp()
exten => _*1XXX,9,GotoIf($[${LOOPER} < 10]?10:13)
exten => _*1XXX,10,Dial(Local/${CALLEDEXTEN},5,trm)
exten => _*1XXX,11,SetVar(LOOPER=$[${LOOPER} + 1])
exten => _*1XXX,12,Goto(9)
exten => _*1XXX,13,...
2005 Jun 21
5
Q: Routing the Same IP simultaneously on different computers ?
Hi,
I''ve asked this elsewhere and received hints but no one seems to have a
concrete explanation :-
What I am looking to do is to be able to configure a Linux based router to
be able to share THE SAME SINGLE Public IP address between the linux router
and a
single computer on the lan acting as the DMZ host (NOT normal NAT IP sharing
!).
So basically you have a linux router with two
2007 May 17
4
help with executing instruction every i-th run of loop
I am running a very long loop and would like to save intermediate
results in case of a system or program crash. Here is the skeleton of
what my code would be:
for (i in 1:zillion)
{
results[[i]]<-do.something.function()
if (logical.test(i)) {save(results, "results.tmp")}
}
logical.test would test to see if i/1000 has no remainder. What R
function would test that?
2015 Sep 01
0
lazy loading in SparkR
Hi,
I'm using SparkR and R won't read the promises from the SparkR package,
only if I run lazyLoad manually.
.libPaths(c(file.path(Sys.getenv("SPARK_HOME"), "R", "lib"), .libPaths()))
print(.libPaths())
# [1] "/private/tmp/spark-1.5/spark-1.5.0-SNAPSHOT-bin-hadoop2.6/R/lib"
# [2] "/usr/local/lib/R/3.2/site-library"
# [3]