Displaying 7 results from an estimated 7 matches for "print_values".
Did you mean:
print_value
2011 Jan 25
2
Psi-Ops: The Mindgate Conspiracy
Ok so I used to play this game a lot on my old pc and want to play it again. Awesomely its now freeware but anyway. I downloaded the file and then put it in a folder named PsiOps in my desktop, navigated to the folder in Terminal and then tried using wine to run the .exe. The error message "so and so.exe has encountered a serious problem and needs to close" This is what was in the
2008 Jun 12
4
[LLVMdev] Possible miscompilation?
Gordon Henriksen wrote:
> On 2008-06-11, at 13:16, Gary Benson wrote:
> > Duncan Sands wrote:
> > > Can you please attach IR which can be compiled to an executable
> > > (and shows the problem).
> >
> > I've been generating functions using a builder and then compiling
> > them with ExecutionEngine::getPointerToFunction(). Is there some
> >
2008 Jun 11
0
[LLVMdev] Possible miscompilation?
On 2008-06-11, at 13:16, Gary Benson wrote:
> Duncan Sands wrote:
>
>> Can you please attach IR which can be compiled to an executable
>> (and shows the problem).
>
> I've been generating functions using a builder and then compiling
> them with ExecutionEngine::getPointerToFunction(). Is there some way
> I can get compilable IR from that?
2008 Jun 11
2
[LLVMdev] Possible miscompilation?
Duncan Sands wrote:
> Can you please attach IR which can be compiled
> to an executable (and shows the problem).
I've been generating functions using a builder and then
compiling them with ExecutionEngine::getPointerToFunction().
Is there some way I can get compilable IR from that?
Cheers,
Gary
--
http://gbenson.net/
2008 Jun 11
3
[LLVMdev] Possible miscompilation?
Hi all,
I'm trying to figure out a weird bug I'm seeing. I'm hoping it's
something simple in my IR but I can't see anything wrong so I'm
hoping someone here can see something.
I'm using LLVM to compile Java bytecode into native functions.
My code keeps track of the Java local variables in an array of
llvm::Value pointers which get phi'd up at various points. The
2009 Jun 06
5
Rake Tasks
...ift # Shifting removes the row containing the <th> table
header elements.
@rows.delete([]) # Remove any empty rows in our array of arrays.
@numrows = @rows.length
end
def clean_celldata
@rows[@numrows-1][0] = 120
end
# Print a joined list by row to see our results
def print_values
puts "Number of rows = #{numrows}."
for i in 0..@numrows-1
puts @rows[i].join('', '')
end
end
end
# In our search we are supplying the website url to parse, the type of
element (ex: table), the class name of that element
# and the child element that con...
2009 Jun 07
17
ActiveRecord Classes
...rushing =
Scraper.new(''http://web1.ncaa.org/mfb/natlRank.jsp?year=2008&rpt=IA_teamrush&site=org'',
''table'', ''statstable'', ''//tr'')
offensive_rushing.scrape_data
offensive_rushing.clean_celldata
offensive_rushing.print_values
offensive_rushing.update_rushing_offense # the call to the method
above
end
Now if I run the rake file what is going to happen is I''m going to get
an error stating:
Table ''project_development.scrapers'' doesn''t exist:
I believe I understand why that''...