similar to: CIsco 7960 SIP Image

Displaying 20 results from an estimated 1000 matches similar to: "CIsco 7960 SIP Image"

2006 May 20
1
How to unlock old SCCP Cisco 7960 ?
Hi, An Cisco 7960 ipphone has been set to SCCP firmware by one of our students. I want to set it to 7.5 SIP firmware and I've been unsuccessful yet. Firmware versions are SCCP 3.0 (Source: http://www.cisco.com/univercd/cc/td/doc/product/voice/c_ipphon/english/ipp7960/addprot/mgcp/frmwrup.htm#wp1045789) ie: Application Load P003F300 Boot Load ID PC030300 When I browse, phone settings, I see
2004 Oct 01
1
upgrade goof up
Here's the problem, I upgraded all of my 7960 phones to SIP. Now my boss wants to carry his phone with him between offices. The other office has CCM which is set up for Skinny. Now I have to put SCCP back on a 7960 phone and it won't take it. Does anyone have an example of config files for sccp. Are they the same as config files for SIP? I've never had to go back to Skinny once I
2004 Mar 13
7
Cisco 7960 firmware
Does anyone know if version 3.1 is Call Manager or SIP? Thanks.
2004 Jan 24
13
Has Nufone gone belly-up
Folks, I've ordered a new account from Nufone last month. Transferred money to Nufone through their paypal account. I had communication with Nufone sales up until two weeks back. Since then there were no replies to my emails. I am afraid with this kind of unresponsiveness how one would run a reliable service with this company. Have no bad feeling with Jeremy as the author of widely used h323
2005 May 19
4
LOOKING TO HIRE
We have positions in Ho Chi Minh City, Vietnam and Temecula, California. Please only reply to vnjobs@ecite.com no phone calls. Our Company comprises a diverse set of individuals who work hard and play hard. We look for motivated, dedicated candidates who have demonstrated an insatiable quest for knowledge, opportunity, responsibility and entrepreneurship. Our goals are ambitious, but ample
2007 May 28
2
Yearly statistics
Dear R-experts, Sorry if I've overlooked a simple solution here. I have calculated a proportion of the number of observations which meet a criteria, applied to five years of data. How can I break down this proportion statistic for each year? For example (data in zoo format): open high low close hc lc 2004-12-29 4135 4135 4106 4116 8 -21 2004-12-30 4120 4131
2006 Apr 03
4
How to create new rails 1.1 app if only rails 1.0 installed?
I have rails 1.0 and I cannot install rails-1.1 system-wide. However, I can freeze_edge (but just once because of svn 1.1.4 on Debian). Under this scenario, how can I create brand new rails-1.1 apps? I know how to freeze_edge *existing* rails-1.0 apps but that process seems to be imperfect because the script/about command and /rails/info/properties URL do not work after freezing to 1.1.0
2018 Nov 09
2
Samba panic when accessing DNS domain entry with RSAT DNS tool
Hi everybody, for some time now I have an issue with our samba/bind9-DLZ setup which became worse lately. I use the RSAT DNS tool to configure DNS records. In the past it sometimes happened, that DNS died when accessing the domain zone. This condition could only be resolved by restarting samba on the affected DC. Unfortunately the situation got worse and configuration/modification of entries
2018 Nov 09
2
Samba panic when accessing DNS domain entry with RSAT DNS tool
Hello Daniel, thank you for the fast reply. I am also using Windows 10. I'll setup a temporary Win7 VM to test if this will make any difference. Do you know if this a known issue with RSAT on Windows 10 ? Best regards Andreas Am 09.11.2018 um 11:23 schrieb Mueller: > I had this error when I did it from Windows 10. > I usede a Windows 7 PC and everything was fine again. > >
2012 Nov 13
2
[LLVMdev] loop carried dependence analysis?
Erkan, you're right. Sorry about that. Attached is the most recent version. Preston Hi Preston, > I am trying to use DA as well. I used your example and commands that you > wrote in order to get DA information. > However, it does not report any dependence info. > I am wondering whether your local copy differs from the one on the > repository ? > Thanks. > Erkan.
2012 Nov 13
2
[LLVMdev] loop carried dependence analysis?
Hi all, Unfortunately, all my Hunks are failed when I apply : patch -p1 < da.patch command. The problem might be due to the fact that da.patch file was created against revision 167549, but I am on revision 167719 (I believe the most recent one). I am not sure if this cause the problem ? But Preston may I ask you to generate the patch file against revison 167719 ? Thanks in advance. On
2012 Oct 03
3
[LLVMdev] Does LLVM optimize recursive call?
On Wed, Oct 3, 2012 at 10:15 AM, Matthieu Moy <Matthieu.Moy at grenoble-inp.fr> wrote: > Preston Briggs <preston.briggs at gmail.com> writes: >> Think about costs asymptotically; that's what matters. Calls and >> returns require constant time, just like addition and multiplication. > > Constant time, but not necessarily constant memory. > > Deep recursion
2018 Sep 11
2
linear-scan RA
The phi instruction is irrelevant; just the way I think about things. The question is if the allocator believes that t0 and t2 interfere. Perhaps the coalescing example was too simple. In the general case, we can't coalesce without a notion of interference. My worry is that looking at interference by ranges of instruction numbers leads to inaccuracies when a range is introduced by a copy.
2013 May 17
3
[LLVMdev] Inlining sqrt library function in X86
Using the following example program #include <math.h> double f(double d){ return sqrt(d); } and compiling it with "clang -O3 ...", I was trying to determine what it would take to get the X86 code generator to replace the call to sqrt with a sqrtsd instruction inline. It turns out that it could do exactly that, were it not for the fact that in the function
2012 Nov 02
2
[LLVMdev] DependenceAnalysis and PR14241
On 11/02/2012 11:02 AM, Hal Finkel wrote: > ----- Original Message ----- >> From: "Tobias Grosser" <tobias at grosser.es> >> To: "preston briggs" <preston.briggs at gmail.com> >> Cc: "Benjamin Kramer" <benny.kra at gmail.com>, "LLVM Developers Mailing List" <llvmdev at cs.uiuc.edu> >> Sent: Friday, November
2012 Jan 26
5
[LLVMdev] dense maps
Reading the LLVM Programmer's Manual, the description of DenseSet mentions: *Note that DenseSet has the same requirements for the value type that DenseMap <http://llvm.org/docs/ProgrammersManual.html#dss_densemap> has.* But when I read about DenseMap, I don't really see any requirements for the values, just a warning about space. On the other hand, the *keys* have special
2012 Nov 13
0
[LLVMdev] loop carried dependence analysis?
Preston, thanks for the explanation and patch. Now it's printing the direction and distance values. On Tue, Nov 13, 2012 at 12:22 PM, Preston Briggs <preston.briggs at gmail.com>wrote: > Erkan, you're right. Sorry about that. > Attached is the most recent version. > > Preston > > > > Hi Preston, >> I am trying to use DA as well. I used your example
2018 Sep 11
2
linear-scan RA
Yes, I quite liked the things I've read about the PBQP allocator. Given what the hardware folks have to go through to get 1% improvements in scalar code, spending 20% (or whatever) compile time (under control of a flag) seems like nothing. And falling back on "average code" is a little disingenuous. People looking for performance don't care about average code; they care about
2012 Jan 26
0
[LLVMdev] dense maps
My problem was that the constructor for DenseMap has an undocumented constraint. explicit DenseMap(unsigned NumInitBuckets = 0) { init(NumInitBuckets); } if given an explicit argument, requires that the argument be a power of 2. It's checked by an assert in init(), but for some reason my code didn't trip the assertion. Is there a special way I must make to enable asserts? Thanks,
2018 Sep 11
2
linear-scan RA
Hi, Using Chaitin's approach, removing a copy via coalescing could expose more opportunities for coalescing. So he would iteratively rebuild the interference graph and check for more opportunities. Chaitin was also careful to make sure that the source and destination of a copy didn't interfere unnecessarily (because of the copy alone); that is, his approach to interference was very