similar to: Faster downloads: avoid them if possible

Displaying 20 results from an estimated 20000 matches similar to: "Faster downloads: avoid them if possible"

2024 Dec 10
1
Faster downloads: avoid them if possible
On 12/10/24 00:35, Llu?s Revilla wrote: > Dear R-devel, > > I read with interest the recent blog post on how R will have parallel > downloads, on blog.r-project.org > (https://blog.r-project.org/2024/12/02/faster-downloads/index.html). > Thanks Tomas! > > The blog mentions that one of the areas where this will be observed is > while installing them (which I did!).
2024 Jun 12
1
Fields used by available.packages
Yes, I think that would be enough. Thank you, Kurt! Llu?s On Wed, 12 Jun 2024 at 16:35, Kurt Hornik <Kurt.Hornik at wu.ac.at> wrote: > >>>>> Llu?s Revilla writes: > > Lluis, > > So in available.packages() I could replace > > if (is.null(fields)) > fields <- requiredFields > else { > stopifnot(is.character(fields))
2024 Jun 12
1
Fields used by available.packages
>>>>> Llu?s Revilla writes: Lluis, So in available.packages() I could replace if (is.null(fields)) fields <- requiredFields else { stopifnot(is.character(fields)) fields <- unique(c(requiredFields, fields)) } by someting like if(is.null(fields)) fields <- getOption("available_packages_fields") if(is.null(fields)) fields
2023 Nov 27
1
R test coverage
Hi all, I recently proposed a change in R that has led to the addition of new code to the R source code. The code added, as far as I know, has no tests and it might affect many packages in CRAN. I was wondering if adding a test would be helpful or it is already covered by some other test. Which brought me to the question: what is the coverage of R checks (check-devel)? My searches in the
2002 Apr 26
7
spreadsheet data import
Hi colleages! I want to import data from ms-excel and other spreadsheet formats (lotus, etc). Does exist any way to do it within R? The main problem is that many spreadsheet data use comma as decimal separator and not the point as needed in R (and many software for Linux), so importing data first as a tab separated values does not solve this problem. Thanks, Tom?s Revilla
2024 Mar 15
2
RSS Feed of NEWS needs a hand
Hi! Thanks for this service! It is very helpful to know what is being developed. I distribute the content to other venues and I noticed some times that the updates are duplicated. For example, the sentence "?is.R()? is deprecated as no other S dialect is known to be in use (and this could only identify historical dialects, not future ones)." is duplicated in different days: Day 1:
2010 Nov 16
2
IMAP aggregation and MUPDATE protocolo
Hi. I'm just having a look about aggregating several IMAP sources and a IMAP aggregator proxy would come very handy. I just read: http://www.cyrusimap.org/mediawiki/index.php/Cyrus_Murder_Design and found it very interesting. Anyone did something similar based on: http://tools.ietf.org/html/rfc3656 Thanx. Erny -- Ernesto Revilla Yaco Sistemas +34 954 500 057
2024 Jun 09
1
Fields used by available.packages
Hi all, I have recently been researching how available.packages and install.packages filter packages from repositories with additional fields in their PACKAGES file. Currently there are some default filters, but users (and R admins) can set up their own filters by passing a list to the fields argument or adding them to the "available_packages_filters" option. But if the fields used by
2003 Aug 06
1
problem with download.packages
R Version 1.7.0, under windows XP pro The help page for update.packages says that { `download.packages' takes a list of package names and a destination directory, downloads the newest versions of the package sources and saves them in `destdir'. If the list of available packages is not given as argument, it is also directly obtained from CRAN. If CRAN is local, i.e., the URL starts with
2006 Apr 24
2
arrange data for simple regression analysis
Hello, I want to arrange data from a table to perform a simple regression. All the examples I saw deal with paired data, e.g. 'x' and 'y' have the same dimensions (e.g. 5 values for x and 5 for y). But I have more than one 'y' for each 'x' value, e.g. the data file has a x = 0, 30, 60, and 120 columns. And for each of them I have several replicate responses (e.g.
2018 Nov 07
1
Re: [PATCH v3 1/3] v2v: refactor copy_drivers() in Windows_virtio
On Wed, Nov 07, 2018 at 12:53:18PM +0100, Tomáš Golembiovský wrote: > Changed the function to be more generic and renamed. > The only change in behavior is in produced debug messages. > > Signed-off-by: Tomáš Golembiovský <tgolembi@redhat.com> > --- > v2v/windows_virtio.ml | 48 ++++++++++++++++++++++++++++--------------- > 1 file changed, 31 insertions(+), 17
2010 Oct 04
3
can't find and install reshape2??
Hi everyone, I’m trying to install reshape2. But when I click on “install package” it’s not coming up!?!?! I’m getting reshape, but no reshape2? I’ve also tried download.packages(reshape2, destdir="c:\\") & download.packages(Reshape2, destdir="c:\\")…but no luck!!! Does anyone have any ideas what could be going on? Chris Howden Founding Partner Tricky
2003 Nov 15
2
[patch] 3.7.1p2: slogin symlink fixes
Hello, There are three small problems with the "slogin" and "slogin.1" symlinks created upon installation: 1. "./" is included in the target path unnecessarily. 2. Symlinks are assumed to be available, while only hardlinks could. 3. EXEEXT is not respected for slogin. Here is a fix for both problems -- the "./" is simply removed, EXEEXT is added, the
2014 Jan 16
1
[PATCH] hivex: ruby: Support 'make INSTALLDIRS=vendor install' for Ruby
(This is the same change as 87c9ec881cb695724e01d9f6fc9df996d4c67cb6 in libguestfs.) --- ruby/Makefile.am | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/ruby/Makefile.am b/ruby/Makefile.am index e78ab59..7a5fe42 100644 --- a/ruby/Makefile.am +++ b/ruby/Makefile.am @@ -45,13 +45,17 @@ all: $(RAKE) build $(RAKE) rdoc -RUBY_SITELIB := $(shell $(RUBY)
2013 Sep 18
5
[PATCH] qemu-traditional: do not strip binaries during make install
Signed-off-by: Olaf Hering <olaf@aepfle.de> Acked-by: Matt Wilson <msw@amazon.com> --- Makefile | 2 +- Makefile.target | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 37c7066..594f0ef 100644 --- a/Makefile +++ b/Makefile @@ -243,7 +243,7 @@ endif install: all $(if $(BUILD_DOCS),install-doc) mkdir -p
2005 Oct 14
3
zip package
Dear all I can not understand how to install the package lpsolve_1.1.9.zip I have read the FAQ and the help pages carefully, but it still not clear for me. I have tried the following (and obtained the respective error messages): >install.packages("c:/ProgramFiles/R/rw2011/library/lpSolve_1.1.9",destdir=" c:/ProgramFiles/R/rw2011/library/lpSolve") Mensagem de aviso:
2006 Dec 09
3
[LLVMdev] llvm build not respecting DESTDIR?
Reid Spencer wrote: > Yes, but its a bit verbose. The variables that control this are all > defined in the Makefile.config file. The variables are: > > PROJ_prefix := /proj/llvm/install-1 > PROJ_bindir := /proj/llvm/install-1/bin > PROJ_libdir := /proj/llvm/install-1/lib > PROJ_datadir := /proj/llvm/install-1/share > PROJ_docsdir :=
2011 Aug 18
1
Bug: argument 'lib.loc' not passed on appropriately in 'library()'?
Dear list, I'm experimenting with setting up custom 'lib' and 'destdir' directories for my R packages. It seems to me that 'library()' does handle a custom 'lib.loc' argument the way it should for an arbitrary package but NOT for its dependencies on other packages. The latter are looked for in the default lib path (~/R/R-2.x.x/library) and NOT in the custom
2010 Sep 23
1
[resent][PATCH/liboggz] Fix an issue with the symlinks for pre-0.9.9 tool names
When files with pre-0.9.9 tool names exists in $(exec_prefix)/bin, "make DESTDIR=${staging_dir} install" tries to delete them, which may cause a failure for lack of permissions (quite likely to happen when building a package as a normal user), and is wrong anyway (nothing outside of DESTDIR should ever be changed by "make install"). With this patch, it will now cd to
2016 Aug 02
2
Configure option '--with-ssh1' breaks openssh-7.3p1
My pc runs Scientific Linux release 6.8 (Carbon), Kernel 2.6.32-642.3.1.el6.i686, all patches applied. After unpacking, running ' -/configure ' (just that, no other params), then ' make; make install DESTDIR=`pwd`/DESTDIR ' and running sshd from there: the call ' DESTDIR/.../bin/ssh host102 ' succeeds ( authentication with id_rsa ; host 102 is localhost where the new sshd