search for: refernc

Displaying 20 results from an estimated 43 matches for "refernc".

Did you mean: refernce
2006 May 31
2
I''m Collecting Media Refernces for Ruby and Rails
I''m trying to collect media references (URLs) to articles, podcasts, and videos about Ruby and Ruby on Rails, like this month''s Linux Journal ( http://www.linuxjournal.com/issue/147) or the recent DDJ article ( http://www.ddj.com/dept/architect/187203512). If have such a collections yourself (or just know of some good references), could you please share them on this thread.
2001 Dec 27
5
new lattice/grid
I just installed R-1.4.0 on my Win2k machine from SetupR.exe. Everything seems to be fine with the base and recommended packages. However, when I install the lattice and grid packages they do not seem to work. Everything I try results in something like this: Instruction 0x00543f06 refernced memory 0x00000000. The memory cannot be "read". and I am getting kicked out of R. Has anyone experienced this or is it just me? Andy PS. I used install.packages menu item to install lattice and grid from the main CRAN site. __________________________________ Andy Jaworski Engin...
2006 Aug 04
5
query across tables
I am trying to do things the proper rails way and use the auto generated id to refernce other tables. Now I''ve hit a wall in trying to write a query. timesheets: id, employee_id, code_id, ... values codes: id, job_number, code How can I show just the timesheets that belong to a specific job? I would need to check the codes table and look at the jobs, so I was thinking...
2004 Aug 27
6
FXOs
...thing but problems with them. I also took part in Sipura's beta program, for the SPA-3000. While it can be an improvement over the X100p, it presently has echo problems that make it unusable. Sipura has not acknowledged the problem ( at least to me) although several in the user community make refernce to new firmware that might address the issue, real soon now. I see a lot of activity recently on-list about the TDM-400. Of course, mentions on-list are more than likely the result of people having problems. We don't hear about people who have no issues with a product. So, the nature of my i...
2010 Jan 21
2
What is the difference between S and R?
On Thu, Jan 21, 2010 at 9:07 AM, Giovanni Petris <GPetris at uark.edu> wrote: > > I have found a good refernce to be "S Programming" by Venables and > Ripley. I'll take a look at this book. Since S and R are not completely the same, there are delicate differences between S and R, which an S book may be confusing if I want to learn R. One example is Statistical Models in S by Chambers and...
2018 Jan 03
3
SSHD and PAM
On Wed, 2018-01-03 at 13:50 +0530, Sudarshan Soma wrote: > HI, I do see some refernce on it: but seems not closed > https://marc.info/?l=secure-shell&m=115513863409952&w=2 > > http://bugzilla.mindrot.org/show_bug.cgi?id=1215 > > > Is this patch available in latest versions, 7.6? No. It never was. The SSSD is using NSS (Name Service Switch) [1] way of...
2006 Jun 19
1
RJS Templates
I have a page that when a form gets submitted, I use page.insert_html to stick a div in another div. The problem is, when I want to refernce it later on, the IDs are not unique. So to get around this, I concatenated the id of the item to the end of the div name. Which is fine. I did the same in the RJS template as well, but it''s not finding that div. I tried it with string interpolation thusly: page.replace_html "div...
2006 May 08
2
Email documentaion
Hi To Every Bory! Thanks for clarifying the doubts! I want senfd the mails I have send email through action mailer but i could not find the solution for setting subjects , other options, Give the refernces link! Thnaks and Reagdrs, -Kumar -- Posted via http://www.ruby-forum.com/.
2003 Sep 08
1
3.0.0rc2 log error message - domain_user_groups related
Hi all: I've looked in the archives and seen several refernces to this error message but no solution put forth. I'm running samba 3.0.0 rc2 on RedHat 9. The following shows up for each of my users in the syslog: Sep 8 15:17:14 main2 smbd[31974]: get_domain_user_groups: primary gid of user [nsb] is not a Domain group ! Sep 8 15:17:14 main2 smbd[319...
2004 Aug 18
2
[LLVMdev] Forward of moderated message
An embedded message was scrubbed... From: kapil at iitk.ac.in Subject: Help regarding LLVM IR Date: Wed, 18 Aug 2004 22:31:41 +0530 (IST) Size: 1833 URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20040818/584b1397/attachment.mht>
2018 Jan 03
2
SSHD and PAM
Hi I am trying to write pam_radius module which talks to RADIUS server for aaa. I see sshd checks /etc/passwd for user list. Since RADIUS server has user list, can sshd ignore this check for RADIUS/TACACS+ authentication, Please suggest if there are any flags to control it. I am using the following versions. OpenSSH_6.6p1, OpenSSL 1.0.2n 7 Dec 2017 I see sssd (NAS) being used for such use
2012 Jun 15
3
[LLVMdev] object construction patterns and unique_ptr
...as an interface that can be simplified down to: virtual error_code readFile(StringRef path, std::unique_ptr<lld::File> &result); But this interface has become awkward to use. There are two "return" values. This method is a unique_ptr "source" but the use of a by-refernce parameter means you have to start with an uninitialized unique_ptr and the readFile() has to std::move() into it. unique_ptr is much nicer to use as a return value. An other issue is that since llvm::error_code was designed to return a fixed set of strings, there is no way to return a dynamic e...
2010 Dec 08
2
[PATCH] xen: gntdev: move use of GNTMAP_contains_pte next to the map_op
This flag controls the meaning of gnttab_map_grant_ref.host_addr and specifies that the field contains a refernce to the pte entry to be used to perform the mapping. Therefore move the use of this flag to the point at which we actually use a reference to the pte instead of something else, splitting up the usage of the flag in this way is confusing and potentially error prone. The other flags are all properti...
2007 Apr 09
1
Modified Sims test
Does anyone know of a package that includes the Modified Sims test [Gewerke, 1983, Sims, 1972]? This test is used in econometrics and is a kind of alternative to the Granger test [Granger, 1969], which is in the package lmtest. Thanks in advance, chris Refernces: Gewerke, J., R. Meese, and W. Dent (1983), "Comparing Alternative Tests of Causality in Temporal Systems: Analytic Results and Experimental Evidence." Journal of Econometrics, 83, 161-194. Granger, C.W.J. (1969), "Investigating Causal Relations by Econometric Methods and Cross-...
2012 Jun 20
3
[LLVMdev] object construction patterns and unique_ptr
...gt; virtual error_code readFile(StringRef path, > std::unique_ptr<lld::File> &result); > > >> > > >> But this interface has become awkward to use. There are two "return" > values. This method is a unique_ptr "source" but the use of a by-refernce > parameter means you have to start with an uninitialized unique_ptr and the > readFile() has to std::move() into it. unique_ptr is much nicer to use as > a return value. > > > > > > Not a c++'11 expert here, but does a returning an std::tuple work? > > I tal...
2012 Jun 16
0
[LLVMdev] object construction patterns and unique_ptr
...t can be simplified down to: > > virtual error_code readFile(StringRef path, std::unique_ptr<lld::File> &result); > > But this interface has become awkward to use. There are two "return" values. This method is a unique_ptr "source" but the use of a by-refernce parameter means you have to start with an uninitialized unique_ptr and the readFile() has to std::move() into it. unique_ptr is much nicer to use as a return value. Not a c++'11 expert here, but does a returning an std::tuple work? > An other issue is that since llvm::error_code was des...
2012 Jun 19
0
[LLVMdev] object construction patterns and unique_ptr
...>> > >> virtual error_code readFile(StringRef path, std::unique_ptr<lld::File> &result); > >> > >> But this interface has become awkward to use. There are two "return" values. This method is a unique_ptr "source" but the use of a by-refernce parameter means you have to start with an uninitialized unique_ptr and the readFile() has to std::move() into it. unique_ptr is much nicer to use as a return value. > > > > Not a c++'11 expert here, but does a returning an std::tuple work? > I talked to Howard about that. It...
2012 Jun 18
6
[LLVMdev] object construction patterns and unique_ptr
...fied down to: >> >> virtual error_code readFile(StringRef path, std::unique_ptr<lld::File> &result); >> >> But this interface has become awkward to use. There are two "return" values. This method is a unique_ptr "source" but the use of a by-refernce parameter means you have to start with an uninitialized unique_ptr and the readFile() has to std::move() into it. unique_ptr is much nicer to use as a return value. > > Not a c++'11 expert here, but does a returning an std::tuple work? I talked to Howard about that. It does work, but...
2012 Jun 20
0
[LLVMdev] object construction patterns and unique_ptr
...> >> virtual error_code readFile(StringRef path, std::unique_ptr<lld::File> &result); > > >> > > >> But this interface has become awkward to use. There are two "return" values. This method is a unique_ptr "source" but the use of a by-refernce parameter means you have to start with an uninitialized unique_ptr and the readFile() has to std::move() into it. unique_ptr is much nicer to use as a return value. > > > > > > Not a c++'11 expert here, but does a returning an std::tuple work? > > I talked to Howard a...
2019 Sep 06
2
[PATCH 16/18] virtiofs: Use virtio_fs_mutex for races w.r.t ->remove and mount path
On Thu, Sep 05, 2019 at 03:48:57PM -0400, Vivek Goyal wrote: > It is possible that a mount is in progress and device is being removed at > the same time. Use virtio_fs_mutex to avoid races. > > This also takes care of bunch of races and removes some TODO items. > > Signed-off-by: Vivek Goyal <vgoyal at redhat.com> > --- > fs/fuse/virtio_fs.c | 32