search for: moravec

Displaying 11 results from an estimated 11 matches for "moravec".

Did you mean: oravec
2024 Feb 08
2
round.Date and trunc.Date not working / implemented
>>>>> Ji?? Moravec >>>>> on Wed, 7 Feb 2024 10:23:15 +1300 writes: > This is my first time working with dates, so if the answer is "Duh, work > with POSIXt", please ignore it. > Why is not `round.Date` and `trunc.Date` "implemented" for `Date`? >...
2024 Feb 08
2
round.Date and trunc.Date not working / implemented
> On 8 Feb 2024, at 15:15, Martin Maechler <maechler at stat.math.ethz.ch> wrote: > >>>>>> Ji?? Moravec >>>>>> on Wed, 7 Feb 2024 10:23:15 +1300 writes: > >> This is my first time working with dates, so if the answer is "Duh, work >> with POSIXt", please ignore it. > >> Why is not `round.Date` and `trunc.Date` "implemented" for `Dat...
2024 Feb 08
1
round.Date and trunc.Date not working / implemented
...if they in the future will become non-exported. /Henrik On Thu, Feb 8, 2024 at 8:18?AM Olivier Benz via R-devel <r-devel at r-project.org> wrote: > > > On 8 Feb 2024, at 15:15, Martin Maechler <maechler at stat.math.ethz.ch> wrote: > > > >>>>>> Ji?? Moravec > >>>>>> on Wed, 7 Feb 2024 10:23:15 +1300 writes: > > > >> This is my first time working with dates, so if the answer is "Duh, work > >> with POSIXt", please ignore it. > > > >> Why is not `round.Date` and `trunc.Date` "...
2024 Feb 08
1
round.Date and trunc.Date not working / implemented
?s 14:36 de 08/02/2024, Olivier Benz via R-devel escreveu: >> On 8 Feb 2024, at 15:15, Martin Maechler <maechler at stat.math.ethz.ch> wrote: >> >>>>>>> Ji?? Moravec >>>>>>> on Wed, 7 Feb 2024 10:23:15 +1300 writes: >> >>> This is my first time working with dates, so if the answer is "Duh, work >>> with POSIXt", please ignore it. >> >>> Why is not `round.Date` and `trunc.Date` "imple...
2024 Feb 08
1
round.Date and trunc.Date not working / implemented
...exported. > > /Henrik > > On Thu, Feb 8, 2024 at 8:18?AM Olivier Benz via R-devel > <r-devel at r-project.org> wrote: >> >>> On 8 Feb 2024, at 15:15, Martin Maechler <maechler at stat.math.ethz.ch> wrote: >>> >>>>>>>> Ji?? Moravec >>>>>>>> on Wed, 7 Feb 2024 10:23:15 +1300 writes: >>> >>>> This is my first time working with dates, so if the answer is "Duh, work >>>> with POSIXt", please ignore it. >>> >>>> Why is not `round.Date` and...
2015 Jul 28
2
vfs fruit unable to create xattr and ACL from OS X 10.10.4
...0), real(11669, 0), class=fruit] ../source3/modules/vfs_fruit.c:880(ad_header_read_rsrc) open AppleDouble: m/moravmi8/test/._xattr, No such file or directory Captured packets from Wireshark in attachment. If you have any ideas how should I procede I would be happy to hear them :-) Regards Michal Moravec -------------- next part --------------
2024 Feb 06
1
round.Date and trunc.Date not working / implemented
This is my first time working with dates, so if the answer is "Duh, work with POSIXt", please ignore it. Why is not `round.Date` and `trunc.Date` "implemented" for `Date`? Is this because `Date` is (mostly) a virtual class setup for a better inheritance or is that something that is just missing? (like `sort.data.frame`). Would R core welcome a patch? I decided to convert
2024 Feb 09
1
round.Date and trunc.Date not working / implemented
> This is a workaround, and could be the basis for a round.Date improvement: >?? date <- Sys.Date() >?? as.Date(round(as.POSIXct(date), "years")) >?? as.Date(round(as.POSIXct(Sys.Date() + 180), "years")) > Duncan Murdoch That would work, perhaps structured similarly as `trunc.Date` is. The only issue might be that `trunc.Date` is currently using
2015 Jul 31
1
vfs fruit unable to create xattr and ACL from OS X 10.10.4
> On 29 Jul 2015, at 10:02, Ralph Böhme <rb at sernet.de> wrote: > Hm, works for me: > > mac$ mount | grep smb > //ralph at 10.10.11.100 <mailto:ralph at 10.10.11.100>/AAPL on /Volumes/AAPL (smbfs, nodev, nosuid, mounted by ralph) > mac$ touch /Volumes/AAPL/test > mac$ xattr -w foo bar /Volumes/AAPL/test > mac$ xattr -l /Volumes/AAPL/test > foo: bar >
2015 Jul 29
0
vfs fruit unable to create xattr and ACL from OS X 10.10.4
On Tue, Jul 28, 2015 at 02:55:32PM +0200, Michal Moravec wrote: > Hello > > I am trying to integrate OS X 10.10.4 clients into existing Samba infractructure run by our IT department. > We are currently using Samba 4.2.3. > File share is stored on iSCSI array with ext4 filesystem which should support both ACL and XATTR. > > We are t...
2024 Jan 18
2
Should subsetting named vector return named vector including named unmatched elements?
Subsetting vector (including lists) returns the same number of elements as the subsetting vector, including unmatched elements which are reported as `NA` or `NULL` (in case of lists). Consider: ``` menu = list( ? "bacon" = "foo", ? "eggs" = "bar", ? "beans" = "baz" ? ) select = c("bacon", "eggs",