Displaying 5 results from an estimated 5 matches for "doloadact".
2014 Jun 05
1
Building source package in Windows, error in .doLoadActions()
...n the package, I modified Makevars, linking to library libomp5md instead
of libomp5, and built the package with R CMD build KNITRO.
When I install with:
R CMD INSTALL --build --no-multiarch
it to "testing if installed package can be loaded" and gives the following
error:
Error in .doLoadActions(where, attach) :
error in load action .__A__.1 for package KNITRO: loadModule(module =
"knitro", what = TRUE, env = ns, loadNow = TRUE): Unable to load module
"knitro": Failed to initialize module pointer: Error in
FUN("_rcpp_module_boot_knitro"[[1L]], ...): no s...
2018 Nov 03
1
odd NOTE in R CMD check of data; Rcpp module related
...s file:
> f <- system.file("data/gSSURGO.chunk.rda", package="soilDB")
> "raster" %in% .packages()
[1] FALSE
> load(f)
> gSSURGO.chunk
Loading required package: raster
Loading required package: sp
Error: package or namespace load failed for ?raster? in
.doLoadActions(where, attach):
error in load action .__A__.1 for package raster: loadModule(module =
"spmod", what = TRUE, env = ns, loadNow = TRUE): Unable to load module
"spmod": object of type 'closure' is not subsettable
Error in .requirePackage(package) :
unable to find req...
2024 Sep 27
1
Disabling S4 primitive dispatch during method resolution affects namespace load actions
...all reproduction
package [3], which will need to be installed to show the problem:
R -q -s -e "saveRDS(repro::mk_external(), 'foo.rds')"
R -q -s -e "readRDS('foo.rds')"
# Loading required package: repro
# Error: package or namespace load failed for ?repro? in
# .doLoadActions(where, attach):
# error in load action .__A__.1 for package repro: bar$foo(): attempt
# to apply non-function
# Error in .requirePackage(package) : unable to find required package
# ?repro?
# Calls: <Anonymous> ... .findInheritedMethods -> getClass ->
# getClassDef -> .requireP...
2024 Sep 27
1
Disabling S4 primitive dispatch during method resolution affects namespace load actions
...to be installed to show the problem:
> R -q -s -e "saveRDS(repro::mk_external(), 'foo.rds')"
> R -q -s -e "readRDS('foo.rds')"
> # Loading required package: repro
> # Error: package or namespace load failed for ?repro? in
> # .doLoadActions(where, attach):
> # error in load action .__A__.1 for package repro: bar$foo(): attempt
> # to apply non-function
> # Error in .requirePackage(package) : unable to find required package
> # ?repro?
> # Calls: <Anonymous> ... .findInheritedMethods ->...
2014 Nov 25
0
problem with setGroupGeneric from package methods
...sible from searchWhere
if(attach)
.cacheGeneric(f, fdef)
else
.uncacheGeneric(f, fdef)
methods <- .updateMethodsInTable(fdef, where, attach) ### !!!
cacheGenericsMetaData(f, fdef, attach, where, fdef at package, methods)
}
.doLoadActions(where, attach)
invisible(NULL) ## as some people call this at the end of functions
}
###############
# add objects to the generic function's environment that allow
# table-based dispatch of methods
.setupMethodsTables <- function(generic,
initialize = !exists(".MTable",...