similar to: Agent Call Recording

Displaying 20 results from an estimated 2000 matches similar to: "Agent Call Recording"

1998 Jan 13
1
R-beta: 0.61.1 "if else" parse bug?
I was playing with porting "Hmisc" S-Lib. I am getting parse errors for: if (xxx) yyyy;else zzzz I have to break this into: if(xxx) yyyy else zzzz Is this a known feature? TIA Osman -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or
2007 Nov 21
1
Help Required in using cast (reshape package) function
Hello everyone, I am new to R. I have data in the form of excel pivot table format and I want to cast it into a format which can make it compatible with computation. Since I already have the package in pivot format; I avoid melt function and use the cast directly. I inspect the dataread <- read.csv(".....", header=TRUE) Data in the format Id Region Country Industry
2012 Jun 01
4
Adding a column into the file
Dear all, I have a lot of problems on R-programming. for example my csv. file is .. Date wrfRH wrfsolar wrfwindspeed wrfrain wrftd wrfta 21/10/2010 92.97 22.11 53.27 0 1546.337861 61.00852664 22/10/2010 87.35 21.99 40.89 0 1300.408288 62.85352227 23/10/2010 88.38 21.71 28.04 0.01 1381.768284 54.80594493 24/10/2010 92.32 15.45 22.38 0.51 1113.90981 39.46573663 25/10/2010 93.42
2006 Jun 13
2
No incoming sip calls
Hi folks - I've recently returned to asterisk after an eighteen month break. I've two sip providers - gradwell in the UK (inbound and outbound) and talklite in the US (outbound only). I've managed to get outbound dialing working but am not receiving any calls from gradwell. I've included my sip.conf and extensions.conf as well as the output from tethereal. When a call is placed
2007 Feb 23
11
Problems getting mongrel service working
Hello list! I have mongrel service 0.1.0 working on my current production machine. Upgrading to a new server and also moving to mongrel service 0.3.1 has not worked yet. I am hoping someone will have an idea as to why. I have mongrel installed properly (I think): C:\rails\igacc>gem list --local *** LOCAL GEMS *** ... mongrel (1.0.1) A small fast HTTP library and server that runs
2008 Dec 15
5
pci passthrough under xen-3.3 without VT-d
Hi all! I''m hoping someone here might be able to help. I''m familiar with several UNIX''es, though farily new to Linux... I''m running RHEL 5.2. I''ve got the RHEL kernel headers installed, etc, and compiled xen-3.3. Once that was built, I rebuilt libvirt, etc, the kernel, and all the modules. The whole mess boots and runs fine... mostly. My hardware
2005 Jun 08
1
assertion failed -0.99 -> 1.0-stable
Hello Timo, I've upgraded from dovecot-0.99 to dovecot-1.0-stable (the 2005-05-09 version) on FreeBSD 5.4 and encountered the following problems (problem #4 (assertion failed) made me downgrade back to dovecot-0.99...) : 1. mbox sync: UID inserted in the middle of mailbox /var/mail/gopauld (5230 > 4407) --> OK, that's documented on the Wiki, not a real problem 2. imap(cxxx):
2009 Aug 11
1
reading heterogeneous CSV
Greetings, all. I've got a datafile I've been working with that has an ideosyncratic, heterogeneous format. It's grossly like: [...] DISKREAD,metadata about disks MEM,metadata about memory ZZZZ,observation-identifier,time,date DISKREAD,observation-identifier,data about disks MEM,observation-identifier,data about memory [ and repeat for each observation ] What I've done in
2002 Mar 26
4
Can't print duplex
I am trying to switch over to the new "style" of printing, but when I do, I loose the ability to print duplex. I have two servers. The old one (spike) is setup as a file server, etc. and the print services date back to the early 2.0 days. It is currently running 2.2.2 with the original printer setup. The printing works ok with this server. People can print using features of the
2007 Jul 16
1
Dict-server mysql module error
hi all when i setup plugin quota by quota = dict: mysql:/etc/quota-dict.conf i get the folowing error: deliver(zzzz at zzzz.zz): Unknown dict module: mysql deliver(zzzz at zzz.zz): dict quota: dict_init() failed quota-dict.conf: connect = host=localhost dbname=zzzz user=zzzz password=zzzz table = mailbox select_field = quota where_field = maildir username_field = username dovecot.conf: #
2016 Jan 12
1
Some llvm questions (for tgsi backend)
Hi Tom, Thanks for taking the time to answer this. On 11-01-16 18:10, Tom Stellard wrote: > On Mon, Jan 11, 2016 at 12:07:14PM +0100, Hans de Goede wrote: >> Hi, >> >> After a few distractions I'm back to work on the llvm tgsi backend. I've >> added clang integration and I can now compile a simple opencl program >> to something which sort of looks like
2013 Oct 04
1
[Bug 70130] New: unable to compile fragment shader program
https://bugs.freedesktop.org/show_bug.cgi?id=70130 Priority: medium Bug ID: 70130 Assignee: nouveau at lists.freedesktop.org Summary: unable to compile fragment shader program Severity: normal Classification: Unclassified OS: Linux (All) Reporter: infyquest at gmail.com Hardware: x86 (IA32)
2005 Jul 27
3
[LLVMdev] How to define complicated instruction in TableGen (Direct3D shader instruction)
Each register is a 4-component (namely, r, g, b, a) vector register. They are actually defined as llvm packed [4xfloat]. The instruction: add_sat r0.a, r1_bias.xxyy, r3_x2.zzzz Explaination: '.a' is a writemask. only the specified component will be update '.xxyy' and '.zzzz' are swizzle masks, specify the component permutation, simliar to the Intel SSE permutation
2005 Jul 29
0
[LLVMdev] How to define complicated instruction in TableGen (Direct3D shader instruction)
Actually the problems that Tzu-Chien Chiu are encountering are similar to what should be done for generating SSE code in the X86 backend and also other SIMD instruction sets. I think LLVM neeeds to add instructions for permuting components, extracting and injecting elements in packed types. If the architecture has instructions which can do permutations for each instruction (for example
2015 May 07
2
[LLVMdev] Integer ID for LLVM::Instruction*?
David, As you suggested, I try to compile the following test code: *include "llvm/IR/Instruction.h"#include "stdint.h"extern void callback(intptr_t);void foo(){ llvm::Instruction* i; intptr_t zzzz=static_cast<intptr_t>(i); callback(zzzz);}* but got this compilation error: * 'intptr_t' (aka 'long') is not allowed intptr_t
2003 Dec 11
1
Problem with SID
Hello all I have a Samba-3.0.0 server configured as PDC running agains openldap. So I have an entry of the form: sambaSID S-1-5-21-xxxxx-yyyyy-zzzz-rid in my dircectory If I check the properties of a file under Windows on the PDC I get the information all right displaying the owner of the file as: user[Domain\user] Now I have a couple of other Samba-3.0.0 servers which are not configured as
2014 Nov 05
1
Performance issue
Hi, Since few days I noticed very high load on my mailserver (Centos 6.6 64bit, 8 GB RAM, 2 x CPU 3.00GHz I am using Dovecot + Postfix + Roundcube + Nginx. I have about 10000 users. Spool is on network attached storage (Coraid). File system is ext4 (mounted with noatime). Problem appears almost every morning (while load is normal during afternoon). I suspect that this can be related to some
2009 Apr 06
1
FW: Headless operations
...zzZZ... *ifconfig* *DHCP logs* *netstat*...ZZzz... (Sleeping) - Shao -----Original Message----- From: Chris Miller [mailto:Chris at InfoGreat.com] Sent: Monday, April 06, 2009 02:05 To: Miller, Shao Subject: RE: [syslinux] Headless operations Hi Folks, I trimmed my EXTLinux.conf to one stanza, as suggested. Then I use my newly acquired knowledge of the virtual terminals and I peeked at
2008 Dec 30
0
[LLVMdev] [Mesa3d-dev] Folding vector instructions
On Dec 30, 2008, at 6:39 AM, Corbin Simpson wrote: >> However, the special instrucions cannot directly be mapped to LLVM >> IR, like >> "min", the conversion involves in 'extract' the vector, create >> less-than-compare, create 'select' instruction, and create 'insert- >> element' >> instruction. Using scalar operations
2011 Sep 23
3
Set (MONITOR_FILENAME=.................) for queuing recording calls
Hi All; I noticed in the queues.conf the configuration for recording the calls in the queuing, and regarding to the filename (or any other parameter), it is written that I can determine the filename using the command: Set(MONITOR_FILENAME=foo) But it should be called from the dialing plan, but really i did not understand how to call it from the dialing plan. Well, for example this is my