search for: ewok

Displaying 2 results from an estimated 2 matches for "ewok".

Did you mean: ewo
2005 May 03
1
filename paths different in server mode
For some reason rsync-2.6.4 compiled by me on HP-UX 11.23 in 64-bit mode is adding extra path elements when running in server mode. This is a new problem. It did not used to do that with older versions and it does not do that with compilations on other systems. $ rsync -a ewok::cadroot/release/bin/ . $ ls bin Where did that extra directory come from? Testing with a different machine works as expected. $ rsync -a wookie::cadroot/release/bin/ . $ ls set_env ...more contents of bin not shown... In the bad case I am getting an extra directory in the path. I...
2005 Jan 31
4
aggregating dates
I have a frame which contains 3 columns: "date" "defectnum" "state" And I want to get the most recent state change for a given defect number. date is POSIXct. I have tried: aggregate(ev$date, by=list(ev$defectnum), max) Which appears to be working except that the dates seem to come back as integers (presumably the internal representation of POSIXct). When I