search for: gabembecker

Displaying 20 results from an estimated 107 matches for "gabembecker".

2019 Feb 25
2
Bugzilla down?
Hi Martin (who I believe manages bz?) et al., I'm getting 503 Service Unavailable from bugzilla currently ( https://bugs.r-project.org/bugzilla/ and direct links to specific bugs, both). Is this a known issue? Thanks, ~G [[alternative HTML version deleted]]
2019 Feb 25
1
Bugzilla down?
...5, 2019, at 2:45 PM, Simon Urbanek <simon.urbanek at R-project.org> wrote: > > I do. The server ran out of disk earlier today and it seems that it killed bugzilla somehow. I'll have a look. > Thanks, > Simon > > >> On Feb 25, 2019, at 2:07 PM, Gabriel Becker <gabembecker at gmail.com> wrote: >> >> Hi Martin (who I believe manages bz?) et al., >> >> I'm getting 503 Service Unavailable from bugzilla currently ( >> https://bugs.r-project.org/bugzilla/ and direct links to specific bugs, >> both). Is this a known issue? >&...
2024 Apr 22
1
Is ALTREP "non-API"?
On Mon, Apr 22, 2024 at 5:14?PM Simon Urbanek <simon.urbanek at r-project.org> wrote: > > > > On Apr 22, 2024, at 7:37 PM, Gabriel Becker <gabembecker at gmail.com> > wrote: > > > > Hi Yutani, > > > > ALTREP is part of the official R api, as illustrated by the presence of > > src/include/R_ext/Altrep.h. Everything declared in the header files in > that > > directory is official API AFAIK (and I believe...
2020 Mar 30
1
is.vector could handle AsIs class better
Thank you Gabriel, Agree, although I think that could be relaxed in this single case and AsIs class could be ignored. Best, Jan On Sun, Mar 29, 2020 at 7:09 PM Gabriel Becker <gabembecker at gmail.com> wrote: > > Jan, > > I believe it's because it has "a non-NULL attribute other than names" as per the documentation. In this case its class of "AsIs". > > Best, > ~G > > On Sun, Mar 29, 2020 at 6:29 AM Jan Gorecki <j.gorecki at w...
2019 Oct 06
1
Strange "no-echo" in place of "slave"
...though. The 2nd example really is of the master/slave variety, and to my knowledge nothing to do with echoing, so looks like a search-and-replace oversight. Presumably, "worker thread" (or thereabouts) would be a better replacement. -pd > On 6 Oct 2019, at 14:00 , Gabriel Becker <gabembecker at gmail.com> wrote: > > As far as I know, not being involved with the effort at all, they are > removing the term 'slave' and replacing it with 'no-echo' which is intended > to be fully synonmyous with the meaning of the old 'slave' term. > > ~G >...
2019 Mar 05
1
Should CRAN accept packages with non-R code that transcompiles into R code?
On Tue, Mar 5, 2019 at 12:52 PM Gabriel Becker <gabembecker at gmail.com> wrote: > I have thought about and have (somewhere "up near the top" of my todo > list) prototyping a preprocessor for R, and I have relevant code that emits > (transpiles, in a way) structured comments into S4 code in > https://github.com/gmbecker/S4Coffee. &...
2020 Aug 28
2
utils::isS3stdGeneric chokes on primitives and identity
Trace adds something to the body of the function, so it does make sense that it doesn't. Whether traced functions still technically meet the definition of standard s3 generic or not is, I suppose, up for debate, but I would say that they should, I think. As before, if desired I can work on a patch for this if desired, or someone on R-core can just take care of it if that is easier. Best, ~G
2019 Dec 19
1
head/tail breaking change
Thank you Gabriel, I agree that new behaviour makes much more sense. Just wanted to confirm before resolving compatibility of my unit tests. Best, Jan On Wed 18 Dec, 2019, 10:46 PM Gabriel Becker, <gabembecker at gmail.com> wrote: > Jan, > > That is an intentional change as you can see in the documentation for > head/tail in R-devel. Last time I discussed it with Martin, this behavior > was desired and thus is unlikely to change unless "our" (ie his) mind does. > > The...
2020 Apr 13
3
detect ->
Adrian, Indeed, this has come up in a few places, but as Gabor says, there is no such thing as right hand assignment at any point after parsing is complete. This means the only feasible way to detect it, which a few projects do I believe, is process the code while it is still raw text, before it goes into the parser, and have clever enough regular expressions. The next question, then, is why
2022 Oct 29
1
tools:: extracting pkg dependencies from DCF
..."DESCRIPTION", fields="Package")[[1L]], db, which="most")[[1L]], installed.packages(priority="high")[,"Package"]))' 3 liner, 310 chars long command, far from ideal, but does work. Best, Jan On Fri, Oct 28, 2022 at 10:42 PM Gabriel Becker <gabembecker at gmail.com> wrote: > > Hi Jan, > > > On Fri, Oct 28, 2022 at 1:57 PM Jan Gorecki <j.gorecki at wit.edu.pl> wrote: >> >> Gabriel, >> >> It is the most basic CI use case. One wants to install only >> dependencies only of the package, and run R C...
2020 Oct 08
1
Coercion function does not work for the ALTREP object
Hi Gabriel, here is a simple package for reproducing the problem. https://github.com/Jiefei-Wang/testPkg Best, Jiefei On Thu, Oct 8, 2020 at 5:04 AM Gabriel Becker <gabembecker at gmail.com> wrote: > Jiefei, > > Where does the code for your altrep class live? > > Thanks, > ~G > > On Wed, Oct 7, 2020 at 4:25 AM Jiefei Wang <szwjf08 at gmail.com> wrote: > >> Hi all, >> >> The coercion function defined for the ALTREP obj...
2020 Apr 06
2
Rtools and R 4.0.0?
On Mon, Apr 6, 2020 at 9:39 AM Gabriel Becker <gabembecker at gmail.com> wrote: > > Hi Kevin, > > On Wed, Apr 1, 2020 at 9:36 PM Kevin Ushey <kevinushey at gmail.com> wrote: > > > Hello, > > > > FWIW, I'm excited at the prospect at seeing a new toolchain for > > Windows, since it would imply support for C...
2019 Jan 21
2
pmax and long vector
Kasper, If you're not interested or dont have time to create said patch yourself let me know and i can do it. Best, ~G On Mon, Jan 21, 2019, 11:36 AM Duncan Murdoch <murdoch.duncan at gmail.com wrote: > On 21/01/2019 12:35 p.m., Kasper Daniel Hansen wrote: > > I see that base::pmax() does not support long vectors. > > > > Is R-devel interested in reports like this;
2024 Apr 22
2
Is ALTREP "non-API"?
> On Apr 22, 2024, at 7:37 PM, Gabriel Becker <gabembecker at gmail.com> wrote: > > Hi Yutani, > > ALTREP is part of the official R api, as illustrated by the presence of > src/include/R_ext/Altrep.h. Everything declared in the header files in that > directory is official API AFAIK (and I believe that is more definitive than > the...
2020 Nov 20
1
return (x+1) * 1000
...e. Though, I can imagine it might be possible to enhance the current check to include also this case. It could be that setting _R_CHECK_BOGUS_RETURN_=true will enable this check also in earlier versions in R; not sure when it was introduced. /Henrik On Fri, Nov 20, 2020, 13:58 Gabriel Becker <gabembecker at gmail.com> wrote: > Hi all, > > I can confirm this occurs for me as well. > > The one thing that comes to mind is that there are certain larger > expressions that contain calls to return which we absolutely don't want to > be an error, e.g > > if(somestuff) &gt...
2020 Apr 13
3
detect ->
...s using more columns. > > I would be grateful for any pointer to a project that processes the code > while it is still raw text. I could maybe learn from their code and adapt > to my use case. > > Best wishes, > Adrian > > > On 13 Apr 2020, at 11:23, Gabriel Becker <gabembecker at gmail.com> wrote: > > > > Adrian, > > > > Indeed, this has come up in a few places, but as Gabor says, there is no > such thing as right hand assignment at any point after parsing is complete. > > > > This means the only feasible way to detect it, which...
2019 May 30
2
Converting non-32-bit integers from python to R to use bit64: reticulate
..., as Python3 seems to have unlimited (and variable) size integers. Here is related CPython Code: https://github.com/python/cpython/blob/master/Objects/longobject.c Division between Int-32 and Int-64 seems to only happen in Python2. Best, Juan El mi?rcoles, 29 de mayo de 2019, Gabriel Becker <gabembecker at gmail.com> escribi?: > Hi Juan, > > Comments inline. > > On Wed, May 29, 2019 at 12:48 PM Juan Telleria Ruiz de Aguirre < > jtelleria.rproject at gmail.com> wrote: > >> Dear R Developers, >> >> There is an interesting issue related to "reticu...
2019 Aug 09
3
Underscores in package names
I do not follow you Gabriel. Package name must not use digit numbers. Tarbal will use them, taken from the DESCRIPTION file, version field. That's why I consider the weird case name you presented as irrelevant, and not to be considered. Le ven. 9 ao?t 2019 ? 20:41, Gabriel Becker <gabembecker at gmail.com> a ?crit : > > > On Fri, Aug 9, 2019 at 11:05 AM neonira Arinoem <neonira at gmail.com> wrote: > >> Won't it be better to have a convention that allows lowercase, dash, >> underscore and dot as only valid characters for new package names and keep &...
2023 Apr 28
1
Should '@" now be listed in tools:::.get_internal_S3_generics() ?
...attempting to use internal S3 functions in their code, but during the R CMD check step. Hope I am being clearer now, and not missing something important (all these things: both @ as generic and tools:: package are quite new to me), Karolis K. > On Apr 29, 2023, at 12:38 AM, Gabriel Becker <gabembecker at gmail.com> wrote: > > Karolis, > > It seems likely, without having looked myself, that you could be correct about the issue, but it does seem worth noting that both of the functions you have mentioned are not exported, and thus not part of the API that extension packages are all...
2023 Mar 04
1
transform.data.frame() ignores unnamed arguments when no named argument is provided
...some functions BEGGING to be shown the errors of your ways and turn that on as you wish, often after something has gone wrong. -----Original Message----- From: R-devel <r-devel-bounces at r-project.org> On Behalf Of Martin Maechler Sent: Friday, March 3, 2023 10:26 AM To: Gabriel Becker <gabembecker at gmail.com> Cc: Antoine Fabri <antoine.fabri at gmail.com>; R-devel <r-devel at r-project.org> Subject: Re: [Rd] transform.data.frame() ignores unnamed arguments when no named argument is provided >>>>> Gabriel Becker >>>>> on Thu, 2 Mar 2023 14:...