Re: [Rd] Certificates are not trusted

2024-08-15 Thread Ben Engbers
I checked the installed versions from R-CRAN-kernlab and R-CRAN-tseries R-CRAN-kernlab = 0.9.32 R-CRAN-tseries = 0.10.56 . Updating these packages fails because of incorrect installation Op 15-08-2024 om 14:57 schreef Ben Engbers: Hi, The GPG keys intended for repository ‘Copr repo for cran

[Rd] Certificates are not trusted

2024-08-15 Thread Ben Engbers
ched until the next successful transaction. You can delete cached packages by running ‘dnf clean packages’. Error: GPG check failed Translated with DeepL.com (free version) How can I renew or update the certificates? Ben Engbers __ R-devel@r-

Re: [Rd] Question on non-blocking socket

2023-02-17 Thread Ben Engbers
Hi Tomas, Apparently, inserting some kind of socketSelect() is essential when using non-blocking sockets and a client/erve architecture. That is at least one thing that I have learned ;-). In C++, between sending and requesting, I inserted a call to this function: bool wait(int s) { fd_set

Re: [Rd] Question on non-blocking socket

2023-02-15 Thread Ben Engbers
Hi Op 15-02-2023 om 14:38 schreef Tomas Kalibera: On 2/15/23 01:24, Ben Engbers wrote: Hi, December 27, 2021 I started a thread asking for help troubleshooting non-blocking sockets. .. I have two questions. The first is where I can find R documentation on proper use of non-blocking

[Rd] Question on non-blocking socket

2023-02-15 Thread Ben Engbers
ore focused on using non-blocking sockets in general. Is it allowed to execute a read and a receive command immediately after each other or must a short waiting loop be built in. I'm asking this because I'm running into the same problems in a C++ project as I