Displaying 4 results from an estimated 4 matches for "treturn".
Did you mean:
return
2011 May 24
4
"Alpha testers" para el paquete rPython
..., repos="http://R-Forge.R-project.org")
-- Cargar el paquete mediante library( rPython )
-- Ejecutar cualquiera de los ejemplos que aparecen en la ayuda de
alguna de las funciones del paquete, como, por ejemplo,
a <- 1:4
b <- 5:8
python.exec( c( "def concat(a,b):", "\treturn a+b" ) )
python.call( "concat", a, b)
-- Mandarme un correo con los problemas encontrados, de haberlos.
¡Quedaré muy agradecido!
Un saludo,
Carlos J. Gil Bellosta
http://www.datanalytics.com
2006 Jun 05
2
[PATCH] Pet peave then->than
...arse/Pidl/Samba3/Parser.pm (working copy)
@@ -35,7 +35,7 @@
{
my ($a,$b) = @_;
- # Only align if previous element was smaller then current one
+ # Only align if previous element was smaller than current one
if ($$a < $b) {
pidl "if (!prs_align_custom(ps, $b))";
pidl "\treturn False;";
Index: source/pidl/lib/Parse/Pidl/Samba4/NDR/Parser.pm
===================================================================
--- source/pidl/lib/Parse/Pidl/Samba4/NDR/Parser.pm (revision 16046)
+++ source/pidl/lib/Parse/Pidl/Samba4/NDR/Parser.pm (working copy)
@@ -836,7 +836,7 @@
{
m...
2012 Nov 29
2
[LLVMdev] problem trying to write an LLVM register-allocation pass
I have a new problem: Register RBP is used in a function foo. (I am not
allocating RBP to any virtual register, the instances of RBP in function
foo are in the machine code when my register allocator starts.)
Function foo calls function bar. Register RBP is not saved across the
call, though it is live after the call. Function bar includes a virtual
register. The code that I'm using to
2012 Dec 01
0
[LLVMdev] problem trying to write an LLVM register-allocation pass
...if ( C_plus_plus )
{
outn( "\n#include <FlexLexer.h>" );
if ( yyclass )
{
outn( "int yyFlexLexer::yylex()" );
outn( "\t{" );
outn(
"\tLexerError( \"yyFlexLexer::yylex invoked but %option yyclass used\" );" );
outn( "\treturn 0;" );
outn( "\t}" );
out_str( "\n#define YY_DECL int %s::yylex()\n",
yyclass );
}
}
else
{
if ( yytext_is_array )
outn( "extern char yytext[];\n" );
else
{
outn( "extern char *yytext;" );
outn( "#define yytext_ptr...