similar to: web-meetme cbEnd.php not running - error

Displaying 20 results from an estimated 800 matches similar to: "web-meetme cbEnd.php not running - error"

2011 Dec 06
1
Sequential Sum in R
I am trying to code the following excel formula in R. a b c Result Formula 1 10 0.1 #N/A IF(B2<20,NA(),C2+IF(ISERROR(D1),0,D1)) 2 20 0.2 0.2 IF(B3<20,NA(),C3+IF(ISERROR(D2),0,D2)) 3 30 0.3 0.5 IF(B4<20,NA(),C4+IF(ISERROR(D3),0,D3)) 4 40
2005 Sep 13
1
populating asterisk realtime tables from configfiles
Here is my file to parse and load extensions. No wise cracks about my code.... DB.php is the Pear DB module. (pear.php.net) <?php include('DB.php'); $db_host = ''; $db_name = ''; $db_login = ''; $db_pass = ''; $db_table = 'extensions_table'; define(DBINFO,"mysql://$db_login:$db_pass@$db_host/$db_name"); $db =
2007 Oct 26
0
2 commits - libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_object.h test/trace
libswfdec/swfdec_as_interpret.c | 56 ++++++++++++++++++++++ libswfdec/swfdec_as_object.h | 1 test/trace/Makefile.am | 9 +++ test/trace/implements-5.swf |binary test/trace/implements-5.swf.trace | 34 +++++++++++++ test/trace/implements-6.swf |binary test/trace/implements-6.swf.trace | 34 +++++++++++++ test/trace/implements-7.swf |binary
2009 Nov 19
1
[LLVMdev] Removing instanceof tests
Hi all, I wrote you some days ago about one project that I want to do on vmkit: I want to remove redundant instanceof tests. I am right now looking at the LLVM code that vmkit produces for java files, but I am finding it very difficult to identify the code that is produced by each instanceof. Would it be possible for you guys to give me some pointers on how to attack this problem? Should I
2007 Jan 07
0
Re: asterisk-users Digest, Vol 30, Issue 7
On 1/3/07, asterisk-users-request@lists.digium.com < asterisk-users-request@lists.digium.com> wrote: > > ---------- Forwarded message ---------- > From: "Dan Austin" <Dan_Austin@Phoenix.com> > To: "Asterisk Users Mailing List - Non-Commercial Discussion" < > asterisk-users@lists.digium.com> > Date: Wed, 3 Jan 2007 10:33:02 -0800 > Subject:
2009 Sep 21
1
[LLVMdev] Removing redundant type checks from Java
Hi, LLVMers, I am a CS student in my final year, and I would like to use LLVM in my final course project. So, I just download LLVM and VMKit, and I have been playing with both. I can produce llvm bytecodes from java programs, and now my idea is to remove redundant type checks from the code. For instance, if we consider a program like this: if (o instanceof A) { A a = (A) o; // do
2015 Dec 15
0
How to efficiently share data (a dataframe) between R and Java
You can pass the entire df, example: > data(iris) > iris$sp = as.character(iris$Species) > o=.jarray(lapply(iris, .jarray)) > .jcall("C",,"df",o) df, 6 variables [0]: double[150] [1]: double[150] [2]: double[150] [3]: double[150] [4]: int[150] [5]: String[150] Java code: public class C { static void df(Object df[]) { int n;
2007 Oct 25
0
12 commits - libswfdec/swfdec_as_internal.h libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_object.c libswfdec/swfdec_text_field_movie_as.c libswfdec/swfdec_text_field_movie.c test/trace
libswfdec/swfdec_as_internal.h | 4 libswfdec/swfdec_as_interpret.c | 44 +++++++ libswfdec/swfdec_as_object.c | 73 +++++++++---- libswfdec/swfdec_text_field_movie.c | 20 +-- libswfdec/swfdec_text_field_movie_as.c | 6 - test/trace/Makefile.am | 45 ++++++-- test/trace/instance-of-5.swf
2009 Nov 09
0
[LLVMdev] Optimizing class casts away
Dear all, I am trying to remove some instanceof tests from bc code that is produced by vmkit. For instance: 1 if (o instanceof String) { 2 String s = (String)o; 3 } Vmkit seems to be inserting two tests into the bc code: one for the test in line 1, and another, implicit, that would lunch perhaps JavaClassCastException if the cast fails at runtime. Would it be possible for some of you
2005 Apr 04
0
io timeout after 180 seconds
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Thanks for all the help so far. I am learning a lot from it. I have a script that I will post bellow that when I run it gives me this error. mysql/website_forum/nntp_settings.MYD io timeout after 180 seconds - exiting rsync error: timeout in data send/receive (code 30) at io.c(103) rsync: connection unexpectedly closed (1493583 bytes read so far)
2017 Oct 16
2
Confbridge GUI?
Interesting. Are you using the included cbend.php script to terminate conferences? I occasionally get questions about using WMM with Confbridge, and to date I have not had an answer . If you can provide details, even vague ones, about how you did it, I can update the WMM package. Dan -----Original Message----- From: asterisk-users-bounces at lists.digium.com [mailto:asterisk-users-bounces at
2013 Jan 10
1
[LLVMdev] LLVM Instruction to ICmpInst conversion
Hello ! I want some piece of advice regarding a LLVM pass. My particular problem is: There is a method bool patternDC::runOnFunction(Function &F) { ... if ( CC->operEquiv(icmpInstrArray[i], icmpInstrArray[j]) ) {...} ... } having the array elements of type Instruction* : http://llvm.org/doxygen/classllvm_1_1Instruction.html The called method is bool
2007 Jan 03
9
[Announce] Web-MeetMe 3.0.0 released
We've been holding back on this release to coincide with the Asterisk 1.4.0 release. This is mostly a compatibility release, but there are a few new features: * No longer requires register_globals in PHP * Separated code from configuration settings in ./lib/defines.php (hopefully this will make future upgrades easier) * Migrated all database interfaces to PEAR::DB which
2007 Oct 25
0
6 commits - libswfdec/swfdec_as_interpret.c test/trace
libswfdec/swfdec_as_interpret.c | 89 ++++++++++++++++++++++++------- test/trace/Makefile.am | 9 +++ test/trace/cast-5.swf |binary test/trace/cast-5.swf.trace | 2 test/trace/cast-6.swf |binary test/trace/cast-6.swf.trace | 2 test/trace/cast-7.swf |binary
2007 Apr 16
0
Branch 'as' - 3 commits - libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_object.c libswfdec/swfdec_as_object.h
libswfdec/swfdec_as_interpret.c | 108 ++++++++++++++++++++++------------------ libswfdec/swfdec_as_object.c | 97 ++++++++++++++++++++++++++++++++++- libswfdec/swfdec_as_object.h | 13 ++++ 3 files changed, 167 insertions(+), 51 deletions(-) New commits: diff-tree 5b8588a3f805a71549ee71acc97ce27a3845383e (from a843e801169afd960d58def92a2adf5eaf69dbfb) Author: Benjamin Otte
2006 Jan 12
5
[Announce] Web-MeetMe v2.0.0
[New Features] 1. Added focus and tab-order to all input fields 2. Dynamic generation of date/month/year listboxes a. It is no longer possible to schedule an invalid date. 3. Added 'Extend' and 'End Now' buttons to the monitor page. 4. Invite button on the monitor page. This greatly simplifies the process of adding callers to a conference. The ./lib/defines
2013 Jan 31
1
The way Puppet installs things fail
Basically, the way puppet installs things things with /usr/bin/apt-get -q -y -o DPkg::Options::=--force-confold install <package_name> fails due to authentication WARNING: The following packages cannot be authenticated But if I do it from an ssh console normally, using apt-get install <package_name> it works fine without issues. Is there a way to change how puppet uses the
2013 Oct 10
3
Puppet fails to install package, whilst it's okay to do manually
Dear all, I''m seeing this strange thing: When I run "*puppet agent -td*" on the node (Nagios, in this example case), puppet fails to install Nagios3 (on Debian) with this: Debug: Executing ''/usr/bin/dpkg-query -W --showformat ${Status} ${Package} > ${Version}\n nagios3'' > Debug: Executing ''/usr/bin/apt-get -q -y -o >
2019 Nov 12
0
class(<matrix>) |--> c("matrix", "arrary") [was "head.matrix ..."]
On 11/11/19 01:40, Martin Maechler wrote: >>>>>> Duncan Murdoch >>>>>> on Sun, 10 Nov 2019 11:48:26 -0500 writes: > > > On 10/11/2019 9:17 a.m., Bryan Hanson wrote: > >> > >> > >>> On Nov 10, 2019, at 3:36 AM, Martin Maechler <maechler at stat.math.ethz.ch> wrote: > >>> >
2009 Sep 02
1
AMI Originate Commands executed in sequential Order problem
Hi, I noticed that asterisk manager interface will only accept the originate commands in sequential order. For example, if I want to ring two extensions through the AMI, and while first extension is ringing, AMI won't execute and ring second extension until first extension has answered the call. Anybody has any ideas as I had the same results even tested with telnet commands to AMI interface.