search for: foon

Displaying 20 results from an estimated 26 matches for "foon".

Did you mean: fool
2004 Apr 20
2
Creating variable names
...n, but I have scant experience in R. It would be very convenient in doing lots of plots to be able to do them in a loop that stepped through a vector of variable names. For example one could say x<-("mydates") y<-c("foo1","foo2","foo3") #where "foon" were vectors plot(x,y[1],type="n") points(x,y[1]) points(x,y[2],pch=2) points(x,y[3],pch=3) This is pretty easy in Perl, but of course Perl is not for plotting. Of course one could construct a data structure in R that would hold what was wanted and maybe that is the way to go. Bu...
2004 Jun 03
3
Sloppy argument checking for named arguments
...a feature, and the dot is not the issue here. R uses partial argument matching on function arguments. So: > f <- function(foobar = 0){print(foobar)} > f function(foobar = 0){print(foobar)} > > f(fo=1) [1] 1 > f(foo=1) [1] 1 > f(foob=1) [1] 1 > f(fooba=1) [1] 1 > f(foon=1) Error in f(foon = 1) : unused argument(s) (foon ...) > > f(foobar2=1) Error in f(foobar2 = 1) : unused argument(s) (foobar2 ...) This is mentioned in Venables & Ripley, MASS 4th edition on p. 55. I can't find it right now in the "Introduction to R" that is linked to on t...
2002 Dec 20
1
"force group" not working with shared directories
...eal with both file-locking and group ownership. I have read that I need essentially the following in my smb.conf file: [lab] path = /usr2/lab available = yes public = yes guest only = no writeable = yes browseable = yes valid users = foonly, hart only user = no oplocks = No level2oplocks = No create mask = 770 directory mask = 770 force group = lab with the important lines being "create mask", "directory mask" and "force group". The problem is that whil...
2016 Jun 08
2
Intended behavior of CGSCC pass manager.
...> ) >> >> >> >> I have a couple overall questions/concerns: >> >> >> 1. The ref graph can easily go quadratic. E.g. >> >> typedef void (*fp)(); >> fp funcs[] = { >> &foo1, >> &foo2, >> ... >> &fooN >> } >> void foo1() { funcs[something](); } >> void foo2() { funcs[something](); } >> ... >> void fooN() { funcs[something](); } >> >> One real-world case where this might come about is in the presence of >> vtables. >> >> The existing CGS...
2012 Nov 15
1
referring to earlier SVN commits
...ollowed by a committer email address, followed by ':' and a 1-origin sequence number if the date/time pair is not unique in the repository; it refers to a commit without being VCS-specific. Thus, instead of "commit 304a53c2" or "r2355", "2011-10-25T15:11:09Z!fred at foonly.com". - http://www.catb.org/~esr/reposurgeon/reposurgeon.html Also, once we transition to native Git repositories, you will be able to amend the most recent commit before you push. This should reduce the number of "typo in previous commit" messages. -- Charles Lepple clepple at...
2016 Jun 08
2
Intended behavior of CGSCC pass manager.
...t; I have a couple overall questions/concerns: >>> >>> >>> 1. The ref graph can easily go quadratic. E.g. >>> >>> typedef void (*fp)(); >>> fp funcs[] = { >>> &foo1, >>> &foo2, >>> ... >>> &fooN >>> } >>> void foo1() { funcs[something](); } >>> void foo2() { funcs[something](); } >>> ... >>> void fooN() { funcs[something](); } >>> >>> One real-world case where this might come about is in the presence of >>> vtables. &g...
2016 Jun 08
12
Intended behavior of CGSCC pass manager.
...no transformation we can statically make in the CGSCC passes can ever cause us to need to merge SCC's in the ref graph. ) I have a couple overall questions/concerns: 1. The ref graph can easily go quadratic. E.g. typedef void (*fp)(); fp funcs[] = { &foo1, &foo2, ... &fooN } void foo1() { funcs[something](); } void foo2() { funcs[something](); } ... void fooN() { funcs[something](); } One real-world case where this might come about is in the presence of vtables. The existing CGSCC pass manager does not have this issue AFAIK because it does not consider the ref grap...
2016 Jun 08
0
Intended behavior of CGSCC pass manager.
...ke in the CGSCC passes can ever > cause us to need to merge SCC's in the ref graph. > ) > I have a couple overall questions/concerns: > 1. The ref graph can easily go quadratic. E.g. > typedef void (*fp)(); > fp funcs[] = { > &foo1, > &foo2, > ... > &fooN > } > void foo1() { funcs[something](); } > void foo2() { funcs[something](); } > ... > void fooN() { funcs[something](); } > One real-world case where this might come about is in the presence of > vtables. > The existing CGSCC pass manager does not have this issue AFAIK...
2016 Jun 08
3
Intended behavior of CGSCC pass manager.
...t; I have a couple overall questions/concerns: >>> >>> >>> 1. The ref graph can easily go quadratic. E.g. >>> >>> typedef void (*fp)(); >>> fp funcs[] = { >>> &foo1, >>> &foo2, >>> ... >>> &fooN >>> } >>> void foo1() { funcs[something](); } >>> void foo2() { funcs[something](); } >>> ... >>> void fooN() { funcs[something](); } >>> >>> One real-world case where this might come about is in the presence of vtables. >>> &g...
2016 Jun 08
2
Intended behavior of CGSCC pass manager.
...e us to need to merge SCC's in the ref graph. > ) > > > > I have a couple overall questions/concerns: > > > 1. The ref graph can easily go quadratic. E.g. > > typedef void (*fp)(); > fp funcs[] = { > &foo1, > &foo2, > ... > &fooN > } > void foo1() { funcs[something](); } > void foo2() { funcs[something](); } > ... > void fooN() { funcs[something](); } > > One real-world case where this might come about is in the presence of vtables. > > The existing CGSCC pass manager does not have this issue AF...
2016 Jun 08
2
Intended behavior of CGSCC pass manager.
...> ) >> >> >> >> I have a couple overall questions/concerns: >> >> >> 1. The ref graph can easily go quadratic. E.g. >> >> typedef void (*fp)(); >> fp funcs[] = { >> &foo1, >> &foo2, >> ... >> &fooN >> } >> void foo1() { funcs[something](); } >> void foo2() { funcs[something](); } >> ... >> void fooN() { funcs[something](); } >> >> One real-world case where this might come about is in the presence of >> vtables. >> >> The existing CGS...
2016 Jun 09
2
Intended behavior of CGSCC pass manager.
...cerns: >>>> >>>> >>>> 1. The ref graph can easily go quadratic. E.g. >>>> >>>> typedef void (*fp)(); >>>> fp funcs[] = { >>>> &foo1, >>>> &foo2, >>>> ... >>>> &fooN >>>> } >>>> void foo1() { funcs[something](); } >>>> void foo2() { funcs[something](); } >>>> ... >>>> void fooN() { funcs[something](); } >>>> >>>> One real-world case where this might come about is in the presence...
2012 Jul 26
4
Time rsYnc Machine (tym)
http://dragoman.org/tym Regards Tomas
2003 Dec 04
8
[Bug 769] dh-group-exchange should be configurable off in client and server
http://bugzilla.mindrot.org/show_bug.cgi?id=769 Summary: dh-group-exchange should be configurable off in client and server Product: Portable OpenSSH Version: 3.7p1 Platform: All OS/Version: All Status: NEW Severity: enhancement Priority: P2 Component: ssh AssignedTo:
2016 Jun 08
2
Intended behavior of CGSCC pass manager.
...> >>>> 1. The ref graph can easily go quadratic. E.g. > >>>> > >>>> typedef void (*fp)(); > >>>> fp funcs[] = { > >>>> &foo1, > >>>> &foo2, > >>>> ... > >>>> &fooN > >>>> } > >>>> void foo1() { funcs[something](); } > >>>> void foo2() { funcs[something](); } > >>>> ... > >>>> void fooN() { funcs[something](); } > >>>> > >>>> One real-world case where this...
2016 Jun 16
5
Intended behavior of CGSCC pass manager.
...; 1. The ref graph can easily go quadratic. E.g. >>>>>> >>>>>> typedef void (*fp)(); >>>>>> fp funcs[] = { >>>>>> &foo1, >>>>>> &foo2, >>>>>> ... >>>>>> &fooN >>>>>> } >>>>>> void foo1() { funcs[something](); } >>>>>> void foo2() { funcs[something](); } >>>>>> ... >>>>>> void fooN() { funcs[something](); } >>>>>> >>>>>> One real-w...
2002 Dec 21
0
Re: samba digest, Vol 1 #2006 - 24 msgs (Out of the office - Returning Monday, Jan. 6th)
...ership. > > I have read that I need essentially the following in my smb.conf file: > [lab] > path = /usr2/lab > available = yes > public = yes > guest only = no > writeable = yes > browseable = yes > valid users = foonly, hart > only user = no > oplocks = No > level2oplocks = No > create mask = 770 > directory mask = 770 > force group = lab > > with the important lines being "create mask", "directory mask" and "force...
2013 Mar 18
0
[linux-linus test] 17325: regressions - trouble: broken/fail/pass
...o Alterman <lalterman@nicira.com> Leo Song <liangs@marvell.com> Leo Yan <leoy@marvell.com> Leon Romanovsky <leon@leon.nu> Leonid Isaev <lisaev@umail.iu.edu> Leonid Shatz <leonid.shatz@ravellosystems.com> Leonid Yegoshin <yegoshin@mips.com> Ley Foon Tan <lftan@altera.com> Li Dongyang <Jerry87905@gmail.com> Li Fei <fei.li@intel.com> Li RongQing <roy.qing.li@gmail.com> Li Wang <wangli@kylinos.com.cn> Li Wei <lw@cn.fujitsu.com> Li Yang <leoli@freescale.com> Li Yu <raise.sail@gmail.com>...
2013 Mar 29
0
[linux-linus test] 17454: regressions - FAIL
...o Alterman <lalterman@nicira.com> Leo Song <liangs@marvell.com> Leo Yan <leoy@marvell.com> Leon Romanovsky <leon@leon.nu> Leonid Isaev <lisaev@umail.iu.edu> Leonid Shatz <leonid.shatz@ravellosystems.com> Leonid Yegoshin <yegoshin@mips.com> Ley Foon Tan <lftan@altera.com> Li Dongyang <Jerry87905@gmail.com> Li Fei <fei.li@intel.com> Li RongQing <roy.qing.li@gmail.com> Li Wang <wangli@kylinos.com.cn> Li Wei <lw@cn.fujitsu.com> Li Xun <xunleer.li@huawei.com> Li Yang <leoli@freescale.com&g...
2013 Apr 10
0
[linux-linus test] 17612: regressions - FAIL
...o Alterman <lalterman@nicira.com> Leo Song <liangs@marvell.com> Leo Yan <leoy@marvell.com> Leon Romanovsky <leon@leon.nu> Leonid Isaev <lisaev@umail.iu.edu> Leonid Shatz <leonid.shatz@ravellosystems.com> Leonid Yegoshin <yegoshin@mips.com> Ley Foon Tan <lftan@altera.com> Li Dongyang <Jerry87905@gmail.com> Li Fei <fei.li@intel.com> Li RongQing <roy.qing.li@gmail.com> Li Wang <wangli@kylinos.com.cn> Li Wei <lw@cn.fujitsu.com> Li Xun <xunleer.li@huawei.com> Li Yang <leoli@freescale.com&g...