search for: gmtoff

Displaying 20 results from an estimated 38 matches for "gmtoff".

2019 Mar 09
0
POSIXlt$zone and $gmtoff questions
I've been searching for patterns in why some POSIXlt objects have the zone and gmtoff components and some don't and why gmtoff is sometimes NA when the zone is known. Is there a pattern or is it just that the additional fields and workarounds were added in an ad hoc way? E.g., as.POSIXlt adds the zone and gmtoff components for all strings and logical NA inputs if the time zon...
2007 Feb 07
3
tzdata
I read a few days back on the list where the tzdata rpm was to take care of the new DST rules. I run CentOS 3 servers, and did a 'yum update tzdata' , but received a 2006a update of the rpm. Is this proper? It sure didn't fix anything. Thanks Steve Campbell campbell at cnpapers.com Charleston Newspapers
2015 Jun 23
4
yum and yumex change system time
> Date: Tuesday, June 23, 2015 03:48:36 PM -0400 > From: Jonathan Billings <billings at negate.org> > > On Tue, Jun 23, 2015 at 01:56:13PM -0500, g wrote: >> each and every time i run yum or yumex, system time is advanced >> by 5 hours. >> >> this has gone on thru several updates, maybe even upgrades. >> >> centos = 6.6 current >> yum
2015 Jun 24
0
yum and yumex change system time
...i.e., is it for >> the correct TZ? > > [geo at boxen ~]$ zdump -v /etc/localtime > /etc/localtime -9223372036854775808 = NULL > /etc/localtime -9223372036854689408 = NULL > /etc/localtime Sun Nov 18 17:59:59 1883 UTC = Sun Nov 18 12:09:23 > 1883 LMT isdst=0 gmtoff=-21036 > > <one hell of a long list snipped> > > /etc/localtime Sun Nov 1 06:59:59 2499 UTC = Sun Nov 1 01:59:59 > 2499 CDT isdst=1 gmtoff=-18000 > /etc/localtime Sun Nov 1 07:00:00 2499 UTC = Sun Nov 1 01:00:00 > 2499 CST isdst=0 gmtoff=-21600 > /etc/loc...
2015 Jun 23
2
yum and yumex change system time
...-v /etc/localtime" return ? i.e., is it for > the correct TZ? [geo at boxen ~]$ zdump -v /etc/localtime /etc/localtime -9223372036854775808 = NULL /etc/localtime -9223372036854689408 = NULL /etc/localtime Sun Nov 18 17:59:59 1883 UTC = Sun Nov 18 12:09:23 1883 LMT isdst=0 gmtoff=-21036 <one hell of a long list snipped> /etc/localtime Sun Nov 1 06:59:59 2499 UTC = Sun Nov 1 01:59:59 2499 CDT isdst=1 gmtoff=-18000 /etc/localtime Sun Nov 1 07:00:00 2499 UTC = Sun Nov 1 01:00:00 2499 CST isdst=0 gmtoff=-21600 /etc/localtime 9223372036854689407 = NULL /et...
2008 Jun 11
2
time on asterisk
Hi, I'm using gotoiftime on asterisk, but it seems&nbsp; there is a difference between the asterisk time and the system time. could it be because i adjusted the system timezone on my linux? do asterisk not detect the change of timezone on the system? How can I fix this prob? Regards, nhadie -------------- next part -------------- An HTML attachment was scrubbed... URL:
2020 Oct 01
3
timezone tests and R-devel
...tes(x) $class [1] "POSIXct" "POSIXt" > attributes(as.POSIXlt(x)) $names [1] "sec" "min" "hour" "mday" "mon" "year" "wday" "yday" [9] "isdst" "zone" "gmtoff" $class [1] "POSIXlt" "POSIXt" $tzone [1] "US/Eastern" "EST" "EDT" > all.equal(x, as.POSIXlt(x)) [1] TRUE On R Under development (unstable) (2020-10-01 r79286) I get > x = Sys.time() > all.equal(x,x) [1] TRUE > attributes...
2007 Feb 07
4
tzdata - extra info.
Sorry for the extra info required, but I had digest mode turned on and wouldn't have received the mailing till tomorrow. I have since updated the data manually, but after 'yum update tzdata' was run, the zdump -v for EST5EDT and America/New_York all still showed a date of April 1, instead of March 11. After manually fixing, it is correct. This was mostly a question about why yum
2017 May 17
2
R-3.4.0 fails test
...6")) > d$zone <- "CET" # = previous, but 'zone' now is last > tools::assertError(format(d)) > dlt <- structure( + list(sec = 52, min = 59L, hour = 18L, mday = 6L, mon = 11L, year = 116L, + wday = 2L, yday = 340L, isdst = 0L, zone = "CET", gmtoff = 3600L), + class = c("POSIXlt", "POSIXt"), tzone = c("", "CET", "CEST")) > dlt$sec <- 10000 + 1:10 # almost three hours & uses re-cycling .. > fd <- format(dlt) > stopifnot(length(fd) == 10, identical(fd, format(dct <- as....
2017 May 17
2
R-3.4.0 fails test
...6")) > d$zone <- "CET" # = previous, but 'zone' now is last > tools::assertError(format(d)) > dlt <- structure( + list(sec = 52, min = 59L, hour = 18L, mday = 6L, mon = 11L, year = 116L, + wday = 2L, yday = 340L, isdst = 0L, zone = "CET", gmtoff = 3600L), + class = c("POSIXlt", "POSIXt"), tzone = c("", "CET", "CEST")) > dlt$sec <- 10000 + 1:10 # almost three hours & uses re-cycling .. > fd <- format(dlt) > stopifnot(length(fd) == 10, identical(fd, format(dct <- as....
2020 Oct 23
2
The presence/absence of `zone` in POSIXlt depending on time zone as a cause of possible inconsistences?
...yday "19.5111262798309" "27" "18" "23" "9" "120" "5" "296" isdst zone gmtoff "1" "CEST" "7200" > str(y) Named chr [1:11] "19.5111262798309" "27" "18" "23" "9" "120" "5" "296" "1" "CEST" "7200"...
2020 Oct 02
2
timezone tests and R-devel
...uot; > > > >> attributes(as.POSIXlt(x)) > > $names > > [1] "sec" "min" "hour" "mday" "mon" "year" "wday" > "yday" > > [9] "isdst" "zone" "gmtoff" > > > > $class > > [1] "POSIXlt" "POSIXt" > > > > $tzone > > [1] "US/Eastern" "EST" "EDT" > > > >> all.equal(x, as.POSIXlt(x)) > > [1] TRUE > > > > On R Under developm...
2016 Dec 06
1
segfault with POSIXlt zone=NULL zone=""
...t I don't know if these questions are not already obvious, but: 1. Is there a reasonable way to fail more elegantly when a user makes this mistake? 2. Should we update the documentation for POSIXlt to warn people that the optional "zone" list element must precede the optional "gmtoff" list element, in cases where both are present? Thanks, Frederick
2020 Oct 02
0
timezone tests and R-devel
...POSIXct" "POSIXt" > >> attributes(as.POSIXlt(x)) > $names > [1] "sec" "min" "hour" "mday" "mon" "year" "wday" "yday" > [9] "isdst" "zone" "gmtoff" > > $class > [1] "POSIXlt" "POSIXt" > > $tzone > [1] "US/Eastern" "EST" "EDT" > >> all.equal(x, as.POSIXlt(x)) > [1] TRUE > > On R Under development (unstable) (2020-10-01 r79286) I get >> x...
2020 Oct 23
0
The presence/absence of `zone` in POSIXlt depending on time zone as a cause of possible inconsistences?
...me(), "CET") > x[1,"zone"] [1] "CEST" > attributes(x) $names [1] "sec" "min" "hour" "mday" "mon" "year" "wday" "yday" "isdst" "zone" "gmtoff" $class [1] "POSIXlt" "POSIXt" $tzone [1] "CET" "CET" "CEST" So `x[1,"zone"]` is what I expect, but I would expect `attributes(x)$tzone` would be related to `TZ = "EDT"`, and not to `tz = "CET"`. So, what am I u...
2016 Jan 27
0
Suggestions for improvement as regards `as` methods, and a call for consistency in `as.Date` methods
...mon = c(6L, 0L), year = structure(115:116, .Names = c("ind", "nyd")), wday = c(6L, 5L), yday = c(184L, 0L), isdst = c(1L, 0L), zone = c("EDT", "EST"), gmtoff = c(NA_integer_, NA_integer_)), .Names = c("sec", "min", "hour", "mday", "mon", "year", "wday", "yday", "isdst", "zone&quo...
2017 May 18
2
[R] R-3.4.0 fails test
...quot; and show us the values of format(dlt) and format(dct) so we can see what the problem is, something like |> |> dlt <- structure( |> list(sec = 52, min = 59L, hour = 18L, mday = 6L, mon = 11L, year = 116L, |> wday = 2L, yday = 340L, isdst = 0L, zone = "CET", gmtoff = 3600L), |> class = c("POSIXlt", "POSIXt"), tzone = c("", "CET", "CEST")) |> dlt$sec <- 10000 + 1:10 |> dct <- as.POSIXct(dlt) |> cbind(format(dlt), format(dct)) > cbind(format(dlt), format(dct)) [,1]...
2020 Oct 23
0
timezone tests and R-devel
...gt; >> attributes(as.POSIXlt(x)) >> > $names >> > [1] "sec" "min" "hour" "mday" "mon" "year" "wday" >> "yday" >> > [9] "isdst" "zone" "gmtoff" >> > >> > $class >> > [1] "POSIXlt" "POSIXt" >> > >> > $tzone >> > [1] "US/Eastern" "EST" "EDT" >> > >> >> all.equal(x, as.POSIXlt(x)) >> > [1] TRUE &gt...
2020 Oct 23
1
timezone tests and R-devel
...ibutes(as.POSIXlt(x)) > > $names > >? [1] "sec"? ? "min"? ? "hour"? ?"mday"? ?"mon"? ? "year"? > ?"wday"? ?"yday" > >? [9] "isdst"? "zone"? ?"gmtoff" > > > > $class > > [1] "POSIXlt" "POSIXt" > > > > $tzone > > [1] "US/Eastern" "EST"? ? ? ? "EDT" > > > >> all.equal(x, as.POSIXl...
2017 May 18
2
[R] R-3.4.0 fails test
...ormat(dct) so we can see what the problem is, something > like > > |> > > |> dlt <- structure( > > |> list(sec = 52, min = 59L, hour = 18L, mday = 6L, mon = 11L, year > = 116L, > > |> wday = 2L, yday = 340L, isdst = 0L, zone = "CET", gmtoff = > 3600L), > > |> class = c("POSIXlt", "POSIXt"), tzone = c("", "CET", "CEST")) > > |> dlt$sec <- 10000 + 1:10 > > |> dct <- as.POSIXct(dlt) > > |> cbind(format(dlt), format(dct)) > > > &...