search for: saveto

Displaying 4 results from an estimated 4 matches for "saveto".

Did you mean: haveto
2010 Nov 12
1
issue with ... in write.fwf in gdata
...on 2.5.0 on). It does not seem to accept further arguments to write.table like "eol" as the help file indicates as it stops when executing tmp <- lapply(x, format.info, ...). Great package though - I use it a lot except for this function :) See example below. > require(gdata) > saveto <- tempfile(pattern = "test.txt", tmpdir = tempdir()) > write.fwf(x = data.frame(a=1:length(LETTERS), b=LETTERS), file=saveto, eol="\r\n") Error in FUN(X[[1L]], ...) : unused argument(s) (eol = "\r\n") > sessionInfo() R version 2.12.0 (2010-10-15) Platform: x...
2003 Sep 17
0
Fwd: [Full-Disclosure] Sendmail 8.12.9 prescan bug (a new one) [CAN-2003-0694]
...if (p > addr) >+ p--; > *delimptr = p; >+ } > CurEnv->e_to = saveto; > return NULL; > } > >-- >------------------------- bash$ :(){ :|:&};: -- > Michal Zalewski * [http://lcamtuf.coredump.cx] > Did you know that clones never use mirrors? >-----------------------...
2010 Feb 11
1
[PATCH] Provides a reference implementation management server.
...e directory where the egg will be downloaded. + `delay` is the number of seconds to pause before an actual download attempt. + """ + import urllib2, shutil + egg_name = "setuptools-%s-py%s.egg" % (version,sys.version[:3]) + url = download_base + egg_name + saveto = os.path.join(to_dir, egg_name) + src = dst = None + if not os.path.exists(saveto): # Avoid repeated downloads + try: + from distutils import log + if delay: + log.warn(""" +----------------------------------------------------------...
2010 Feb 17
0
[PATCH] Provides the new node lifecycle events.
...e directory where the egg will be downloaded. - `delay` is the number of seconds to pause before an actual download attempt. - """ - import urllib2, shutil - egg_name = "setuptools-%s-py%s.egg" % (version,sys.version[:3]) - url = download_base + egg_name - saveto = os.path.join(to_dir, egg_name) - src = dst = None - if not os.path.exists(saveto): # Avoid repeated downloads - try: - from distutils import log - if delay: - log.warn(""" -----------------------------------------------------------...