search for: checkglocr

Displaying 6 results from an estimated 6 matches for "checkglocr".

Did you mean: check_lock
2014 Jul 08
3
Paquete generado no detectan ambiente particular creado.
...estar integrado (a efectos prácticos) por funciones, sin admitir la existencia de una estructura de datos subyacente, como es el conjunto formado por lGlo y bStarted, ambas incluidas en el environment creado (.Ch.env) .Ch.env <- new.env() .Ch.env$lGlo <- list() .Ch.env$bStarted <- FALSE CheckGloCreated <- function() {   if (.Ch.env$bStarted == TRUE) {     stop("Data structures were already initialized.", call.=FALSE)    } } ChrL.Start <- function() {    CheckGloCreated() .Ch.env$bStarted <- TRUE   cat("Tested.\n") } Lo único peculiar al paquetizar es que en el...
2014 Jul 07
2
Consulta paquetización con versión R 3.1.0
Hi everybody I have a very big problem: With R 3.0.2 I could construct the package for this code: if (exists('.ChrL.env') == TRUE) {   rm(.ChrL.env) } .ChrL.env <- new.env() .ChrL.env$lGlo <- list() .ChrL.env$bStarted <- FALSE CheckGloCreated <- function() {   if (.ChrL.env$bStarted == TRUE) {     stop("Data structures were already initialized.", call.=FALSE)    } } ChrL.Start <- function() {    CheckGloCreated()     cat("Libraries have been loaded and data structure has been initialized.\n") } As y...
2014 Jul 07
2
Consulta paquetización con versión R 3.1.0
Hi everybody I have a very big problem: With R 3.0.2 I could construct the package for this code: if (exists('.ChrL.env') == TRUE) {   rm(.ChrL.env) } .ChrL.env <- new.env() .ChrL.env$lGlo <- list() .ChrL.env$bStarted <- FALSE CheckGloCreated <- function() {   if (.ChrL.env$bStarted == TRUE) {     stop("Data structures were already initialized.", call.=FALSE)    } } ChrL.Start <- function() {    CheckGloCreated()     cat("Libraries have been loaded and data structure has been initialized.\n") } As y...
2014 Jul 09
3
Resumen de R-help-es, Vol 65, Envío 13
...estar integrado (a efectos prácticos) por funciones, sin admitir la existencia de una estructura de datos subyacente, como es el conjunto formado por lGlo y bStarted, ambas incluidas en el environment creado (.Ch.env) .Ch.env <- new.env() .Ch.env$lGlo <- list() .Ch.env$bStarted <- FALSE CheckGloCreated <- function() { if (.Ch.env$bStarted == TRUE) { stop("Data structures were already initialized.", call.=FALSE) } } ChrL.Start <- function() { CheckGloCreated() .Ch.env$bStarted <- TRUE cat("Tested.\n") } Lo único peculiar al paquetizar es que en el Ch...
2014 Jul 08
0
Re: [R-es] Consulta paquetización con versión R 3.1.0
...t; > > Duncan, >>> > > >>> > > The ChrL folder has the following components: >>> > > >>> > > * Description file >>> > > * Namespace file >>> > > * R folder, including 3 files: CheckGloCreated.r, ChrL.Start.r >>> and >>> > > ChrL-internal.r >>> > > >>> > >>> > And does ChrL-internal.r contain just one line as you said before, >>> i.e. >>> > >>> > .ChrL.env <- new.env()...
2014 Jul 08
2
Paquete generado no detectan ambiente particular creado.
...estar integrado (a efectos prácticos) por funciones, sin admitir la existencia de una estructura de datos subyacente, como es el conjunto formado por lGlo y bStarted, ambas incluidas en el environment creado (.Ch.env) .Ch.env <- new.env() .Ch.env$lGlo <- list() .Ch.env$bStarted <- FALSE CheckGloCreated <- function() { if (.Ch.env$bStarted == TRUE) { stop("Data structures were already initialized.", call.=FALSE) } } ChrL.Start <- function() { CheckGloCreated() .Ch.env$bStarted <- TRUE cat("Tested.\n") } Lo único peculiar al paquetizar es que en el Ch...