search for: joda

Displaying 10 results from an estimated 10 matches for "joda".

Did you mean: coda
2009 Sep 09
1
Monkey patching +.POSIXt
Hi all, This summer I've been working with a grad student to bring more of the date time classes from JODA (http://joda-time.sourceforge.net/) into R. To make these work seamlessly with existing date time objects, we need to patch +.POSIXt. (The ruby community uses the term monkey-patching for this sort of ill-advised, by sometimes necessary, internal hackery, hence the title.) The problem is I can'...
2015 Feb 09
11
[PATCH 1/5] macosx: Add required third parameter for xdrproc_t callbacks
>From Apple's xdr.h: "If your code invokes an xdrproc_t callback, it must be modified to pass a third parameter, which may simply be zero." --- src/proto.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/proto.c b/src/proto.c index 92ae84d..57f4882 100644 --- a/src/proto.c +++ b/src/proto.c @@ -252,7 +252,12 @@ guestfs___send (guestfs_h *g, int proc_nr, *
2007 Mar 27
3
Building problem on FreeBSD with GSSAPI
I have error while compiling dovecot with GSSAPI under FreeBSD 6.2: Is this dovecot-related or not? cc -std=gnu99 -O2 -fno-strict-aliasing -pipe -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -o dovecot-auth auth.o auth-cache.o auth-client-connection.o auth-master-connection.o auth-master-listener.o auth-module.o
2010 Aug 31
0
New package: lubridate 0.1
...days, hours, minutes, and seconds:?year(), month(),?day(), ... * helper functions for handling time zones:?with_tz(),?force_tz() Lubridate also expands the type of mathematical operations that can be performed with date-time objects. It introduces three new time span classes borrowed from http://joda.org. * durations, which measure the exact amount of time between two points * periods, which accurately track clock times despite leap years, leap seconds, and day light savings time * intervals, a protean summary of the time information between two points ______________________________________...
2010 Nov 17
0
lubridate v2.2 available on cran
...utes, and seconds: year(), month(), day(), ... * quick and easy functions to parse date-times: ymd(), dmy(), mdy(), ... * helper functions for handling time zones: with_tz(), force_tz() * three new time span objects -- durations, periods, and intervals -- based on the time span classes of http://joda.org and the boost C++ library. The new version includes: * division, modulo, and integer methods for time spans. * cleaner display formats for time span objects * a namespace for the package For an example of how you might use lubridate, calculate the number of days until christmas with: (ymd...
2010 Aug 31
0
New package: lubridate 0.1
...days, hours, minutes, and seconds:?year(), month(),?day(), ... * helper functions for handling time zones:?with_tz(),?force_tz() Lubridate also expands the type of mathematical operations that can be performed with date-time objects. It introduces three new time span classes borrowed from http://joda.org. * durations, which measure the exact amount of time between two points * periods, which accurately track clock times despite leap years, leap seconds, and day light savings time * intervals, a protean summary of the time information between two points ______________________________________...
2010 Nov 17
0
lubridate v2.2 available on cran
...utes, and seconds: year(), month(), day(), ... * quick and easy functions to parse date-times: ymd(), dmy(), mdy(), ... * helper functions for handling time zones: with_tz(), force_tz() * three new time span objects -- durations, periods, and intervals -- based on the time span classes of http://joda.org and the boost C++ library. The new version includes: * division, modulo, and integer methods for time spans. * cleaner display formats for time span objects * a namespace for the package For an example of how you might use lubridate, calculate the number of days until christmas with: (ymd...
2015 Feb 09
0
[PATCH 3/5] java: Turn off doclint to prevent errors on JDK 8
On JDK 8, doclint is enabled by default with strict validation of HTML tags, which causes the build to fail. See http://blog.joda.org/2014/02/turning-off-doclint-in-jdk-8-javadoc.html --- java/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/Makefile.am b/java/Makefile.am index fa5b45c..a76a9d1 100644 --- a/java/Makefile.am +++ b/java/Makefile.am @@ -68,7 +68,7 @@ clean-local: if HAVE_JAV...
2015 Feb 09
1
Re: [PATCH 3/5] java: Turn off doclint to prevent errors on JDK 8
On Monday 09 February 2015 11:06:17 Margaret Lewicka wrote: > On JDK 8, doclint is enabled by default with strict validation of HTML > tags, which causes the build to fail. See > http://blog.joda.org/2014/02/turning-off-doclint-in-jdk-8-javadoc.html > --- > java/Makefile.am | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/java/Makefile.am b/java/Makefile.am > index fa5b45c..a76a9d1 100644 > --- a/java/Makefile.am > +++ b/java/Makefile.am &gt...
2008 May 03
11
Date comparisons
I occasionally get this error: 1) ''A puzzle once featured, should no longer be nominated'' FAILED expected: Sun May 04 09:10:26 -0700 2008, got: Sun May 04 09:10:26 -0700 2008 (using ==) ./spec/models/puzzle_spec.rb:180: So, the dates looks the same to me. Any ideas for how to debug? Joe