search for: envnam

Displaying 14 results from an estimated 14 matches for "envnam".

Did you mean: envname
2009 Jul 14
2
Proper Paste for Data Member
...g: tsSource <- ts(paste("sh$",NAMEVARIABLE,sep="") ... ) fails. The paste isn't evaluating properly. What is the proper way to concatenate a data source with a member name such that they evaluate properly. actual code below: doEnv <- function(SOURCEDATA,REGDATA,HOUR,ENVNAME,REPORTNAME) { print(SOURCEDATA) print(REGDATA) print(HOUR) print(ENVNAME) print(REPORTNAME) # blah blah blah ... #Raw Data channel1 <- odbcConnectExcel("Q:/metrics.xls") sqlTables(channel1) sh1 <- sqlFetch(channel1, "Actuals$") close(channel1) # Something here is borked...
2009 Dec 03
0
Problem with predict() and factors
...am working on a script that takes numeric performance indicators and runs them against a series of regressors (dummy regressors, yes\no stuff via 0 and 1, e.g. Was is Christmas this week 0=no, 1=yes). The script is as follows (Written as a function): -- Begin Script -- doEnv <- function(HOUR,ENVNAME,REPORTNAME) { library(RODBC) library(forecast) library("geneplotter") library(forecast) library(fUtilities) library(TSA) require(gplots) library(robfilter) SOURCEDATA <- paste("Q:/TEST/RSTATS/EPOC ",HOUR," Metrics.xls",sep="") REGRESSORS <- "Q:/T...
2016 Oct 31
1
[PATCH] handle: Improve error messaging if XDG_RUNTIME_DIR path does not exist.
...int64_t event, const uint64_t *array, size_t array_len); /* tmpdirs.c */ -extern int guestfs_int_set_env_tmpdir (guestfs_h *g, const char *tmpdir); -extern int guestfs_int_set_env_runtimedir (guestfs_h *g, const char *runtimedir); +extern int guestfs_int_set_env_tmpdir (guestfs_h *g, const char *envname, const char *tmpdir); +extern int guestfs_int_set_env_runtimedir (guestfs_h *g, const char *envname, const char *runtimedir); extern int guestfs_int_lazy_make_tmpdir (guestfs_h *g); extern int guestfs_int_lazy_make_sockdir (guestfs_h *g); extern char *guestfs_int_lazy_make_supermin_appliance_di...
2012 Apr 24
9
Moving from Puppet 0.25 to Puppet 2.6+ : global scope/variables
...and RPM Mirrors (yumrepo{ }) I''ve read the following blog post: http://puppetlabs.com/blog/the-problem-with-separating-data-from-puppet-code/ Back with puppet < 0.25, we''d use "global variables" (not even node inheritance). manifest/sites.pp had something like: $envname = ''prod'' $envstr = '''' $dns_servers = [ ''10.0.0.42'', ''10.10.1.42'' ] import "classes/*.pp" node ''server1.hostingcompanyAlpha.com'' { $httpd_maxclients = 300 $yum_base = "http://mirrors.hostin...
2018 Oct 18
1
backup of tdb files
...e TDB. Likewise the domain SID may be absent if the machine is > not joined to a domain. Ok, both SIDs are now being treated as optional. There is something about the CI test environment I haven’t fully grasped yet: In most envs the relevant secrets.tdb in the container is located at $PREFIX/$ENVNAME/private/secrets.tdb. For some reason this is not the case for “fl2003dc”. This one lacks ./st/*/private/secrets.tdb, but has ./ab/bin/*/private/secrets.tdb instead. How would I determine the latter path in a blackbox test to avoid hardcoding it? Best, Philipp -------------- next part -----------...
2020 Aug 03
2
State-of-the-art NLP models from R
...gt; responderme. Especialmente a Carlos Ortega que, como siempre, me ha vuelto > a enseñar el camino. > > El asunto era exactamente como decía > Carlos; habiendo yo aplicado la siguiente solución: > > library(reticulate) > > conda_create(envname = "r-reticulate", > packages = "python", > forge = TRUE, > channel = character(), > conda = "auto") # Create a new environment. No > muestro el resultado porque ha sido muy largo. >...
2020 Aug 02
2
State-of-the-art NLP models from R
Estimados Una pregunta, ¿Que posibilidad hay que esté instalado todo correctamente, pero algo cambie en entorno de python, el cual al ser buscado por R esté dando problemas? Hace años que no utilizo macOS, pero se me ocurre que un programa coloque en entorno adecuado para él, pero al mismo tiempo este toque al entorno requerido por R. Javier Rubén Marcuzzi El dom., 2 ago. 2020 a las 15:59,
2009 Mar 31
2
Wishlist: optional svn-revision number tag in package DESCRIPTION file
Hi, just a little wish : Could we have one (or maybe more) standardized optional tag(s) for package DESCRIPTION files to cover svn revision info? This would be very useful for bug reporting... I know that any developer is already free to append corresponding lines to DESCRIPTION files to do something of this sort --- e.g. lines like LastChangedDate: {$LastChangedDate: 2009-03-31 $}
2016 Dec 11
3
[PATCH 0/2] generic function for temporary path generation
Cosmetic change as suggested in this previous patch: https://www.redhat.com/archives/libguestfs/2016-November/msg00111.html Matteo Cafasso (2): lib: generic function for temporary path generation lib: use guestfs_int_make_temp_path to generate temporary files src/drives.c | 5 ++--- src/file.c | 22 +++++++++------------- src/guestfs-internal.h | 1 + src/journal.c
2011 Apr 01
0
Fw: Re: core Matrix package segfaulted on R CMD check --use-gct
...- "Matrix" > > source(file.path(R.home("share"), "R", > "examples-header.R")) > > gctorture(TRUE) > > options(warn = 1) > > library('Matrix') > Loading required package: lattice > Error in regexpr("package:", envName, fixed = TRUE) : > ? unprotected object (0x3a52538) encountered (was > INTSXP) > Error: package/namespace load failed for 'Matrix' > Execution halted > > I also found a different problem, but it looks like it is a > different part of R and possibly in utils. I'll...
2005 Jun 05
0
Re: Bison, Flex, Conditional Expression
...a good question. I haven't been following the addition of this new set of capabilities in asterisk, but see that "show functions" returns: DB DB(<family>/<key>) Read or Write from/to the Asterisk database ENV ENV(<envname>) Gets or sets the environment variable specified IF IF(<expr>?<true>:<false>) Conditional: Returns the data following '?' if true else the data following ':' EXISTS EXISTS(<data>)...
2018 Oct 15
2
backup of tdb files
-<| Quoting Andrew Bartlett <abartlet at samba.org>, on Saturday, 2018-10-13 08:09:31 AM |>- > On Fri, 2018-10-12 at 16:59 +0200, Philipp Gesang via samba wrote: > > Hi Andrew, > > > > revisiting this subject once again because I seem to have reached > > an impass. > > > > -<| Quoting Andrew Bartlett <abartlet at samba.org>, on Monday,
2017 Sep 20
7
[PATCH v2] 0/6] Various clean ups in lib/
v1 -> v2: - Remove the unnecessary calls to guestfs_int_lazy_make_tmpdir in the final patch. Rich.
2017 Sep 19
7
[PATCH 0/6] Various clean ups in lib/
Miscellaneous small cleanups in lib/ directory. Rich.