search for: dlt

Displaying 20 results from an estimated 136 matches for "dlt".

Did you mean: dat
2017 May 17
2
R-3.4.0 fails test
...gt; d <- as.POSIXlt("2016-12-06"); d$zone <- 1 > tools::assertError(format(d)) > d$zone <- NULL > stopifnot(identical(format(d),"2016-12-06")) > 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"...
2017 May 17
2
R-3.4.0 fails test
...gt; d <- as.POSIXlt("2016-12-06"); d$zone <- 1 > tools::assertError(format(d)) > d$zone <- NULL > stopifnot(identical(format(d),"2016-12-06")) > 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"...
2017 May 18
2
[R] R-3.4.0 fails test
This has to do with your own timezone. If I run that code on my computer, both formats are correct. If I do this after Sys.setenv(TZ = "UTC") Then: > cbind(format(dlt), format(dct)) [,1] [,2] [1,] "2016-12-06 21:45:41" "2016-12-06 20:45:41" [2,] "2016-12-06 21:45:42" "2016-12-06 20:45:42" The reason for that, is that dlt has a timezone set, but dct doesn't. To be correct, it only takes the fir...
2017 May 18
2
[R] R-3.4.0 fails test
...ors installed and configured? Info: Processes: 256 Uptime: 17:01 Memory: 3533.8/14955.3MB Init: Upstart runlevel: 2 Gcc sys: 4.8.4 Client: Shell (bash 4.3.111) inxi: 2.2.28 Time zone: NZST |> c) run the offending code lines "by hand" 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(&q...
2017 May 18
2
[R] R-3.4.0 fails test
> On 18 May 2017, at 13:47 , Joris Meys <jorismeys at gmail.com> wrote: > > Correction: Also dlt uses the default timezone, but POSIXlt is not recalculated whereas POSIXct is. Reason for that is the different way values are stored (hours, minutes, seconds as opposed to minutes from origin, as explained in my previous mail) > I would suspect that there is something more subtle going on, Ne...
2017 May 18
0
[R] R-3.4.0 fails test
Correction: Also dlt uses the default timezone, but POSIXlt is not recalculated whereas POSIXct is. Reason for that is the different way values are stored (hours, minutes, seconds as opposed to minutes from origin, as explained in my previous mail) CHeers Joris On Thu, May 18, 2017 at 1:45 PM, Joris Meys <jorismey...
2005 Sep 21
2
Mixing SCSI devices on a single i/f
I have an external HP SureStore DLT VS80 with a SCSI LVD 68 pin interface and an external HP SureStore DAT24 with a SCSI Centronics 50 pin Narrow SE interface. The cable for the DAT has a Centronics connector at one end and a 68 Pin Wide to Narrow terminated connector at the other. The cable for the DLT has a LVD/SE 68 pin conn...
2017 May 18
0
[R] R-3.4.0 fails test
> On 18 May 2017, at 14:51, peter dalgaard <pdalgd at gmail.com> wrote: > > >> On 18 May 2017, at 13:47 , Joris Meys <jorismeys at gmail.com> wrote: >> >> Correction: Also dlt uses the default timezone, but POSIXlt is not recalculated whereas POSIXct is. Reason for that is the different way values are stored (hours, minutes, seconds as opposed to minutes from origin, as explained in my previous mail) >> > > I would suspect that there is something more subtl...
2017 May 18
2
[R] R-3.4.0 fails test
...Plummer <plummerM at iarc.fr> wrote: > > > >> On 18 May 2017, at 14:51, peter dalgaard <pdalgd at gmail.com> wrote: >> >> >>> On 18 May 2017, at 13:47 , Joris Meys <jorismeys at gmail.com> wrote: >>> >>> Correction: Also dlt uses the default timezone, but POSIXlt is not recalculated whereas POSIXct is. Reason for that is the different way values are stored (hours, minutes, seconds as opposed to minutes from origin, as explained in my previous mail) >>> >> >> I would suspect that there is somethin...
2007 Sep 13
1
backing up with dump and DLT
Hi, I have a CentOS 4.1 (with a two hdds RAID 1 using mdadm) running some database system.... I connected a DLT device on its SCSI interface (/dev/nst0) in order to make some external backup..... I dump several filesystems (/, /boot /usr /var /home and others)....so and when I try to dump manualy for expmple /boot I get this: [root at Server ~]# dump -0vuf /dev/nst0 /boot DUMP: Date of this level 0 dump:...
2006 Jan 27
1
how calculation degrees freedom
Hi, I' m having a hard time understanding the computation of degrees of freedom when runing nlme() on the following model: > formula(my data.gd) dLt ~ Lt | ID TasavB<- function(Lt, Linf, K) (K*(Linf-Lt)) my model.nlme <- nlme (dLt ~ TasavB(Lt, Linf, K), data = my data.gd, fixed = list(Linf ~ 1, K ~ 1), start = list(fixed = c(70, 0.4)), na.action= na.include, naPattern = ~!is.na(dLt)) > summary(my model.nlme) Non...
2017 May 18
0
[R] R-3.4.0 fails test
...-427894 Kernel: 3.19.0-32-generic x86_64 (64 bit gcc: 4.8.2) > Desktop: KDE Plasma 4.14.2 (Qt 4.8.6) Distro: Linux Mint 17.3 Rosa I suppose that'll do... > Time zone: NZST > > |> c) run the offending code lines "by hand" 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), >...
2009 Dec 23
3
devcpp error
hello i have installed devcpp on my wine but when i run it no command prompt is shown and so i cant see if it runned or no? how i can run it? as this program: #include <cstdlib> #include <iostream> using namespace std; int main(int argc, char *argv[]) { cout<<"hello,world"<<endl; int i; cin>>i; system("PAUSE"); return EXIT_SUCCESS; }
2006 Jun 09
5
Tape drive throughput
I have a backup spooling onto a DLT drive. Is there any tool that will let me monitor the data throughput on the device? -- Bowie
2009 Aug 25
3
Timezone not recognised kludge
This is for Wine 1.1.28 compiled under a customised personal Linux based on Slackware. When running winefile from a terminal, get a line: "fixme:ntdll:find_reg_tz_info Can't find matching timezone information in the registry for bias -720, std (d/m/y): 5/04/2009, dlt (d/m/y): 27/09/2009" Wine source: ../dlls/ntdll/time.c holds the function "find_reg_tz_info". Running: # WINEDEBUG=trace+ntdll wine winefile gives a dump of the trace statements for this function and shows the registry timezone information for timezones as it scans each. It cannot...
2005 May 11
2
Backing up my server...
Helo, I've just installed a CentOS 4.0, postgress,iptables, ect.. on a P 4 Intel using sotf RAID 1 ...and everything is fine. I bought a HP DLT 40/80G tape device for being use as tape backup to my server. My questions are: 1. What you recomended me to use as a soft backUP. (amanda, dump/restore, TAR scipts, other)? 2. How can I backUP my entire filesystem ..(I mean everything using one the above software)? 3. What software can I use to...
2009 Jul 01
4
XBASE error under Wine
...m made with xBase (programmed by him), and unfortunately isn't compatible with xHarbour. So I tried it with Wine, but I find these errors when I open the program. :( fixme:ntdll:find_reg_tz_info Can't find matching timezone information in the registry for bias 180, std (d/m/y): 15/03/2009, dlt (d/m/y): 18/10/2009 fixme:font:WineEngCreateFontInstance Untranslated charset 255 fixme:font:get_nearest_charset returning DEFAULT_CHARSET face->fs.fsCsb[0] = 00000000 file = /home/www/.wine/dosdevices/h:/DISC/NORMAL0/XPPNAT.DLL fixme:font:WineEngCreateFontInstance Untranslated charset 255 fixme...
2017 May 19
1
[R] R-3.4.0 fails test
...tly, I'm happy for |> timezone-portable propositions to change the test. Meantime, anyone who lives where DST happpens in December who wants to get through the remaining tests can avoid this one by changing the line > stopifnot(length(fd) == 10, identical(fd, format(dct <- as.POSIXct(dlt)))) to > stopifnot(length(fd) == 10, identical(fd, format(dct <- as.POSIXlt(dlt)))) ^^^^ (which effectively isn't testing anything much) A less lazy way would be to comment out the relevant lines. |> |> Martin --...
2006 Jan 26
0
degrees freedom in nlme
I'm having hard time understanding the computation of degrees of freedom when runing nlme () on the following model: > formula(my data.gd) dLt ~ Lt | ID TasavB<- function(Lt, Linf, K) (K*(Linf-Lt)) my model.nlme <- nlme (dLt ~ TasavB(Lt, Linf, K), data = my data.gd, fixed = list(Linf ~ 1, K ~ 1), start = list(fixed = c(70, 0.4)), na.action= na.include, naPattern = ~!is.na(dLt)) > summary(my model.nlme)...
2008 Nov 29
1
Error with OpenGL screen
What does it means? Code: mag00 at Q6600:~/.wine/drive_c/Altair/hw8.0/hm/bin/WIN32$ wine ./hmopengl.exe fixme:ntdll:find_reg_tz_info Can't find matching timezone information in the registry for bias 180, std (d/m/y): 17/02/2008, dlt (d/m/y): 19/10/2008 fixme:ntdll:find_reg_tz_info Can't find matching timezone information in the registry for bias 180, std (d/m/y): 17/02/2008, dlt (d/m/y): 19/10/2008 fixme:ntdll:find_reg_tz_info Can't find matching timezone information in the registry for bias 180, std (d/m/y): 17/02/200...