search for: loctim

Displaying 4 results from an estimated 4 matches for "loctim".

Did you mean: loctime
2010 Jul 02
2
unable to get bigglm working, ATTN: Thomas Lumley
...filename, open="r"); } else { rval <- read.table (conn, nrows=chunksize,sep=' ', skip=0, header=FALSE,...); if (nrow(rval)==0) { close(conn); conn<<-NULL; rval<-NULL; } else { rval$relage <- rval$loctime/rval$term; }; return(rval); } } }; a <- make.data ( filename = "G:/sqldata/newf4.csv", chunksize = 100000, colClasses = list ("NULL", "Date","Date", "integer", "factor",rep("numeric",5),rep(&...
2004 Aug 06
2
[patch] time stamps in dump file names
.../source.c --- icecast-2.0.1/src/source.c Wed May 12 17:55:30 2004 +++ icecast-2.0.1.scram/src/source.c Wed Jun 2 23:17:29 2004 @@ -50,6 +50,16 @@ http_parser_t *parser, const char *mount, format_type_t type, mount_proxy *mountinfo) { + char buffer[PATH_MAX]; + time_t curtime; + struct tm *loctime; + + /* Get the current time. */ + curtime = time (NULL); + + /* Convert it to local time representation. */ + loctime = localtime (&curtime); + source_t *src; src = (source_t *)malloc(sizeof(source_t)); @@ -76,7 +86,8 @@ src->fallback_mount = strdup (mountinfo->fallback_mou...
2004 Aug 06
2
[patch] time stamps in dump file names
.../source.c --- icecast-2.0.1/src/source.c Wed May 12 17:55:30 2004 +++ icecast-2.0.1.scram/src/source.c Wed Jun 2 23:17:29 2004 @@ -50,6 +50,16 @@ http_parser_t *parser, const char *mount, format_type_t type, mount_proxy *mountinfo) { + char buffer[PATH_MAX]; + time_t curtime; + struct tm *loctime; + + /* Get the current time. */ + curtime = time (NULL); + + /* Convert it to local time representation. */ + loctime = localtime (&curtime); + source_t *src; src = (source_t *)malloc(sizeof(source_t)); @@ -76,7 +86,8 @@ src->fallback_mount = strdup (mountinfo->fallback_mou...
2006 Feb 28
0
burst argument in as.ltraj()
...t my data consist of more than one burst of reloctions per animal. i've set up the data (xy, date, id, burst) in list form following the example given in ?as.ltraj. to simplify, following is a section of the data for the 65th animal in my list dataset: x y loctime burst 479347 5515636 2005-07-07 21:05:20 bird498 479405 5515729 2005-07-07 21:12:00 bird498 479397 5515740 2005-07-07 21:12:20 bird498 479388 5515740 2005-07-07 21:13:15 bird498 479398 5515724 2005-07-07 21:16:20 bird498 479416 5515717 2005-07-07 21:20:00 bird498 479387 5...