search for: pck

Displaying 20 results from an estimated 21 matches for "pck".

Did you mean: pci
2004 Sep 13
1
*.Rd: line breaks incorrect (?) \examples
...stuff # comment \emph{} \code{\link{}} } then \emph{} and \code{\link{}} are transformed into a queer sequence of characters. Question: where are \emph{} \code{\link{}} allowed? - More general: Where are TeX constructs allowed? $x_{nn} - Where are TeX constructs mandatory? - Why are pck.Rcheck/pck-manual.aux, .dvi, and .log generated by runnung R CMD build etc., but not pck.Rcheck/pck-manual.ps? However, pck.Rcheck/pck-Examples *is* generated. Thank you for considering Christian -- Dr.sc.math.Christian W. Hoffmann, http://www.wsl.ch/staff/christian.hoffmann Mathematics + S...
2009 May 06
1
Add trend line to XYPlot using a subset of the original data
...) or panel.lines(x[pkyr],exp(x[pkyr]*(-my.lm$coef[2])+my.lm$coef[1]),col=3) # this doesn't plot any line And other variations on subsetting the data and calculating the slope. If I create the same using the plot command, the slope of the trend based on the subset of the data is correct. pck<-!is.na(pkdat$X9444500) plot(X9444500~WY,data=pkdat[pck,],xlim=c(1900,2020),ylab="TEST", xlab="",ylim=c(100,100000),yaxp=c(100,100000,1),las=1,tck=.02,log="y",yaxs='i',xaxs='i',mgp=c(3,.5,0)) lines(pkdat$WY[pck],exp(predict.lm(lm(log(pkdat$X9444500[p...
2005 Feb 21
1
leaving Profiles on PDC
...ocessing section "[profiles]" Processing section "[homes]" added interface ip=192.168.0.100 bcast=192.168.0.255 nmask=255.255.255.0 Registered MSG_REQ_POOL_USAGE Registered MSG_REQ_DMALLOC_MARK and LOG_CHANGED waiting for a connection netbios connect: name1=SERVER1 name2=PCK-01 netbios connect: local=server1 remote=pck-01, name type = 0 setup_new_vc_session: New VC == 0, if NT4.x compatible we would close all old resources. setup_new_vc_session: New VC == 0, if NT4.x compatible we would close all old resources. netsec_decode: FAILED: packet sequence number: [000] F1 49...
2019 Sep 19
3
Postfix vs. Thunderbird on Mac OS
...Air with Thunderbird on Mac OS Mojave, and her outgoing mails are rejected with the following error message in /var/log/maillog on the server: --8<------------------------------------------------------ Sep 16 14:22:32 sd-48011 postfix/smtps/smtpd[14434]: NOQUEUE: reject: RCPT from villa.figaret.pck.nerim.net[62.212.106.47]: 450 4.7.1 <Air-de-bea.scholae.lan>: Helo command rejected: Host not found; from=<xxxxx.yyyyyyyy at scholae.fr> to=<info at microlinux.fr> proto=ESMTP helo=<Air-de-bea.scholae.lan> --8<------------------------------------------------------ As far...
2007 Dec 01
1
Dismiss previous email
...ified version of the real data frame I am working on. I need to add another column that would represent a percent change in k from day -1, by id. I put only two ids at day 2 to emphasize the fact that after day -1 some subjects won't be on the data frame any more. I tried something like this: pck<-by(dat,dat[,c("id","day")], function(x) { pc<-((x$k-x$k[x$day==-1])/x$k[x$day==-1])*100 }) but it didn't work. Then I tried: for(i in dat$id) { for(s in dat$day) { pc<-((dat$k[dat$id==i & dat$day==s]-dat$k[dat$id==i & dat$day==-1...
2016 Dec 12
0
TableGen - Help to implement a form of gather/scatter operations for Mips MSA
...the LLVM Mips back end (part of the MSA vector instructions) gather and scatter operations? Simon Dardis would be able to confirm but there aren't any as far as I know. The closest I can think of is in MSA where you can get a similar effect with a sequence of ld.df's and vshf.df's (or pck*.df's, ilv*.df's, etc. for some of the common cases). > If so, can you share with me the TableGen spec? (I tried to start from LD_DESC_BASE, but it doesn't seem to be trivial. Also, LLVM seems to have implemented scatter/gather instructions only for the x86 processor - there, the...
2019 Aug 01
2
[PATCH v4 1/5] vsock/virtio: limit the memory used per-socket
...hdr, sizeof(pkt->hdr), &iov_iter); if (nbytes != sizeof(pkt->hdr)) { virtio_transport_free_pkt(pkt); vq_err(vq, "Faulted on copying pkt hdr\n"); break; } > > ... > > nbytes = copy_to_iter(pkt->buf, pkt->len, &iov_iter); > > isn't pck len the actual length though? > It is the length of the packet that we are copying in the guest RX buffers pointed by the iov_iter. The guest allocates an iovec with 2 buffers, one for the header and one for the payload (4KB). > > if (nbytes != pkt->len) { > > virtio_trans...
2019 Aug 01
2
[PATCH v4 1/5] vsock/virtio: limit the memory used per-socket
...hdr, sizeof(pkt->hdr), &iov_iter); if (nbytes != sizeof(pkt->hdr)) { virtio_transport_free_pkt(pkt); vq_err(vq, "Faulted on copying pkt hdr\n"); break; } > > ... > > nbytes = copy_to_iter(pkt->buf, pkt->len, &iov_iter); > > isn't pck len the actual length though? > It is the length of the packet that we are copying in the guest RX buffers pointed by the iov_iter. The guest allocates an iovec with 2 buffers, one for the header and one for the payload (4KB). > > if (nbytes != pkt->len) { > > virtio_trans...
2019 Sep 01
3
[PATCH v4 1/5] vsock/virtio: limit the memory used per-socket
...virtio_transport_free_pkt(pkt); > > vq_err(vq, "Faulted on copying pkt hdr\n"); > > break; > > } > > > > > > ... > > > > nbytes = copy_to_iter(pkt->buf, pkt->len, &iov_iter); > > > > > > isn't pck len the actual length though? > > > > > > > It is the length of the packet that we are copying in the guest RX > > buffers pointed by the iov_iter. The guest allocates an iovec with 2 > > buffers, one for the header and one for the payload (4KB). > > BTW at...
2019 Sep 01
3
[PATCH v4 1/5] vsock/virtio: limit the memory used per-socket
...virtio_transport_free_pkt(pkt); > > vq_err(vq, "Faulted on copying pkt hdr\n"); > > break; > > } > > > > > > ... > > > > nbytes = copy_to_iter(pkt->buf, pkt->len, &iov_iter); > > > > > > isn't pck len the actual length though? > > > > > > > It is the length of the packet that we are copying in the guest RX > > buffers pointed by the iov_iter. The guest allocates an iovec with 2 > > buffers, one for the header and one for the payload (4KB). > > BTW at...
2019 Aug 01
2
[PATCH v4 1/5] vsock/virtio: limit the memory used per-socket
On Tue, Jul 30, 2019 at 04:42:25PM -0400, Michael S. Tsirkin wrote: > On Tue, Jul 30, 2019 at 11:35:39AM +0200, Stefano Garzarella wrote: (...) > > > > The problem here is the compatibility. Before this series virtio-vsock > > and vhost-vsock modules had the RX buffer size hard-coded > > (VIRTIO_VSOCK_DEFAULT_RX_BUF_SIZE = 4K). So, if we send a buffer smaller >
2019 Aug 01
2
[PATCH v4 1/5] vsock/virtio: limit the memory used per-socket
On Tue, Jul 30, 2019 at 04:42:25PM -0400, Michael S. Tsirkin wrote: > On Tue, Jul 30, 2019 at 11:35:39AM +0200, Stefano Garzarella wrote: (...) > > > > The problem here is the compatibility. Before this series virtio-vsock > > and vhost-vsock modules had the RX buffer size hard-coded > > (VIRTIO_VSOCK_DEFAULT_RX_BUF_SIZE = 4K). So, if we send a buffer smaller >
2009 Jan 24
1
Lordof the rings the conquest
hi, i want to play lord of the rings the conquest but in game menu the loading screen dont disappers and the wine console is fluted with: err:d3d:state_colorwrite (WINED3DRS_COLORWRITEENABLE1/2/3,0,7,7) not yet implemented. Missing of cap D3DPMISCCAPS_INDEPENDENTWRITEMASKS wasn't honored? is there any way to solve the problem?
2007 Dec 01
0
Lookup prior value in data.frame (was: Dismiss previous email)
...am working on. I need to add another > column that would represent a percent change in k from > day -1, by id. I put only two ids at day 2 to > emphasize the fact that after day -1 some subjects > won't be on the data frame any more. > > I tried something like this: > > pck<-by(dat,dat[,c("id","day")], function(x) { > pc<-((x$k-x$k[x$day==-1])/x$k[x$day==-1])*100 > }) > but it didn't work. > > Then I tried: > > for(i in dat$id) { > > for(s in dat$day) { > pc<-((dat$k[dat$id==i & &gt...
2019 Aug 01
0
[PATCH v4 1/5] vsock/virtio: limit the memory used per-socket
...t will be smaller then 4K, I think here it will > be discarded with an error: > > static void > vhost_transport_do_send_pkt(struct vhost_vsock *vsock, > struct vhost_virtqueue *vq) > { > ... > nbytes = copy_to_iter(pkt->buf, pkt->len, &iov_iter); isn't pck len the actual length though? > if (nbytes != pkt->len) { > virtio_transport_free_pkt(pkt); > vq_err(vq, "Faulted on copying pkt buf\n"); > break; > } > ... > } > > > This series changes this behavior since now we will split the packet in...
2012 Sep 25
2
OpenSSH banner doesnot display multibyte characters like korean
Hello, The banner message displayed on the screen contain octal values instead of korean chars. Prior to ssh 5.1 the banner message would display the charaters properly. I understand that starting from 5.1 the message is passed through strnvis() function. I looked into documentation on strnvis and found that it does not support multibyte chars and doesnt work well with international chars.
2016 Dec 09
5
TableGen - Help to implement a form of gather/scatter operations for Mips MSA
Hello. I read on page 4 of http://www.cs.fsu.edu/~whalley/cda5155/chap4.pdf that gather and scatter operations exist for Mips, named LVI and SVI, respectively. Did anyone think of implementing in the LLVM Mips back end (part of the MSA vector instructions) gather and scatter operations? If so, can you share with me the TableGen spec? (I tried to start from LD_DESC_BASE, but it
2019 Sep 01
0
[PATCH v4 1/5] vsock/virtio: limit the memory used per-socket
...f (nbytes != sizeof(pkt->hdr)) { > virtio_transport_free_pkt(pkt); > vq_err(vq, "Faulted on copying pkt hdr\n"); > break; > } > > > > ... > > > nbytes = copy_to_iter(pkt->buf, pkt->len, &iov_iter); > > > > isn't pck len the actual length though? > > > > It is the length of the packet that we are copying in the guest RX > buffers pointed by the iov_iter. The guest allocates an iovec with 2 > buffers, one for the header and one for the payload (4KB). BTW at the moment that forces another kma...
2019 Sep 02
0
[PATCH v4 1/5] vsock/virtio: limit the memory used per-socket
...> > vq_err(vq, "Faulted on copying pkt hdr\n"); > > > break; > > > } > > > > > > > > ... > > > > > nbytes = copy_to_iter(pkt->buf, pkt->len, &iov_iter); > > > > > > > > isn't pck len the actual length though? > > > > > > > > > > It is the length of the packet that we are copying in the guest RX > > > buffers pointed by the iov_iter. The guest allocates an iovec with 2 > > > buffers, one for the header and one for the payload...
2015 Jul 06
7
[PATCH 1/1] paint visual host key with unicode box-drawing characters
From: Christian Hesse <mail at eworm.de> Signed-off-by: Christian Hesse <mail at eworm.de> --- sshkey.c | 47 ++++++++++++++++++++++++++++++++++++----------- 1 file changed, 36 insertions(+), 11 deletions(-) diff --git a/sshkey.c b/sshkey.c index cfe5980..47511c2 100644 --- a/sshkey.c +++ b/sshkey.c @@ -44,6 +44,9 @@ #include <stdio.h> #include <string.h> #include