similar to: 2.2.5, recycle: %U is ok, %u is not

Displaying 20 results from an estimated 1000 matches similar to: "2.2.5, recycle: %U is ok, %u is not"

2017 Sep 18
1
llvm-link: Missing Dwarf DIE references
I am experiencing an issue combining bitcode files for the purpose of generating the combined bitcodes as a single bitcode file. I would like to have any pointers to help me debug this or maybe it has been seen before and a fix is either being worked on or is done. I am using the Xcode 9.0 compiler. I believe the Swift code is 3.x. I have reproduced this using the tot llvm-link. The input
2020 Aug 28
2
Evaluate values in `Sys.setenv`
Hi all, I would like to know if there is any way to evaluate the values in `Sys.setenv` before setting the environment variables. For example, if we want to add a path to the environment variable `PATH`, we can do this in a terminal ``` > export PATH=~/mypath:$PATH > echo $PATH /Users/jeff/mypath:... ``` However, this style of assignment is not allowed in `Sys.setenv`, it treats its
2000 Dec 29
2
how to create help files
Dear R users, this is a question for R version 1.2.0 under Windows NT 4.0, regarding the documentation of ones own functions. I have ceated a private library for my functions, which works all very well, apart from that I am not able to create appropriate help files. For illustration, here is a simple example of where I'm stuck: > # first, create a simple function f1: > f1 <-
2020 Jun 22
2
Question regarding Recycle
Hi Samba 4.12 on Ubuntu 20.04 Windows 10 and 7 clients I have configured recycle on two shares, /Users and /Documents. vfs objects = recycle recycle:versions = yes recycle:keeptree = yes On the Users share I have recycle:repository = /share/data On the Documents share I have recycle:repository = .Papperskorg (recycle bin in Swedish) The Document share recycle works. Folder was created and the
2011 Aug 02
1
msdfs and %u
I tryed to use msdfs, but it doesn't work. Is it my fault, or is it a bug? log.snmd: smbd/msdfs.c:295(create_conn_struct) create_conn_struct: Can't ChDir to new conn path /mypath/host/%u. Error was No such file or directory Part of smb.conf: [global] ... host msdfs = yes ... [eb] path = /mypath/data/eb force group =smb valid users = @gruppeeb write list = @gruppeeb browseable = no
2012 Dec 24
2
whats wrong in my codes???
Dear R family,i am trying to plot and save, simultaneously, about 1000. the name of each plot is contained in "names" file. when i run this loop, i get an error. "Error in plot.new() : Unable to open file 'C:/R/SAVEHERE/myplot_Tak.jpg' for writing". could you please correct the mistake in the loop? >names<-(names(sp)) >for(a in seq_along(names)){ >mypath
2011 May 20
3
"no such file to load -- rails/commands/runner (LoadError)"
Hi, I am using ruby 1.9.2 and rails 3 for my application. I have written a bash script which I want to run in cron. If I directly run the bash file it runs. If I run it through the cron I get the following error:- "/usr/local/rvm/rubies/ruby-1.9.2-p180/lib/ruby/site_ruby/1.9.1/rubygems/custom_require.rb:36:in `require'': no such file to load -- rails/commands/runner (LoadError) from
2017 Mar 14
2
gráfico jpg png
Estimados Hace unos días envié un correo porque tenía problemas para guardar los gráficos en el disco rígido, utilizando R server 9, comentaba que el código antes funcionaba pero que tenía fallas. No encuentro mi mensaje en la lista para continuar el hilo, encontré el problema, no lo comprendo del todo pero cambiando jpg por png funciona, aparentemente hay un inconveniente para guardar en jpg.
2012 Nov 02
1
mergeing a large number of large .csvs
Dear R help; I'm currently trying to combine a large number (about 30 x 30) of large .csvs together (each at least 10000 records). They are organized by plots, hence 30 X 30, with each group of csvs in a folder which corresponds to the plot. The unmerged csvs all have the same number of columns (5). The fifth column has a different name for each csv. The number of rows is different. The
2008 Mar 21
1
Problem with Makefile.win and environment variable
Dear all, When porting my package to WinXP I have the following problem: I need to create an environment variable "MYVAR=c:\mypath" which I have saved in the control panel "System->My Computer" (under the `Advanced' tab). I have two files which need to access MYVAR: config.win, Makefile.win While "config.win" does recognize MYVAR correctly,
2019 Jun 25
2
Share migration
Hello, I will change a old samba share (SMB1 samba 3) to a new samba 4.8.3 (as unix domain member server). For this, I will copy datas from old share to the share via a rsync ssh command : rsync -aAX --progress --delete --stats --human-readable -e "ssh -p 22" root at oldsambaserver:/mypath/* /mypath/ This command copy also all the acls from the old samba share and apply it on the
2007 Mar 05
4
nil object / slave server problem
I''m just getting started wtih backgroundrb, and unfortunately hit a snag right away... I''m running the latest releases of rails, backgroundrb, slave and daemons. I created a simple worker class, using the generator, which currently does nothing but print the arguments that are passed to do_work. I''m running backgroundrb using ''./script/backgroundrb
2011 Apr 21
1
Package check issue: Rprofile.site is not used
Dear R-users, I am having some issues with a package I am working on (using R 2.12.1 in a Linux environment) and would like to have your opinions/advises. My package - let's call it mypackage for the purpose of this email - passes all checks of R CMD check, except for the following failure message: Error : .onLoad failed in loadNamespace() for 'mypackage', details: call:
2009 Jun 02
1
How to push files from Linux to Windows
Hi, I am newbie on rsync. I want to push files from a rsync repository on a Linux machine (hostname=myserver) to some Windows machines (hostname=mydesktopn, where n is a sequence number to identify the Windows PC) to force updates of the files into C:\mypath\to\files. Is there any way to do that? Or is it impossible and I need to content pulling the files instead of pushing them. Could
2008 Sep 16
3
Work with packages without using R CMD build/install
Hello, for my small project I would like to organize the data, functions and documentation as a package. I have already created a skeleton directory structure with DESCRIPTION file and put some files in the R, man and data subdirectories. Now I would like to work on the package without calling R CMD build/install after each change. In fact, I do not have the build tools installed yet (I am on
2001 Dec 03
2
Bug in rsyncd 2.5.0 while handling config file string values
I compiled and tried rsync 2.5.0 but could not get the server running. loadparm.c:string_set() now calls free() which it did not do in 2.4.6 and this free() tries to free memory that was not allocated with malloc. Here is a gdb run (done after adding return before fork() in become_daemon) which shows where it crashes and what my minimal config file for demonstrating the bug was. The config file
2020 Feb 12
3
Incorrect group name is displayed in folder permission list in Windows
> > What is in the username map ? > !root = NAME\Administrator NAME\administrator Administrator administrator
2017 Sep 20
0
llvm-link: Missing Dwarf DIE references
I saw a .o file <mypath>/DreamListViewController.o among .bc files in your llvm-link command. Could that be the cause of the problem? Andrew On Tuesday, 19 September 2017, 11:08:40 pm GMT+8, via llvm-dev <llvm-dev at lists.llvm.org> wrote: Date: Mon, 18 Sep 2017 13:28:52 -0700 From: Jack Carter via llvm-dev <llvm-dev at lists.llvm.org> To: via llvm-dev <llvm-dev at
2007 Aug 01
1
Problem to remove loops in a routine
Dear R-users, I have written the following code to generate some trellis plots. It works perfectly fine except that it is quite slow when it is apply to my typical datasets (over several thousands of lines). I believe the problem comes from the loops I am using to subset my data.frame. I read in the archives that the tapply function is often more efficient than a loop in R. Unfortunately ,
2008 Apr 24
1
system() function
Hi, I am trying to run the command: R CMD INSTALL -l mypath mypackagename from within R (Windows XP) using system() and get the following error: ARGUMENT 'CMD INSTALL -l D:/R/JMB.LIBS jmb.test' __ignored__ Fatal error: you must specify '--save', '--no-save' or '--vanilla' My function contains these 3 lines: setwd("D:/R/R.pkgs") # path to files set