Displaying 20 results from an estimated 2000 matches similar to: "(unknown)"
2020 Apr 06
2
[PATCH] vdpa-sim: depend on HAS_DMA
On Mon, Apr 06, 2020 at 06:09:27AM -0700, Christoph Hellwig wrote:
> Pleae just drop the code - we should not add new drivers with custom
> DMA ops.
I'm not sure there's another way to do this: this not a driver, it's a
software emulator that pretends to be an actual device. We can't
have the platform supply DMA ops here since the platform is a regular
x86 or whatever.
--
2020 Apr 06
2
[PATCH] vdpa-sim: depend on HAS_DMA
On Mon, Apr 06, 2020 at 06:09:27AM -0700, Christoph Hellwig wrote:
> Pleae just drop the code - we should not add new drivers with custom
> DMA ops.
I'm not sure there's another way to do this: this not a driver, it's a
software emulator that pretends to be an actual device. We can't
have the platform supply DMA ops here since the platform is a regular
x86 or whatever.
--
2007 Oct 01
2
convert time series to data.frame
Dear R gurus
I would like to take a monthly time series and convert it to a data
frame without losing the tsp items, pleae
I've tried as.data.frame and data.frame but I get the series without
the time element.
Any suggestions, please?
tia
Edna Bell
2010 Nov 27
1
sed with several lines, how?
hyphen's [ - ] are just for marking the start/end of a pattern, but
there are _not in_ the pattern!
"OUTPUT" is what i want after "seding" the PATTERN#X's
so i for e.g.: need the first, and second "magic"
sed "FIRSTMAGIC" PATTERN#1
sed "SECONDMAGIC" PATTERN#2
PATTERN#1:
-----------------------------------
SOMETEXT#1
2007 Nov 29
1
How to perform Bayesian analysis in R?(corrected)
Dear Members i'm trying to access different packages used for Bayesian
analysis, but
failed to integrate after making the likelihood of the model the model
like this
a= exp(b)/summation(exp(b))
where 'b' = half of the natural log of 'a'
please If some one knows about this type of integration for posterior
distribution then pleae inform me
SYED ADIL HUSSAIN
MPHIL SCHOLER
QAU,
2008 Nov 06
1
Strang line while plotting failure curves
Dear R helper,
I encountered a problem when I tried to plot the cumulative failure rate
(i.e. 1 - survival probability). I have used the following code to plot. The
scenario is that patients are randomized to different treatment arm (rev in
the code), the PCI revascularization was monitored over 5 years.
#R code
testfit <- survfit(Surv(pcifu,pci)~rev,data=subproc)
testfit$surv <- 1 -
2008 Dec 19
5
paperclip
anyone can help me to use paperclip plugins..I have a problem using it.
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from
2001 Oct 18
1
AW: General Matrix Inverse
Thorsten is right. There is a direct formula for computing the Moore-Penrose
inverse
using the singular value composition of a matrix. This is incorporated in
the following:
mpinv <- function(A, eps = 1e-13) {
s <- svd(A)
e <- s$d
e[e > eps] <- 1/e[e > eps]
return(s$v %*% diag(e) %*% t(s$u))
}
Hope it helps.
Dietrich
2011 May 18
1
[Qemu-devel] Qcow2
On Wed, May 18, 2011 at 5:18 PM, <arun.sasi1 at wipro.com> wrote:
> Hello Stefan,
>
>
>
> Thank you very much for considering my issue...
>
>
>
> Here is My problem...
>
>
>
> 1) I have 4 VM`s Running on Base server.
>
> 2) Base server is having 15GB RAM.
>
> 3) I can start all VM`s apart from my file server.
>
> 4) File server is
2020 Apr 05
4
[PATCH] vdpa-sim: depend on HAS_DMA
set_dma_ops isn't available on all architectures:
make ARCH=um
...
drivers/vdpa/vdpa_sim/vdpa_sim.c: In function 'vdpasim_create':
>> drivers/vdpa/vdpa_sim/vdpa_sim.c:324:2: error: implicit declaration of function 'set_dma_ops'; did you mean 'set_groups'?
+[-Werror=implicit-function-declaration]
set_dma_ops(dev, &vdpasim_dma_ops);
2020 Apr 05
4
[PATCH] vdpa-sim: depend on HAS_DMA
set_dma_ops isn't available on all architectures:
make ARCH=um
...
drivers/vdpa/vdpa_sim/vdpa_sim.c: In function 'vdpasim_create':
>> drivers/vdpa/vdpa_sim/vdpa_sim.c:324:2: error: implicit declaration of function 'set_dma_ops'; did you mean 'set_groups'?
+[-Werror=implicit-function-declaration]
set_dma_ops(dev, &vdpasim_dma_ops);
2011 Jul 11
39
Help filling out a registration (I think it's called multi tenant)
Do you know when you are filling out a registration for a new account, and
you keep pressing next to fill the rest of the information in separate
pages?
I''d like to do that, but I have no idea how.
Basically I have a company model with its information, and a contacts model,
with belongs to my company (also each company has only one contact), and I''d
like for the user to fill in
2009 Apr 19
3
Exclude Files from Capistrano / Source Control
Hello,
I have some video clips I want to make accessible through my web server
(through the public folder). However, they are large and I do not want
to commit them to Git so that capistrano can automatically upload them.
What''s the best way of doing this?
Thanks,
John
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this
2019 Sep 14
7
File server as host for a Windows Server VM?
I hope that someone here can give some advice on the following:
I have a Samba based Active Directory. A CentOS 7.6 machine runs as a
file server and hosts the Windows user profiles for all the Windows
workstations.
Now management has decided that they need a Windows server for a couple
of administrative applications, which need MS SQL Server. That would be
the only role of this Windows.
2008 Jul 17
5
.build method
I have gone to the api and have searched the internet and looked
through the books that I have, but I am having trouble finding an
explanation on what the .build method actually does and how it is
used.
I guess the best example is if I want to create a todo list
application where I can create a new todo list and add to do items all
at the same time.
I would post to the todolist controller to
2011 Jun 30
2
How to play with shoulda with functional testing
Hi,
I am new in rails testing, and now i try to use shoulda to test the
functional section.
can anyone give me some advice, example or recommend tutorial site to
me..
thanks
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To
2009 Aug 13
2
ajax with will_paginate problem
i can use <%= link_to_remote("MEMBER LIST",:update => "mcont", :url =>
{:controller => :users, :action => :list }) %> this for user listing and
then it display record i want to do paging on this list file but it is
display one page when i click on second page this will no go to second
my controller
def list
#@images = Image.paginate :page =>
2009 Jun 23
3
Starting ruby script on server's reboot
Hi
I''m using passenger + apache.
with this combination, how can I start my ruby script on server''s
reboot?
now I type "ruby myscript.rb run" whenever server reboot.
2002 Oct 03
1
Another winbind question (hopefully easy one)
I setup SAMBA to use winbind to authenticate of a WinNT PDC
In the smb.conf I have a line
template homedir = /home/winnt/%U
which is file
I also use the pam module to create directories for
new users
pam_mkhomedir.so skel=/etc/sambaskel umask=0077
which is fine again.
My problem is that I can't tell or how do I tell pam_mkhomedir
to create the directories in /home/winnt/<user>
2006 Mar 02
1
Error while compiling code using wineg++ / winegcc
Hi!!
I am not able to compile a test program on solaris using winegcc tool.
Can anybody help?
Here's the program source code:
// file test.cpp
#include <stdio.h>
#include <windows.h>
int main ()
{
SYSTEMTIME lpSystemTime;
GetSystemTime(&lpSystemTime);
printf("Today is: %d/%d/%d\n", lpSystemTime.wYear,