similar to: what is mechanism of help(foo)?

Displaying 20 results from an estimated 160 matches similar to: "what is mechanism of help(foo)?"

2003 Sep 09
4
How to convert a Rd file into multi html files?
Hi, I wrote all documents for each objects in my package in one .Rd file. Now I can't convert the .Rd file into multi html files such that a html file corresponds a object in package. The command I used was ' R CMD Rdconv -t html foo.Rd'. It just converted the document of first object in .Rd into html format. I had to write a perl script to satisfy myself. But is there a more direct
2013 Jan 04
1
failed to run xen3.x
I want to run the examples of a book titled "The Definitive Guide to the Xen Hypervisor", but Xen4.x seems not support the examples and says something like xc: error: panic: xc_dom_bzimageloader.c:607: xc_dom_probe_bzimage_kernel: kernel is not a bzImage: Invalid kernel So I have to install Xen3.4. On vmware, I follow the instructions from Internet to install Ubuntu 1004 with kernel
2013 Jan 06
0
Re: Xen-users Digest, Vol 95, Issue 8
I''m just a newb at xen, but here''s what I can tell you from my own experience getting xend going: The appropriate features for evtchn and gntdev must be turned on in the kernel. Check /boot/config-`uname -r` to see if CONFIG_XEN_GNTDEV=y and CONFIG_XEN_DEV_EVTCHN=m (maybe y is okay? I''m not sure). Just do it to verify that the precompiled kernel has the options you
2018 Mar 16
0
[PATCH v2 3/5] v2v: cmdline: Replace { foo = foo } with { foo } in record expression.
See: https://forge.ocamlcore.org/docman/view.php/77/112/leroy-cug2010.pdf --- v2v/cmdline.ml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/v2v/cmdline.ml b/v2v/cmdline.ml index 6aba4afb5..fdd0f2614 100644 --- a/v2v/cmdline.ml +++ b/v2v/cmdline.ml @@ -627,11 +627,9 @@ read the man page virt-v2v(1). output_format, output_alloc in { - compressed =
2014 Jan 27
0
Excluding; iff foo.part exists, exclude foo and foo.part
I'm syncing a download directory, where various programs drop their files. I would like to exclude partial firefox downloads. This could be accomplished by excluding "foo" and "foo.part", iff "foo.part" exists. How can I accomplish this with exclude rules? Or would I have to generate the rules dynamically, by some script.
2005 Dec 18
2
[Bug?] in tests, @foo.bars_count <> @foo.bars.count
Example: if a ''foo'' has 3 ''bars'', bars_count == "0" # ERROR bars.count == 3 # OK It looks like a bug to me. Alain -- Posted via http://www.ruby-forum.com/.
2005 Feb 15
0
Solved: foo.bat works, but just 'foo' causes "not recognized as an internal ..."
Hi folks. First time posting. I've managed to puzzle the following out. I found a few other articles on the web that asked the same question, but my search terms didn't throw up an article with an answer, so I thought I'd write the following: Where s: is a samba share that otherwise works for read/write: ---------------------------------------------- S:\misc\logs>foo.bat
2003 Mar 17
0
R CMD SHLIB uses foo.c instead of foo.cc if both are present (PR#2648)
>>>>> faheem writes: > On Sun, 16 Mar 2003, Duncan Temple Lang wrote: >> The "fix" is relatively simple. One can change the order of the >> suffixes listed in $R_HOME/etc/Makeconf (i.e. the Makeconf.in version) >> to alter the precedence. If one changes the line >> >> .SUFFIXES: .c .cc .cpp .C .d .f .lo .o >> >> to place
2011 Nov 02
1
difference between foo$a[2] <- 1 and foo[2,"a"] <- 1
Hallo Can anyone tell me the difference between foo$a[2] <- 1 and foo[2,"a"] <- 1 ? I thought that both expressions are equivalent, but when I run the following example, there is obviously a difference. > foo <- data.frame(a=NA,b=NA) > foo a b 1 NA NA > foo$a[1] <- 1 > foo$b[1] <- 2 > foo$a[2] <- 1 Error in `$<-.data.frame`(`*tmp*`,
2003 Mar 16
1
R CMD SHLIB uses foo.c instead of foo.cc if both are present (PR#2645)
On Sun, 16 Mar 2003, Duncan Temple Lang wrote: > The "fix" is relatively simple. One can change the order of the > suffixes listed in $R_HOME/etc/Makeconf (i.e. the Makeconf.in version) > to alter the precedence. If one changes the line > > .SUFFIXES: .c .cc .cpp .C .d .f .lo .o > > to place the '.c' after the '.cc', your example will work as you
2008 May 24
1
3.02 bug? Symlink ->foo changed to ->/rsyncd-munged/foo
On Mac OS X 10.5.2 I run rsync to keep a couple of instances of my / usr/local tree in sync. With Apple's rsync I run (e.g.): sudo /usr/bin/rsync --rsync-path=/usr/bin/rsync -E --progress -avu -- delete --dry-run --exclude=TeXLive-working-copy/ --exclude=context- update/ --exclude=.Spotlight-V100/ --exclude=.fseventsd/ \ -e "ssh -i /Users/gerben/.ssh/id_rsync -l root" \
2006 Jun 02
3
tftpd-hpa: remap '/tftpboot/ncd4/foo' into 'ncd4/foo'
Hello, This about remapping in the HPA tftp server. A client does request for '/tftpboot/ncd4/foo' which should be 'ncd4/foo' I have created a remap file that looks now like this: r tftpboot/ncd4/modshmx/login.hmx ncd4/modshmx/login.hmx r tftpboot/ncd4/modshmx/setup.hmx ncd4/modshmx/setup.hmx r tftpboot/ncd4/modshmx/term.hmx ncd4/modshmx/term.hmx Because r
2006 Jun 30
3
@foo = Bar.new(params[:foo])
While doing @foo = Bar.new(params[:foo]) in a controller, the application is open to injection attacks. For example, My model has following attributes : name password admin - boolean Now, if on my form I''m just acception name & password, and doing @foo = Bar.new(params[:foo]) in my controller, someone can just enter following in form : <%= text_field ''foo'',
2003 Mar 16
1
R CMD SHLIB uses foo.c instead of foo.cc if both are present (PR#2644)
Full_Name: Faheem Mitha Version: 1.6.2 OS: Debian GNU/Linux Submission from: (NULL) (209.42.199.193) Suppose you are making a shared library using R CMD SHLIB foo.cc If there is a file called foo.c in the same directory, then it will be used instead. faheem ~/scratch/r-base>R CMD SHLIB foo.cc gcc-3.0 -I/usr/lib/R/include -D__NO_MATH_INLINES -mieee-fp -fPIC -g -O2 -c foo.c -o foo.o
2010 Jun 21
1
doveadm search: Error: Syncing mailbox foo failed: Mailbox doesn't exist: foo
Hi Timo, doveadm reports errors for \Noselect mailboxes. What I have: 1 LIST "" * * LIST (\HasNoChildren) "/" "Templates" * LIST (\HasChildren) "/" "INBOX" * LIST (\Noselect \HasChildren) "/" "INBOX/Lists" * LIST (\Noselect \HasChildren) "/" "INBOX/Lists/vmm" * LIST (\HasNoChildren) "/"
2019 Jul 21
5
[Bug 1354] New: cat foo.nft | nft -f - produces syntax error not seen with nft -f foo.nft
https://bugzilla.netfilter.org/show_bug.cgi?id=1354 Bug ID: 1354 Summary: cat foo.nft | nft -f - produces syntax error not seen with nft -f foo.nft Product: nftables Version: unspecified Hardware: x86_64 OS: Debian GNU/Linux Status: NEW Severity: normal Priority: P5
2003 Oct 03
4
foo.RData or foo.r?
Dear All, I suspect this is kind of dumb, but when I was under the thrall of the dark lord (read, using a W2K box), all my work in R files came out as foo.RData. I moved on to GNU/Linux, and all the old .RData files keep on working as they used. No problems in loading and stuff. But I use R from the terminal. Assuming I decide to switch to emacs, do I need to save my work as foo.r? what about my
2014 May 31
2
dovecot: lda(foo): Error: User foo doesn't have home dir set, disabling duplicate database
Hello everyone, I have a small problem with dovecot installed on ubuntu-13.10. I use dovcot as LDA with a LDAP-passdb and a pam-passdb. The userdb is static. A mail to LDAP-user 'foo' is delivered with the error-message dovecot: lda(foo): Error: User foo doesn't have home dir set, disabling duplicate database A mail to the pam-user 'bar' will deliverd without this error.
2006 Aug 18
0
Why does scaffolding''s list.rhtml use "foo.send(column.name)" ?
HI all, I"m using 1.1.6 script/generate scaffolding. Why does the view/foos/list.rhtml use "foo.send(column.name)" to display the contents of each column? I had to change this to "foo[column.name]" to get the display right in a couple of models. Specifically, one model has a column named ''display'', is that conflicting with something internally to AR ?
2007 Feb 15
2
underscores ($name_$foo) in string assignments
Hello In a component, I was trying to do: $bar = "lets make a new string with $name_$foo in it." however the "$name_" fails to appear in the resulting string: "lets make a new string with valueOfFoo in it." Is there something special about $name_ here? If I replace the underscore with a dash (... $name-$foo ... ) it works fine. thanks Jesse Jesse