Displaying 2 results from an estimated 2 matches for "sandbox2".
Did you mean:
sandbox
2017 Mar 30
4
de-posixifying list tests?
Rafael, Filipe,
I am looking at the fixes you apply to sanitizer tests and they worry me.
(e.g. https://reviews.llvm.org/D31498)
The fixes are mostly mechanical and thus every single change looks safe,
but given the amount of changes there is large risk to cripple some of the
tests
in a way that they will stop detecting failures.
When I write a test for new functionality, I always verify that
2006 May 24
0
Mongrel errors on file upload
...def read_in
if params[:file_to_upload].instance_of?(Tempfile)
FileUtils.copy(params[:file_to_upload].local_path, "#{RAILS_ROOT}/public/sandbox1.xml")
@location_display = "Copied the Tempfile to sandbox1.xml"
else
File.open("#{RAILS_ROOT}/public/sandbox2.xml","w"){|f|
f.write(params[:file_to_upload].read)
f.close}
@location_display = "Saved the IOString to sandbox2.xml"
end
end
end
------------ index.rhtml ------------
<h1>Choose the file to upload:</h1>
<%= start_form_tag({:...