search for: outputtype

Displaying 6 results from an estimated 6 matches for "outputtype".

Did you mean: output_type
2009 Apr 27
5
ruby jasper report
Hi, I am trying to create a pdf using ruby jasper. For this I am referring this url:- http://oldwiki.rubyonrails.org/rails/pages/howtointegratejasperreports I have done everything whatever is in that link. Still I am not able to get the pdf. I am not getting any error in log file. My log file is:- "Processing AccountController#customer_report (for 127.0.0.1 at 2009-04-27 13:19:34) [GET]
2012 May 02
1
rgl.Sweave not producing transparency in pdf plots with alpha
...st of rgl.sweave's alpha capability. \begin{figure} % uncomment line below for png output (correct transparency) % <<echo=FALSE, grdevice=rgl.Sweave, fig=TRUE, width=5, height=5, resolution=100>>= <<echo=FALSE, grdevice=rgl.Sweave, fig=TRUE, width=5, height=5, resolution=100, outputtype=pdf, pdf=TRUE>>= library(rgl) data(volcano) z <- 2 * volcano # Exaggerate the relief x <- 10 * (1:nrow(z)) # 10 meter spacing (S to N) y <- 10 * (1:ncol(z)) # 10 meter spacing (E to W) zlim <- range(y) zlen <- zlim[2] - zlim[1] + 1 colorlut <- terrain.colors(zlen)...
2009 Jan 06
6
Calling System on winows batch file
Hello everyone, I''m using InstantRails 2.0 on a Windows XP 32 bit system. I''m developing a Rails application where I would like to execute a .bat file I''ve had a look around and this piece of code is suppose to do the trick but it does not seem to work. system(''path/to/file.bat'') Do I need to have some plugins/gems installed? Regards, McKenzie.
2006 Dec 08
0
[LLVMdev] Proposed: first class packed structures
.../vadve/shared/PublicCVS/llvm/lib/Bytecode/Writer/ Writer.cpp,v retrieving revision 1.134 diff -t -d -u -p -5 -r1.134 Writer.cpp --- lib/Bytecode/Writer/Writer.cpp 6 Dec 2006 04:27:07 -0000 1.134 +++ lib/Bytecode/Writer/Writer.cpp 6 Dec 2006 17:25:08 -0000 @@ -247,11 +247,11 @@ void BytecodeWriter::outputType(const Ty Reid can chime in here, but it seems like there should be a more efficient way to encode the packed'ness than using a whole byte per struct type. Perhaps it doesn't matter, because we will hopefully be moving to per-bit encoding in the near future. -Chris
2006 Dec 06
4
[LLVMdev] Proposed: first class packed structures
Currently, Structure layout is left to targets, which implement them according to the ABI of that platform. While this is fine for most structures, it makes packed structures very ugly. All fields in a packed type must be converted to byte arrays with casts to access fields, which bloats accesses and obsfucates the types. First class support for packed types would clean up the generated code
2015 May 24
19
[RFC PATCH 00/11] Implement ARB_cull_distance
This patch series adds the needed support for this extension to the various parts of mesa to finally enable it for nvc0. Dave Airlie (1): glsl: lower cull_distance into cull_distance_mesa Tobias Klausmann (10): glapi: add GL_ARB_cull_distance mesa/main: add support for GL_ARB_cull_distance mesa/prog: Add varyings for arb_cull_distance mesa/st: add support for GL_ARB_cull_distance