search for: tp1

Displaying 20 results from an estimated 30 matches for "tp1".

Did you mean: tmp1
2004 Jul 08
2
Cisco 7960 NAT question
...e other end of a DS3, the phones connect fine to the Asterisk server as you can see from the output of show sip peers below. tp3/tp3 <firewall-ip> D N 255.255.255.255 60665 Unmonitored tp2/tp2 <firewall-ip> D N 255.255.255.255 60646 Unmonitored tp1/tp1 <firewall-ip> D N 255.255.255.255 60649 Unmonitored Now, the Cisco phones are set to use nat (nat = 1) and in the SIP configuration, the phones are also configured for SIP. [tp1] type=friend secret=tp1 host=dynamic nat=yes callerid="Test Phone 1" I can ma...
2009 Apr 01
1
Adjusting font size in a lattice graph
Hi all I have created a lattice graph but the text appears too big. Just wondering if there was a way I could change the font size. tp1.nDai=xyplot(value ~ yr | Name, data = nDai,type = 'o') update(tp1.nDai, aspect = c(0.8), layout = c(4, 4)) I would appreciate your help. Kind regards andy Andrew McFadden MVS BVSc Incursion Investigator Investigation & Diagnostic Centres - Wallaceville Biosecurity New Zealand Mini...
2012 Dec 02
4
[LLVMdev] Predictive Commoning / Scalar Replacement
...nd different algorithm. I think the original paper was some internal IBM publication. The idea is basically to reuse values loaded in previous loop iterations. For example for (i) { x += 2*t[i-1] - t[i+1]; } would become for (i) { tm1 = tz; // t-minus-1 = t-zero tz = tp1; // t-zero = t-plus-1 tp1 = t[i+1]; // t-plus-1 = load x += 2*tm1 - tp1; } -Krzysztof -- Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by The Linux Foundation
2006 Feb 01
1
Samba 4
Hey Guys, I know it's only TP1 and maybe? this isn't the best place to ask but where do I start? I've download the debian experimental Samba 4 TP1 package and installed it. The debian installer did the provisioning and I've set up dns. I set up a share and it all seems to work fine with the built-in administrator ac...
2009 Oct 06
1
how to output profile plots for groups using lattice package
...the following variables: case (n=10,20,30) parameter (parm=a,b) group (grp=g1,g2) y (y values) x (x=2,4,8) My plot should be parameter by case such that I have 2 rows (each row= each parameter) and 3 columns (each column=each case). My R-code is as follows but I am not able to get what I want to: tp1.sim <- xyplot(y~ x | case + parm , group=group, data = data, lty = 1:4 , pch = 1:4) print(tp1.sim) How can I have two lines (for g1 and g2) in each plot (each box)? How do I label the x-axis with only values 2, 4, 8? How do I label each column with the corresponding case number? My hypothetica...
2012 Dec 02
0
[LLVMdev] Predictive Commoning / Scalar Replacement
Yin Ma wrote: > Hello, > > It seems there is the no redundancy elimination over loop iterations, such > > as predictive communing or scalar replacement in LLVM. They are quite > usefully > > for computation code. I am wondering if any party is working or has plan to > > implement those optimizations? I don't know of any, but I was wondering if you could point me
2012 Dec 02
0
[LLVMdev] Predictive Commoning / Scalar Replacement
...aper was some internal IBM publication. > > The idea is basically to reuse values loaded in previous loop iterations. > > For example > for (i) { > x += 2*t[i-1] - t[i+1]; > } > would become > for (i) { > tm1 = tz; // t-minus-1 = t-zero > tz = tp1; // t-zero = t-plus-1 > tp1 = t[i+1]; // t-plus-1 = load > x += 2*tm1 - tp1; > } > > -Krzysztof > > > -- > Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by > The Linux Foundation > ________________________________________...
2012 Nov 29
2
[LLVMdev] Predictive Commoning / Scalar Replacement
Hello, It seems there is the no redundancy elimination over loop iterations, such as predictive communing or scalar replacement in LLVM. They are quite usefully for computation code. I am wondering if any party is working or has plan to implement those optimizations? Thanks, Yin Qualcomm Innovation Center, Inc. is a member of Code
2006 Nov 15
2
Samba 4 TP3 won't configure
I had no trouble compiling TP1 some time ago. Now TP3 ./configure ends abruptly with:- Using shared libraries: no (not supported on this system) in Fedora-6, Ubuntu-6 and Zenwalk, all with full development packages installed. What does it mean? Mike
2009 Oct 30
1
How to properly shade the background panels of an xyplot?
Dear R users, this is a follow up of this message http://tolstoy.newcastle.edu.au/R/e6/help/09/05/13897.html I'm reproducing the core of it for convenience. > // > / data(Oats, package = "MEMSS") / > / tp1.oats <- xyplot(yield ~ nitro | Variety + Block, / > / data = Oats, / > / panel = function(x, y, subscripts, ...) { / > / # How to normalize my heatmap metric > with / > / # the...
2009 Mar 31
6
RELENG_7 ata panic on atacontrol attach
Hi there colleagues, atapci3: <nVidia nForce MCP55 SATA300 controller> port 0xbc00-0xbc07,0xb880-0xb883,0xb800-0xb807,0xb480-0xb483,0xb400-0xb40f mem 0xefcb3000-0xefcb3fff irq 23 at device 5.2 on pci0 atacontrol detach ata7 - insert ATA disk (ad14) atacontrol attach ata7 pinics with Fatal trap 12: page fault while in kernel mode (kgdb) bt #0 doadump () at pcpu.h:196 #1 0xc0533227
2010 Mar 20
1
Tab key traversal
...xt control to the next control after a person presses the tab key. The wxTE_PROCESS_TAB style property has been selected for each of the controls. What corrections do I have to make? Thanks. #!/usr/bin/env ruby require ''rubygems'' require ''wx'' require ''tp1.rb'' class MainFrame < TPSC def on_init m_scrolledwindow6.set_virtual_size(400, 100) m_scrolledwindow6.set_scroll_rate(5, 5) wxEVT_CHAR(@m_textCtrl2) { m_textCtrl3.set_focus } wxEVT_CHAR(@m_textCtrl3) { m_textCtrl4.set_focus } wxEVT_CHAR(@m_textCtrl4) { m_textCtrl4.set_focus }...
2010 Feb 18
1
Graphics Question
...variables "Year", "Factor" (w/ n groups), and "Freq" How do I create a single graphic with the following plots aligned in a vertical stack? 1. box plot in the fashion Freq~Year|Factor 2. box plot ignoring Factor, Freq~Year Using the following code: library(lattice) tp1<-bwplot(Freq~Year,data=X,main="All data",ylab="Freq",xlab="Year",layout=c(1,1)) tp2<-bwplot(Freq~Year|Factor,data=X,ylab="Freq",xlab="Year",layout=c(1,2)) plot(tp1,split=c(1,1,1,2)); plot(tp2,split=c(1,2,1,2),newpage=FALSE) ...I've manage...
2008 Jan 29
2
how do i creat multiple back to back histograms?
Een ingesloten tekst met niet-gespecificeerde tekenset is van het bericht gescrubt ... Naam: niet beschikbaar Url: https://stat.ethz.ch/pipermail/r-help/attachments/20080129/23f6cbc7/attachment.asc
2004 Jul 08
2
Shady dial anyone??
...e other end of a DS3, the phones connect fine to the Asterisk server as you can see from the output of show sip peers below. tp3/tp3 <firewall-ip> D N 255.255.255.255 60665 Unmonitored tp2/tp2 <firewall-ip> D N 255.255.255.255 60646 Unmonitored tp1/tp1 <firewall-ip> D N 255.255.255.255 60649 Unmonitored Now, the Cisco phones are set to use nat (nat =3D 1) and in the SIP configuration, the phones are also configured for SIP. [tp1] type=3Dfriend secret=3Dtp1 host=3Ddynamic nat=3Dyes callerid=3D"Test Phone 1&quo...
2012 Jul 12
0
HAR-RV-CJ Moedel
...qnorm(1 - .001)) if (m>=260) { ##raw moments rtn = sum(y) * 100 rv = sum(y*y);#realized variance [Y] bv = (m/(m-1))*(pi/2)*(sum(abs(y[-1]*y[-m])));#bi-power vairiation #mu_1^{-2}*{Y}^[1,1] rj = (rv-bv)/rv tmp = apply(embed(y, 4), 1, prod);#y{j}*y{j-1}*y{j-2}*y{j-3} tp1 = apply(embed(y, 3), 1, prod)#y{j}*y{j-1}*y{j-2} tpq = (mu43^-3)*((m^2)/(m-3))*(sum((abs(tp1))^(4/3))) qp = ((pi*pi)/4)*((m^2)/(m-3))*(sum(abs(tmp)));#quad-power #mu_1^{-4}*{Y}^[1,1,1,1] ##jump test statistic (10) theta = pi*pi/4 + pi - 5;#(6) zg = sqrt(m) * (bv - rv) /...
2010 Sep 21
2
[Bug 30307] New: 8500GT Hardware Lockup
https://bugs.freedesktop.org/show_bug.cgi?id=30307 Summary: 8500GT Hardware Lockup Product: xorg Version: unspecified Platform: x86-64 (AMD64) OS/Version: All Status: NEW Severity: minor Priority: medium Component: Driver/nouveau AssignedTo: nouveau at lists.freedesktop.org ReportedBy:
2006 Dec 26
14
[PATCH] fix free of event channel in blkfront
Hi All, We tested the xm block-attach/detach command. It repeats block-attach/detach command for DomU and pv-on-hvm on HVM Domain. (block-attach -> block-detach -> block-attach -> block-detach -> ...) The block-attach command failed when repeating 256 times. It is because the channel had not been freed in blkfront. Therefore, it remain using the event channel. This patch is
2009 Apr 29
1
ATA DMA issues - are there problems lurking in 7.1?
...then install BSD on the second half of the drive, and make an entry into the XP boot loader. Reboot into the fresh BSD install - now the trouble begins... I periodically receive the following messages: Apr 29 01:07:45 udns kernel: ata0: reiniting channel .. Apr 29 01:07:45 udns kernel: ata0: reset tp1 mask=03 ostat0=58 ostat1=50 Apr 29 01:07:45 udns kernel: ata0: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 Apr 29 01:07:45 udns kernel: ata0: stat1=0x00 err=0x01 lsb=0x14 msb=0xeb Apr 29 01:07:45 udns kernel: ata0: reset tp2 stat0=50 stat1=00 devices=0x9<ATAPI_SLAVE,ATA_MASTER> Apr 29 01:07:45 udn...
2012 Nov 06
3
Fix for vblank on nvc0
The vblank on nvc0 was not working correctly and would freeze X, I managed to track it down and fix it with some help from m.b.lankhorst, see https://bugs.freedesktop.org/show_bug.cgi?id=56692 for details. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/nouveau/attachments/20121106/27ceb48e/attachment.html> --------------