search for: woould

Displaying 6 results from an estimated 6 matches for "woould".

Did you mean: would
2005 Jul 04
2
Permissions Question
...r\bin\rsync.exe -avvi --rsh="c:\bin\cwRsyncServer\bin\ssh.exe -l root" --password-file=c:\bin\cwRsyncServer\etc\secret --progress --stats /cygdrive/c/test/ jyana@192.168.0.175::test Aside from the irritating warning that "not all data may have copied over" - not sure why it woould give me this), my test files seem to copy over just fine. My question is this: unless I chmod 777 on the target directory of the remote host, rsync fails. I would prefer to have my perms set to 775, with owners set to root:wheel, if possible. Currently, the ssh user I am authenticating against...
2001 Nov 20
2
Problem: requested 10000 open files, 1014 are available ??
Hi, I am new to this list, and am really stumped on this issue with my samba servers. I woould really appreciate some help. Question: I am having the same type of issue. I was copping a huge set of files over to my samba server, and now, neither server works. Servers: 1) RH 7.1 running Samba, SSH, HTTPD 2) RH 7.1 running Samba, SSH, HTTPD The file trasfer crashed due to lack of space on b...
2006 Mar 21
1
Simulate Mixture Model data
Dear R Users?? I woould like to generate mixture model data. I try two type method as followings two method, can anyone tell me which is right? or better? 1. generate two vectors data y1 and y2 from f1 and f2 seperately, and calculate y=alpha1*y1+alpha2*y2, 2. generate prob=unif(1), if prob <alpha1 y=y1, else y=y2....
2006 May 17
2
Association data clobbering (foreign keys too?)
Can someone please confirm or correct the following statements? If I have the following tables create table as (id int, [...], b_id int); create table bs (id int, [...], a_id int); create table as_bs (a_id int, b_id int); and the associations woould be defined like this class A << ... habtm :bs belongs_to :b end so my Model A has a habtm collection of Bs *plus* a direct belongs_to link to one B (and vice versa). So a = A.find(:first) b = a.bs.first a2 = b.a might not give me back a, because b''s direct belongs_to a...
2001 Nov 20
0
RH 7.1 and Samba having fun not working for no apparent reason, please check this out....
Hi, I am new to this list, and am really stumped on this issue with my samba servers. I woould really appreciate some help. Question: I am having the same type of issue. I was copping a huge set of files over to my samba server, and now, neither server works. Servers: 1) RH 7.1 running Samba, SSH, HTTPD 2) RH 7.1 running Samba, SSH, HTTPD The file trasfer crashed due to lack of space on b...
2006 Aug 09
8
AJAX image manipulation
I have this code in a controller that returns images to my browser...with ROR. def index @products = Product.find_all_ pictures end ....this is the .rhtml.. <% for photo in @pic -%> <div class="entry"> <img src="<%= photo.image_url %>"/> <h3><%= h(photo.title) %></h3> <%= photo.description %>