search for: jck

Displaying 8 results from an estimated 8 matches for "jck".

Did you mean: ack
2011 Sep 13
5
Puppet not pushing file
...sing? OS - RHEL5.7 Installation Source - epel-testing repo Puppet server version - 2.6.6 puppetd version - 2.6.6 From fileserver.conf: <snip> [test] path /home/admin/puppet allow * </snip> File permissions: -rwxrw-rw- 1 admin admin 99 Sep 13 11:39 /home/admin/puppet/jck.txt From site.pp: import nodes/* From /etc/puppet/manifests/nodes/client.pp node client { file { "/home/admin/puppet/jck.txt" owner => admin group => admin mode => 0744 source => puppet:///test/jck.tx...
2009 Jul 23
1
[PATCH server] changes required for fedora rawhide inclusion.
...vWTPJ=zD55;3glCXKLcf({yFe{`WL_t>t6zI*S`XONdKBjkNO)bu5`bp z(s}p}Ia~GbX=kIi@~E!<faK%)2iWu<)7!T;`YOA1U2J%J^dIFi_(@cO2^07{75n&J zxD5T2eR}#YD7s(20DMqy&_!>=7XPF^O2;u#A1x_kbTNjppgg6Ila%p at Kci2O@rj5Z z(kB5Q&?oEWiB at Jz1?jLpO(#Zw<vE>B2XTh3#OuRMUFgFs08v1$za7FVRgUV~Y?L^z z&jCK6&jmiF&l7ofkoo#4y~P4uRZi;*bWJ&<Po{;+2fC2D5a}XaTKB~uoYf~F>wR5J zJ5gTMmr90Zh`+5b2Yypu0enth3H*gV6}<21LXF_d>8pW1)7R*Q%14N;1$?frL+Vpq z7{@~8Lxk(4EH)tamc9}A9eoq<8~VM#FY23t-_^IE%*TjLLYYr=F{?y*P2UPZ+@*Z0 zW2%Yq7v%@NU^@mhp52cDO=1rKU(g>!?GNct0J%Xtf^w7D4l{8-m?tt!w(_(7m?W{s zP41mwo...
2019 Mar 27
0
[RFC] readtable enhancement
Thank you for your answers. I rather do not file a new bug, since what I coded isn't really a bug. The problem I (my colleagues) have today is very stupid: We read .csv files with a lot of columns, of which most contain date-time stamps, coded in DD/MM/YYYY HH:MM. This is not exotic, but the base library's readtable (and derivatives) only accept date-times in a limited number of possible
2019 Mar 28
0
[RFC] readtable enhancement
...mrt 2019 22:55:06 -0700, Gabriel Becker wrote: > Kurt, > Cool idea and great "seeing new faces" on here proposing things on here > and engaging with R-core on here. > Some comments on the issue of fallbacks below. > On Wed, Mar 27, 2019 at 10:33 PM Kurt Van Dijck > <[1]dev.kurt at vandijck-laurijssen.be> wrote: > > Hey, > In the meantime, I submitted a bug. Thanks for the assistence on > that. > > and I'm not convinced that > > coercion failures should fallback gracefully to the default...
2019 Apr 02
0
[Bug 17546] extend readtable with a hook for column type detection
Hey, Does someone have comments on the v4 of the proposed patch? Kind regards, Kurt
2010 May 21
0
SUMO, GSoC like project, to create sustainable software
Hi, I am Jean-christophe Kermagoret from SIDE-Labs. SIDE-Labs, founded by BlueXML, is an open source project which created a sustainable IDE, SIDE, based on MDA (Model Driven Architecture), to quickly develop sustainable software application. Moreover, thanks to the use of models, development can be achieved by domain specialist. From a technological point of view, a generation process
2019 Mar 28
0
[RFC] readtable enhancement
...cion failures should fallback gracefully to the default. > Feature requests fall under a "bug" in bugzilla terminology, so please > submit this there. I think I've made you an account. > Thanks, > Michael > > On Wed, Mar 27, 2019 at 1:19 PM Kurt Van Dijck > <[1]dev.kurt at vandijck-laurijssen.be> wrote: > > Thank you for your answers. > I rather do not file a new bug, since what I coded isn't really a > bug. > The problem I (my colleagues) have today is very stupid: > We read .csv files wit...
2019 Mar 22
3
[PATCH 1/2] readtable: add hook for type conversions per column
...impossible since overruling as.POSIXlt makes a copy in the users namespace, and read.table would still take the base version of as.POSIXlt. Rather than fixing my specific requirement, this hook allows to probe for any custom format and do smart things with little syntax. Signed-off-by: Kurt Van Dijck <dev.kurt at vandijck-laurijssen.be> --- src/library/utils/R/readtable.R | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/library/utils/R/readtable.R b/src/library/utils/R/readtable.R index 238542e..076a707 100644 --- a/src/library/utils/R/readtable.R +++...