search for: ini_a

Displaying 7 results from an estimated 7 matches for "ini_a".

Did you mean: iniza
2005 Jul 20
1
(PR#8017) build of REventLoop package crashes with 2.1 due
...m. > --- >> * Copyright (C) 1998--2004 The R Development Core Team. > 472c472 > < LibExtern char* R_Home; /* Root of the R tree */ > --- >> extern char* R_Home; /* Root of the R tree */ > 499c499 > < extern int R_Expressions INI_as(5000); /* options(expressions) */ > --- >> extern int R_Expressions INI_as(500); /* options(expressions) */ > 514,515c514 > < LibExtern char* R_TempDir INI_as(NULL); /* Name of per-session > dir */ > < extern char R_StdinEnc[31] INI_as("&q...
2005 Jul 19
0
build of REventLoop package crashes with 2.1 due tosyntax error in Defn.h (PR#8017)
...1998--2005 The R Development Core Team. --- > * Copyright (C) 1998--2004 The R Development Core Team. 472c472 < LibExtern char* R_Home; /* Root of the R tree */ --- > extern char* R_Home; /* Root of the R tree */ 499c499 < extern int R_Expressions INI_as(5000); /* options(expressions) */ --- > extern int R_Expressions INI_as(500); /* options(expressions) */ 514,515c514 < LibExtern char* R_TempDir INI_as(NULL); /* Name of per-session dir */ < extern char R_StdinEnc[31] INI_as(""); /* Encoding assume...
1999 Oct 12
1
Looking for R_Home ...
This is my first question to this list and possibly a bit dumb, but anyway: Can anybody tell me, where, e.g. in the "unix" reference release a DEFINITION of char * R_Home can be found? Via Defn.h the "extern" DECLARATION is everywhere, but when I derived a somewhat other main() program my linker complained about the missing definition. Thomas Hoffmann.
2007 Jun 01
3
Question on the R's C stack limit
Dear r-devel members, I encountered a C stack limit issue, when I tried to embed R 2.5 into my application. In the R-exts document, it says:"Note that R's own front ends use a stack size of 10Mb". I desire to know: is it possible to decrease this stack size by modifying R's source code? If it's possible, which part of the source code is responsible for the issue? Thank
2017 Aug 28
0
[bug report] Cyrillic letter "я" interrupts script execution via R source function
...;\xFF": > iconv("\u044f", "UTF-8", "Windows-1251") [1] "\xff" I suspect that particular value causes trouble for the R parser, which uses a stack of previously-seen characters (include/Defn.h): LibExtern char R_ParseContext[PARSE_CONTEXT_SIZE] INI_as(""); And at various places checks whether the context character is EOF. That character is defined as #define R_EOF -1 Which, when cast to a char, is 0xFF. I suspect that your example is revealing two bugs: 1) The R parser seems to have trouble with native characters encoded as...
2017 Aug 28
3
[bug report] Cyrillic letter "я" interrupts script execution via R source function
Hello, I do not have an account on R Bugzilla, so I will post my bug report here. I want to report a very old bug in base R *source()* function. It relates to sourcing some R scripts in UTF-8 encoding on Windows machines. For some reason if the UTF-8 script is containing cyrillic letter *"?"*, the script execution is interrupted directly on this letter (btw the same scripts are sourcing
2017 Jan 25
2
parallel::mc*: Is it possible for a child process to know it is a fork?
When using multicore-forking of the parallel package, is it possible for a child process to know that it is a fork? Something like: parallel::mclapply(1:10, FUN = function(i) { test_if_running_in_a_fork() }) I'm looking into ways to protect against further parallel processes (including threads), which not necessarily are created via the parallel:mc* API, are being spawned off recursively.