Displaying 4 results from an estimated 4 matches for "thisisatest".
2005 Apr 27
2
Problems compiling C code on windows
...works wonderful but I need to get this code running on windows
boxes.
I know that the problem should be something with the dll generation/linkage
in windows but I can't figure out.
As a matter of test I did the following C code:
#include <R.h>
#include <Rinternals.h>
SEXP thisisatest(SEXP);
SEXP thisisatest(SEXP a)
{
long int i;
if (!isReal(a)) printf("Vector should be double.\n");
for (i=LENGTH(a)-1; i >=0; i--) {
REAL(a)[i] = REAL(a)[i] + 1;
}
return (a);
}
Linu...
2016 Sep 26
2
Recursive dir.create() on Windows shares
Hi folks,
I've noticed that there's an issue with the recursive creation of
directories that reside on network shares. For example:
>
dir.create('\\\\SERVERNAME\\Empl\\Home1\\active\\e\\ecortens\\thisisatest',
recursive = TRUE)
Warning message:
In
dir.create("\\\\SERVERNAME\\Empl\\Home1\\active\\e\\ecortens\\thisisatest",
:
cannot create dir '\\SERVERNAME\Empl', reason 'Permission denied'
The issue is that dir.create() is skipping the server name, but it's not
skip...
2013 Apr 05
1
problems with indexing xlsx files
...e to search for it.
I was able to determine the index number and use delve to see the term list:
#delve users -r 16496
Term List for record #16496: D20130405 Hvesuvius M201304 P/ Tapplication/vnd.openxmlformats-officedocument.spreadsheetml.sheet Ufile://vesuvius/cpurves/this is a test.xlsx Y2013 Zthisisatest thisisatest
You can see that the words are all concatenated together as if they are a single word. If I search for "thisisatest" it comes up, but not otherwise.
I'm using version 1.2.3 on Debian.
--
Chris Purves
Visit my blog: http://chris.northfolk.ca
"The idea is to zap...
2016 Sep 26
0
Recursive dir.create() on Windows shares
On 26/09/2016 5:27 PM, Evan Cortens wrote:
> Hi folks,
>
> I've noticed that there's an issue with the recursive creation of
> directories that reside on network shares. For example:
>
>>
> dir.create('\\\\SERVERNAME\\Empl\\Home1\\active\\e\\ecortens\\thisisatest',
> recursive = TRUE)
> Warning message:
> In
> dir.create("\\\\SERVERNAME\\Empl\\Home1\\active\\e\\ecortens\\thisisatest",
> :
> cannot create dir '\\SERVERNAME\Empl', reason 'Permission denied'
>
> The issue is that dir.create() is skipping...