Displaying 20 results from an estimated 312 matches for "stanley".
2017 Nov 17
3
[PATCH] virto_net: remove empty file 'virtio_net.'
Looks like this was mistakenly added to the tree as part of
commit 186b3c998c50 ("virtio-net: support XDP_REDIRECT").
Signed-off-by: Joel Stanley <joel at jms.id.au>
---
drivers/net/virtio_net. | 0
1 file changed, 0 insertions(+), 0 deletions(-)
delete mode 100644 drivers/net/virtio_net.
diff --git a/drivers/net/virtio_net. b/drivers/net/virtio_net.
deleted file mode 100644
index e69de29bb2d1..000000000000
--
2.14.1
2017 Nov 17
3
[PATCH] virto_net: remove empty file 'virtio_net.'
Looks like this was mistakenly added to the tree as part of
commit 186b3c998c50 ("virtio-net: support XDP_REDIRECT").
Signed-off-by: Joel Stanley <joel at jms.id.au>
---
drivers/net/virtio_net. | 0
1 file changed, 0 insertions(+), 0 deletions(-)
delete mode 100644 drivers/net/virtio_net.
diff --git a/drivers/net/virtio_net. b/drivers/net/virtio_net.
deleted file mode 100644
index e69de29bb2d1..000000000000
--
2.14.1
2015 Dec 10
3
VNC on centOS
On Thu, 2015-12-10 at 08:37 -0500, Jonathan Billings wrote:
> If you're running Xvnc -inetd out of xinetd or systemd sockets, the
> updates of TigerVNC in 7.2 (CR) break it. I've got an open bug with
> Red Hat about it, and a fix is on the way.
Privide the BZ Link please?
2008 Feb 11
4
Conditional rows
Hi,
Given a simple example, test <- matrix(c(0.1, 0.2, 0.1, 0.2, 0.1, 0.1, 0.3,
0.1, 0.1), 3, 3)
How to generate row indexes for which their corresponding row values are
less than or equal to 0.2 ? For this example, row 2 and 3 are the correct
ones.
Thanks
[[alternative HTML version deleted]]
2008 Apr 10
6
How to create a legend without plot, and to use scientific notation for axes label ?
Hi,
I have a 3 by 2 plots per page, and would like to place a legend on the last
region. How to do that ?
Also, is there any way to specify scientific notation for axes label ?
[[alternative HTML version deleted]]
2006 Oct 24
6
extract certain values from a ts
Hi,
Having several daily wind speed time series I want to extract those
consecutive days over and below certain values (i.e. 5 < x <8) Don't
know which funtion to use (aggregate, lapply?) and how to do it.
Thanks in advance
Antonio
2011 Jul 12
1
Quantitative Analyst/Quantitative Developer
Hello,
I would like to post the below position on your site.
Thanks,
Quantitative Analyst/Quantitative Developer
MSIM Global Risk & Analysis, Quantitative Research & Model Review group
Morgan Stanley Investment Management (MSIM), together with its investment advisory affiliates, has more than 680 investment professionals around the world and approximately $279 billion in assets under management or supervision as of December 31, 2010. MSIM strives to provide outstanding long-term investment per...
2008 Apr 18
2
Is there any function to skip a loop in a for loop ?
Hi,
Is there any function to skip a loop in a for loop ?
Thanks
Stanley
[[alternative HTML version deleted]]
2014 Feb 11
6
[PATCH 0/3] tools/virtio: build fixes for virtio_test
Recent changes to drivers/virtio broke compilation for the tests in
tools/virtio. The following patches are build fixes for those changes, as well
as a fix for a typo that would have never built.
The changes were tested on my amd64 system against 3.14-rc2.
Joel Stanley (3):
tools/virtio: update internal copies of headers
tools/virtio: fix missing kmemleak_ignore symbol
tools/virtio: add a missing )
drivers/virtio/virtio_ring.c | 1 +
tools/virtio/linux/kmemleak.h | 3 +++
tools/virtio/linux/virtio.h | 4 ++--
tools/virtio/virtio_test.c | 2 +-
4 fil...
2014 Feb 11
6
[PATCH 0/3] tools/virtio: build fixes for virtio_test
Recent changes to drivers/virtio broke compilation for the tests in
tools/virtio. The following patches are build fixes for those changes, as well
as a fix for a typo that would have never built.
The changes were tested on my amd64 system against 3.14-rc2.
Joel Stanley (3):
tools/virtio: update internal copies of headers
tools/virtio: fix missing kmemleak_ignore symbol
tools/virtio: add a missing )
drivers/virtio/virtio_ring.c | 1 +
tools/virtio/linux/kmemleak.h | 3 +++
tools/virtio/linux/virtio.h | 4 ++--
tools/virtio/virtio_test.c | 2 +-
4 fil...
2006 Feb 21
2
gnucash for Centos 4.1
Where can I find the RPMs (i do not use yum at this time) for the gnucash
application progrm?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.centos.org/pipermail/centos/attachments/20060221/2e25c131/attachment-0002.html>
2004 Apr 01
3
Samba as remote file share
...any luck attempting to deploy Samba over the internet. Is this a
feasible solution with Samba or should I have him look elsewhere? If
Samba will cut it does anyone have any pointers or suggestions for the
most secure way to implement a setup like this? Thanks in advance for
any help...
Adam Stanley
Nethosters, Inc.
2006 Jul 25
4
Centos 4.4 ?
Will there be a Centos 4.4 release sometine in the near future?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.centos.org/pipermail/centos/attachments/20060725/67a7f624/attachment-0001.html>
2006 Feb 26
3
Upgrade of Centos 4.1 with 4.2 ISO disc
Can I upgrade my Centos 4.1 system with the 4.2 ISO install disc?
If so, how do I do it? It seams to want to do a full (i.e. format, wipe out old)
install over everything. I do not want to lose my various configurations
(e.g. kppp, kde desktop settings, etc) that I have already set up under
4.1.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2008 Feb 13
3
indices of rows containing one or more elements >0
Hi,
Given test <- matrix(c(0,2,0,1,3,5), 3,2)
> test[test>0]
[1] 2 1 3 5
These are values >0
> which(test>0)
[1] 2 4 5 6
These are array indices of those values >0
> which(apply(test>0, 1, all))
[1] 2
This gives the row whose elements are all >0
I can't seem to get indices of rows containing one or more elements >0
[[alternative HTML version deleted]]
2004 Nov 01
1
case-insensitive ZIP
...the contributed zipfiles are ZIPfiles. The routine did not work
for me out of the box.
Jeremy Primer
--------------------------------------------------------
This is not an offer (or solicitation of an offer) to buy/sell the securities/instruments mentioned or an official confirmation. Morgan Stanley may deal as principal in or own or act as market maker for securities/instruments mentioned or may advise the issuers. This is not research and is not from MS Research but it may refer to a research analyst/research report. Unless indicated, these views are the author's and may differ from th...
2004 Nov 01
1
case-insensitive ZIP
...the contributed zipfiles are ZIPfiles. The routine did not work
for me out of the box.
Jeremy Primer
--------------------------------------------------------
This is not an offer (or solicitation of an offer) to buy/sell the securities/instruments mentioned or an official confirmation. Morgan Stanley may deal as principal in or own or act as market maker for securities/instruments mentioned or may advise the issuers. This is not research and is not from MS Research but it may refer to a research analyst/research report. Unless indicated, these views are the author's and may differ from th...
2006 Oct 09
1
read.zoo question
...uld point me in the right
direction for looking ( i.e a ?whatever ) that would be a great help.
thanks.
--------------------------------------------------------
This is not an offer (or solicitation of an offer) to buy/sell the securities/instruments mentioned or an official confirmation. Morgan Stanley may deal as principal in or own or act as market maker for securities/instruments mentioned or may advise the issuers. This is not research and is not from MS Research but it may refer to a research analyst/research report. Unless indicated, these views are the author's and may differ from th...
2006 Oct 18
2
not understanding a do.call
...seful to use do.call. i realize it takes a
list but that's
all i know about why one use it ? thanks.
--------------------------------------------------------
This is not an offer (or solicitation of an offer) to buy/sell the securities/instruments mentioned or an official confirmation. Morgan Stanley may deal as principal in or own or act as market maker for securities/instruments mentioned or may advise the issuers. This is not research and is not from MS Research but it may refer to a research analyst/research report. Unless indicated, these views are the author's and may differ from th...
2006 Oct 24
4
avoiding a loop
...}
#-----------------------------------------------------------------------
-------------------------
--------------------------------------------------------
This is not an offer (or solicitation of an offer) to buy/sell the securities/instruments mentioned or an official confirmation. Morgan Stanley may deal as principal in or own or act as market maker for securities/instruments mentioned or may advise the issuers. This is not research and is not from MS Research but it may refer to a research analyst/research report. Unless indicated, these views are the author's and may differ from th...