64 Bit Java is slower than 32 Bit.

I was running a Linux 64 JDK 1.5 JVM, and doing large software builds.
The ant builds, which would involve some file operations and come javac compiling took about 6:30 to complete. After changing my JVM to the 32 bit version they completed in 4:15.
Is the 64 bit Java support really so bad?

That wasn't the case here tho', no EXS instances at all in this project.
I tried clearing some caches and that seemd tp make it worse, so that when opening in 64bit, Logic would hang and say: Searching for Audio Unit plug-ins (Apple: AUNet Receive). Then eventually it would load.
But none of this would happen in 32bit mode, just a normal load, very fast.
So I reinstalled Logic update 9.1.7 and that seemed to sort it out, at least I'm back to where Logic loads slowly in 64bit mode, without any "Searching for ..." messages.
Any more guidance appreciated.

Similar Messages

  • 64 bits Java 7 on 64 bits ColdFusion 9.0.1?

    Does any knows if ColdFusion 9.0.1 (64 bits) support JDK 7 (64 bits).
    One some of our servers, when we start ColdFusion Application service, we get "error loading ...jvm.dll". The path is correct and the jvm.dll file does exists, we also confirmed that the jvm.dll is 64 bits.
    On other servers, it works fine (same architecture). We use non-priv service account to run ColdFusion.

    Yeah, 9.0.1 is old
    We rollbacked to 6u35 until we resolved that issue. Other servers run fine with 7u07, need to figure out it why that sole server don't like the Java7u07. All of the servers are 64 bits.
    I am thinking that someone might be not following instructions when setting up the servers, missing some rights But event viewer didn't say anything bad.
    Java 6 EOL is soon so need to figure out fast.

  • Is java really slower than C++ or is it really small?  I hate people saying

    I keep running into people saying oh Java sucks! Java is so slow. I use to be a hard core C++ fan until I used Java now I love it and I want to defend java, anyone know any resources where it explains that Java really isn't much slower than C++? Or the advantages of Java vs C++?
    Thanks!

    lokie wrote:
    I do know more than one language.
    I know C/C++/Java/MIPS-32 ASM/Rexx
    After programming in all these languages I just found Java being superior in all aspects when it was compared against C++ (other than game programming).How about speed? While the speed difference between Java and C++ has dropped significantly, C++ is a little faster on average. Java can be faster under some circumstances, but this isn't very common (not yet anyway). This brings up a nice aspect of Java: as the JVM is improved, your programs may automatically get faster.
    Garbage collection reduces the amount of time needed to manage memory. On the down-side, garbage collection can cause unpredictable slowdowns, which can be problematic for some applications. Well-written C++ can reduce the amount of time and effort spent managing memory.
    The standard libraries are pretty good and well documented.
    The JVM has been ported to many platforms, making portability a much reduced problem since recompilation isn't needed. JNI can make portability a problem, but this isn't especially common.
    The language is fairly simple and very well documented. Very little about the language is left as "undefined" or "platform-dependent". Language simplicity is a trade-off though.
    Threading and synchronization primitives are part of the language. They may not be advanced, but they're better than nothing.
    C++ certainly has it's strong points as well. Be wary of thinking of yourself as a "fan" of Java.

  • 32 bit Java rather than 64??

    I used to be able to deposit my checks online with my PC. Hooked up seemlessly with my Epson printer. My Mac is asking for a 32 bit Java applet rather than the 64 bit. Apparently the bank system is designed for 32 bit only.  It didn't make any difference with the PC (using XP Prof).  Now I'm stumped.  How or can I select 32 rather than 64?  I'm kind of clueless when it comes to these kinds of things.

    Try changing the priority order within the Java Preference application. Try these steps:
    1) Do a spotlight search for "Java"  "Java Preferences" should show up. (to do a spotlight search, hold the command key and then click spacebar.
    2) Open the Java Preferences app.
    3) Drag the 32 bit Java SE to the top above the 64 bit version.
    Not sure if you'll have to re-start apps, or re-boot, but this may get you back up.  Good luck.
    Don

  • SetDiagnosticDirectory(Diagnostics.java:54) [32-bit java on 64-bit machine]

    On 64-bit LucidLynx Linux, If I run Oracle SQL Developer using 64 bit java, all is fine.
    If I use 32-bit java, it doesn't start up and I get this fatal error:
    java.lang.IllegalArgumentException: Cannot create <pwd>/?/.sqldeveloper/system1.5.5.59.69/o.ide/diagnostics
         at oracle.javatools.logging.Diagnostics.setDiagnosticDirectory(Diagnostics.java:54)
         at oracle.ide.IdeCore.startupImpl(IdeCore.java:1293)
    <pwd> represents the current directory that I am in. That question mark appears as is.
    If I run this as `sudo`, it works, cause it gets past the "permissions" problem. (but that's a red herring).
    It should be trying to create the ".sqldeveloper/..." directory under my home directory, not in the present
    working directory, and certainly not with a question mark as another directory name.
    It appears that when using the 32 bit java (on a 64 bit machine), that whatever function
    Oracle is using/spawning to determine the user and its
    home directory, is failing, and the code just says, plop the diagnostics directory right here.
    How does one debug this?
    (I tried running `jdb` but setting break points doesn't seem to have an effect)
    ( Aside: on a 32-bit LucidLynx Linux machine, using 32-bit java, SQL Developer works fine.
    I have all the necessary 32-bit libs, as we use 32-bit Java on 64 bit machines for other apps as well.)

    I'm pretty new to java and this is the first
    first time i'm making a post here. I want to know, if
    i write a java program in a 32 bit environment will
    the same code work in a 64 bit Environment too. Does
    java abstract the architecture too?Only if there's a JVM available for the target environment.
    Note for example that Sun supports 64 bit AMD processors but not Intel. But when they do your Java code will work without changes.

  • Why is java slower than C and C++

    Hi Guys:
    I would like to know why Java is slower than C and C++ in terms of compilation speed...
    Does it have to do with the fact that Java compiles to byte code first and then the JVM translates byte code to machine code which your processor can understand. whereas C and C++ compiles directly to machine code...
    Any ideas on that,...let me know..

    It's not necessarily. I would suggest that it always is; whencomparing
    specific tasks.I would suggest that is never is (significantly)
    when non-trivial and non-specialized applicationsare
    involved. Requirements and design always have a
    much greater impact.There's no doubt that the design is the most
    important
    aspect when writing a program, but assuming those
    things
    are equal, the fact is that a c program will be
    faster.Yes, but given the fact that there is almost zero chance that the requirements, design and implementation will be optimal, it means that the real differences between the languages are insignificant compared to the real difference caused by the other factors.
    In the theorectical world C/C++ is faster. In the real world, most of the time, it is not significant.

  • 32-bit Java error with Navy Federal Credit Union eScan Deposit

    I am trying to do eScan Deposit. The first time it said it needed to download a Java applet, and I said yes, after the download was complete it still did not recognize the scanner. It gave me an error saying "This system does not support 64-Bit Java. Select 32-Bit Java". I verified with Apple Support that both 32 and 64-bit Java come with snow leeopard and the Java Prefs were correct. Could this be the printer, or is this a Navy Federal web site issue? Anyone know how to fix the problem? Thanks in advance. 

    The browser does not allow created files to be uploaded, it wants to manage that process. This worked fine for my windows latop, but I had the full HP driver installed. HP has not made one availabile yet for 10.7.2 and recommeds using the Apple drivers. I can do that fine for printing and scanning (with the Image software). But not with the application. The Credit Union sais it "should work with MAC" provided I have the right printer driver and TWAIN compliant scanner. The HP 7780is TWAIN compliant. HP recommended gong to www.twain.org and downloading TWAIN s/w for MACs. I started to, but the s/w was dated 2002 and won't help for newer MAC operating systems.

  • Why is Photoshop CC 64-bit is slower than 32-bit?

    I have a very powerful system.
    HP Z820 Workstation
    Intel Xeon CPU E5-2670 0 @ 2.60 GHz (2 processors)
    64 GB RAM
    64-bit OS
    Windows 7 Pro
    Nvidiea GeForce GTX 690 (2 GPUs) 4 GB VRAM ea.
    But here's the deal. When I'm painting or drawing down to the pixels within Photoshop CC 64-bit, it crawls, the lag is so great!  I have caching on an SSD card even.  Then I had an idea, I switched to the 32-bit version of Photoshop CC and everything is good, it's faster than the 64-bit version. 
    What gives?!?  Why would the 32-bit version be faster than the 64-bit version?

    I know, it's VERY odd. I can actually do things faster in 32-bit mode Photoshop CC. I'm painting a very large digital painting. 180 dpi, at 40" x 24" (for print) - When I first started painting it, I was using Adobe Photoshop CS5 and it was very smooth to paint it, very fast.  But now I've upgraded to Photoshop CC and the 64-bit is VERY slow, and lags terribly.   Then just on a whim, I opened up Photoshop CC 32-bit and could paint just the way I did with the old CS5, very fast and smooth.  It's like Photoshop CC 64-bit was a major step down in performance.
    Here's my system info.
    Adobe Photoshop Version: 14.2.1 (14.2.1 20140207.r.570 2014/02/07:23:00:00) x64
    Operating System: Windows 7 64-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:13, Stepping:7 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 16
    Logical processor count: 32
    Processor speed: 2593 MHz
    Built-in memory: 65461 MB
    Free memory: 54265 MB
    Memory available to Photoshop: 59675 MB
    Memory used by Photoshop: 60 %
    Image tile size: 1024K
    Image cache levels: 4
    Font Preview: Medium
    TextComposer: Latin
    Display: 1
    Display Bounds: top=0, left=0, bottom=1080, right=1920
    Display: 2
    Display Bounds: top=0, left=1920, bottom=1080, right=3840
    Display: 3
    Display Bounds: top=0, left=-1920, bottom=1200, right=0
    OpenGL Drawing: Enabled.
    OpenGL Allow Old GPUs: Not Detected.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    AIFCoreInitialized=1
    AIFOGLInitialized=1
    OGLContextCreated=1
    NumGPUs=2
    gpu[0].OGLVersion="3.0"
    gpu[0].MemoryMB=2048
    gpu[0].RectTextureSize=16384
    gpu[0].Renderer="GeForce GTX 690/PCIe/SSE2"
    gpu[0].RendererID=4488
    gpu[0].Vendor="NVIDIA Corporation"
    gpu[0].VendorID=4318
    gpu[0].HasNPOTSupport=1
    gpu[0].DriverVersion="9.18.13.2723"
    gpu[0].Driver="nvd3dumx.dll,nvwgf2umx.dll,nvwgf2umx.dll,nvd3dum,nvwgf2um,nvwgf2um"
    gpu[0].DriverDate="20130912000000.000000-000"
    gpu[0].CompileProgramGLSL=1
    gpu[0].TestFrameBuffer=1
    gpu[0].OCLPresent=1
    gpu[0].OCLVersion="1.1"
    gpu[0].CUDASupported=1
    gpu[0].CUDAVersion="4.2.1"
    gpu[0].OCLBandwidth=1.50733e+011
    gpu[0].glGetString[GL_SHADING_LANGUAGE_VERSION]="4.30 NVIDIA via Cg compiler"
    gpu[0].glGetProgramivARB[GL_FRAGMENT_PROGRAM_ARB][GL_MAX_PROGRAM_INSTRUCTIONS_ARB]=[16384]
    gpu[0].glGetIntegerv[GL_MAX_TEXTURE_UNITS]=[4]
    gpu[0].glGetIntegerv[GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS]=[192]
    gpu[0].glGetIntegerv[GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS]=[32]
    gpu[0].glGetIntegerv[GL_MAX_TEXTURE_IMAGE_UNITS]=[32]
    gpu[0].glGetIntegerv[GL_MAX_DRAW_BUFFERS]=[8]
    gpu[0].glGetIntegerv[GL_MAX_VERTEX_UNIFORM_COMPONENTS]=[4096]
    gpu[0].glGetIntegerv[GL_MAX_FRAGMENT_UNIFORM_COMPONENTS]=[2048]
    gpu[0].glGetIntegerv[GL_MAX_VARYING_FLOATS]=[124]
    gpu[0].glGetIntegerv[GL_MAX_VERTEX_ATTRIBS]=[16]
    gpu[0].extension[AIF::OGL::GL_ARB_VERTEX_PROGRAM]=1
    gpu[0].extension[AIF::OGL::GL_ARB_FRAGMENT_PROGRAM]=1
    gpu[0].extension[AIF::OGL::GL_ARB_VERTEX_SHADER]=1
    gpu[0].extension[AIF::OGL::GL_ARB_FRAGMENT_SHADER]=1
    gpu[0].extension[AIF::OGL::GL_EXT_FRAMEBUFFER_OBJECT]=1
    gpu[0].extension[AIF::OGL::GL_ARB_TEXTURE_RECTANGLE]=1
    gpu[0].extension[AIF::OGL::GL_ARB_TEXTURE_FLOAT]=1
    gpu[0].extension[AIF::OGL::GL_ARB_OCCLUSION_QUERY]=1
    gpu[0].extension[AIF::OGL::GL_ARB_VERTEX_BUFFER_OBJECT]=1
    gpu[0].extension[AIF::OGL::GL_ARB_SHADER_TEXTURE_LOD]=1
    gpu[1].OGLVersion="3.0"
    gpu[1].MemoryMB=2048
    gpu[1].RectTextureSize=16384
    gpu[1].Renderer="GeForce GTX 690/PCIe/SSE2"
    gpu[1].RendererID=4488
    gpu[1].Vendor="NVIDIA Corporation"
    gpu[1].VendorID=4318
    gpu[1].HasNPOTSupport=1
    gpu[1].DriverVersion="9.18.13.2723"
    gpu[1].Driver="nvd3dumx.dll,nvwgf2umx.dll,nvwgf2umx.dll,nvd3dum,nvwgf2um,nvwgf2um"
    gpu[1].DriverDate="20130912000000.000000-000"
    gpu[1].CompileProgramGLSL=1
    gpu[1].TestFrameBuffer=1
    gpu[1].OCLPresent=1
    gpu[1].OCLVersion="1.1"
    gpu[1].CUDASupported=1
    gpu[1].CUDAVersion="4.2.1"
    gpu[1].OCLBandwidth=1.50556e+011
    gpu[1].glGetString[GL_SHADING_LANGUAGE_VERSION]="4.30 NVIDIA via Cg compiler"
    gpu[1].glGetProgramivARB[GL_FRAGMENT_PROGRAM_ARB][GL_MAX_PROGRAM_INSTRUCTIONS_ARB]=[16384]
    gpu[1].glGetIntegerv[GL_MAX_TEXTURE_UNITS]=[4]
    gpu[1].glGetIntegerv[GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS]=[192]
    gpu[1].glGetIntegerv[GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS]=[32]
    gpu[1].glGetIntegerv[GL_MAX_TEXTURE_IMAGE_UNITS]=[32]
    gpu[1].glGetIntegerv[GL_MAX_DRAW_BUFFERS]=[8]
    gpu[1].glGetIntegerv[GL_MAX_VERTEX_UNIFORM_COMPONENTS]=[4096]
    gpu[1].glGetIntegerv[GL_MAX_FRAGMENT_UNIFORM_COMPONENTS]=[2048]
    gpu[1].glGetIntegerv[GL_MAX_VARYING_FLOATS]=[124]
    gpu[1].glGetIntegerv[GL_MAX_VERTEX_ATTRIBS]=[16]
    gpu[1].extension[AIF::OGL::GL_ARB_VERTEX_PROGRAM]=1
    gpu[1].extension[AIF::OGL::GL_ARB_FRAGMENT_PROGRAM]=1
    gpu[1].extension[AIF::OGL::GL_ARB_VERTEX_SHADER]=1
    gpu[1].extension[AIF::OGL::GL_ARB_FRAGMENT_SHADER]=1
    gpu[1].extension[AIF::OGL::GL_EXT_FRAMEBUFFER_OBJECT]=1
    gpu[1].extension[AIF::OGL::GL_ARB_TEXTURE_RECTANGLE]=1
    gpu[1].extension[AIF::OGL::GL_ARB_TEXTURE_FLOAT]=1
    gpu[1].extension[AIF::OGL::GL_ARB_OCCLUSION_QUERY]=1
    gpu[1].extension[AIF::OGL::GL_ARB_VERTEX_BUFFER_OBJECT]=1
    gpu[1].extension[AIF::OGL::GL_ARB_SHADER_TEXTURE_LOD]=1
    License Type: Subscription
    Serial number:
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\
    Temporary file path: C:\Users\djackson\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      Y:\, 238.5G, 152.3G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\Required\Plug-Ins\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\Plug-ins\
    Installed components:
       ACE.dll   ACE 2013/10/29-11:47:16   79.548223   79.548223
       adbeape.dll   Adobe APE 2013/02/04-09:52:32   0.1160850   0.1160850
       AdobeLinguistic.dll   Adobe Linguisitc Library   7.0.0  
       AdobeOwl.dll   Adobe Owl 2013/10/25-12:15:59   5.0.24   79.547804
       AdobePDFL.dll   PDFL 2013/10/29-11:47:16   79.508720   79.508720
       AdobePIP.dll   Adobe Product Improvement Program   7.0.0.1786  
       AdobeXMP.dll   Adobe XMP Core 2013/10/29-11:47:16   79.154911   79.154911
       AdobeXMPFiles.dll   Adobe XMP Files 2013/10/29-11:47:16   79.154911   79.154911
       AdobeXMPScript.dll   Adobe XMP Script 2013/10/29-11:47:16   79.154911   79.154911
       adobe_caps.dll   Adobe CAPS   7,0,0,21  
       AGM.dll   AGM 2013/10/29-11:47:16   79.548223   79.548223
       ahclient.dll    AdobeHelp Dynamic Link Library   1,8,0,31  
       aif_core.dll   AIF   5.0   79.534508
       aif_ocl.dll   AIF   5.0   79.534508
       aif_ogl.dll   AIF   5.0   79.534508
       amtlib.dll   AMTLib (64 Bit)   7.0.0.249 BuildVersion: 7.0; BuildDate: Thu Nov 14 2013 15:55:50)   1.000000
       ARE.dll   ARE 2013/10/29-11:47:16   79.548223   79.548223
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/12/16-15:10:49   66.26830   66.26830
       AXEDOMCore.dll   AXEDOMCore 2011/12/16-15:10:49   66.26830   66.26830
       Bib.dll   BIB 2013/10/29-11:47:16   79.548223   79.548223
       BIBUtils.dll   BIBUtils 2013/10/29-11:47:16   79.548223   79.548223
       boost_date_time.dll   DVA Product   7.0.0  
       boost_signals.dll   DVA Product   7.0.0  
       boost_system.dll   DVA Product   7.0.0  
       boost_threads.dll   DVA Product   7.0.0  
       cg.dll   NVIDIA Cg Runtime   3.0.00007  
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007  
       CIT.dll   Adobe CIT   2.1.6.30929   2.1.6.30929
       CITThreading.dll   Adobe CITThreading   2.1.6.30929   2.1.6.30929
       CoolType.dll   CoolType 2013/10/29-11:47:16   79.548223   79.548223
       dvaaudiodevice.dll   DVA Product   7.0.0  
       dvacore.dll   DVA Product   7.0.0  
       dvamarshal.dll   DVA Product   7.0.0  
       dvamediatypes.dll   DVA Product   7.0.0  
       dvaplayer.dll   DVA Product   7.0.0  
       dvatransport.dll   DVA Product   7.0.0  
       dvaunittesting.dll   DVA Product   7.0.0  
       dynamiclink.dll   DVA Product   7.0.0  
       ExtendScript.dll   ExtendScript 2013/10/30-13:12:12   79.546835   79.546835
       FileInfo.dll   Adobe XMP FileInfo 2013/10/25-03:51:33   79.154511   79.154511
       filter_graph.dll   AIF   5.0   79.534508
       icucnv40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       icudt40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       imslib.dll   IMSLib DLL   7.0.0.145  
       JP2KLib.dll   JP2KLib 2013/10/29-11:47:16   79.248139   79.248139
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libiomp5md.dll   Intel(R) OMP Runtime Library   5.0  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   12.0  
       LogSession.dll   LogSession   2.1.2.1785  
       mediacoreif.dll   DVA Product   7.0.0  
       MPS.dll   MPS 2013/10/29-11:47:16   79.535029   79.535029
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcp100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcr100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       PatchMatch.dll   PatchMatch 2013/10/29-11:47:16   79.542390   79.542390
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CC   CC  
       Plugin.dll   Adobe Photoshop CC   CC  
       PlugPlugOwl.dll   Adobe(R) CSXS PlugPlugOwl Standard Dll (64 bit)   4.2.0.36  
       PSArt.dll   Adobe Photoshop CC   CC  
       PSViews.dll   Adobe Photoshop CC   CC  
       SCCore.dll   ScCore 2013/10/30-13:12:12   79.546835   79.546835
       ScriptUIFlex.dll   ScriptUIFlex 2013/10/30-13:12:12   79.546835   79.546835
       svml_dispmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   12.0  
       tbb.dll   Intel(R) Threading Building Blocks for Windows   4, 1, 2012, 1003  
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   4, 1, 2012, 1003  
       updaternotifications.dll   Adobe Updater Notifications Library   7.0.1.102 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   7.0.1.102
       WRServices.dll   WRServices Mon Feb 25 2013 16:09:10   Build 0.19078   0.19078
    Required plug-ins:
       3D Studio 14.2.1 (14.2.1 x001)
       Accented Edges 14.2.1
       Adaptive Wide Angle 14.2.1
       Angled Strokes 14.2.1
       Average 14.2.1 (14.2.1 x001)
       Bas Relief 14.2.1
       BMP 14.2.1
       Camera Raw 8.3
       Camera Raw Filter 8.3
       Chalk & Charcoal 14.2.1
       Charcoal 14.2.1
       Chrome 14.2.1
       Cineon 14.2.1 (14.2.1 x001)
       Clouds 14.2.1 (14.2.1 x001)
       Collada 14.2.1 (14.2.1 x001)
       Color Halftone 14.2.1
       Colored Pencil 14.2.1
       CompuServe GIF 14.2.1
       Conté Crayon 14.2.1
       Craquelure 14.2.1
       Crop and Straighten Photos 14.2.1 (14.2.1 x001)
       Crop and Straighten Photos Filter 14.2.1
       Crosshatch 14.2.1
       Crystallize 14.2.1
       Cutout 14.2.1
       Dark Strokes 14.2.1
       De-Interlace 14.2.1
       Dicom 14.2.1
       Difference Clouds 14.2.1 (14.2.1 x001)
       Diffuse Glow 14.2.1
       Displace 14.2.1
       Dry Brush 14.2.1
       Eazel Acquire 14.2.1 (14.2.1 x001)
       Embed Watermark 4.0
       Entropy 14.2.1 (14.2.1 x001)
       Extrude 14.2.1
       FastCore Routines 14.2.1 (14.2.1 x001)
       Fibers 14.2.1
       Film Grain 14.2.1
       Filter Gallery 14.2.1
       Flash 3D 14.2.1 (14.2.1 x001)
       Fresco 14.2.1
       Glass 14.2.1
       Glowing Edges 14.2.1
       Google Earth 4 14.2.1 (14.2.1 x001)
       Grain 14.2.1
       Graphic Pen 14.2.1
       Halftone Pattern 14.2.1
       HDRMergeUI 14.2.1
       IFF Format 14.2.1
       Ink Outlines 14.2.1
       JPEG 2000 14.2.1
       Kurtosis 14.2.1 (14.2.1 x001)
       Lens Blur 14.2.1
       Lens Correction 14.2.1
       Lens Flare 14.2.1
       Liquify 14.2.1
       Matlab Operation 14.2.1 (14.2.1 x001)
       Maximum 14.2.1 (14.2.1 x001)
       Mean 14.2.1 (14.2.1 x001)
       Measurement Core 14.2.1 (14.2.1 x001)
       Median 14.2.1 (14.2.1 x001)
       Mezzotint 14.2.1
       Minimum 14.2.1 (14.2.1 x001)
       MMXCore Routines 14.2.1 (14.2.1 x001)
       Mosaic Tiles 14.2.1
       Multiprocessor Support 14.2.1 (14.2.1 x001)
       Neon Glow 14.2.1
       Note Paper 14.2.1
       NTSC Colors 14.2.1 (14.2.1 x001)
       Ocean Ripple 14.2.1
       Oil Paint 14.2.1
       OpenEXR 14.2.1
       Paint Daubs 14.2.1
       Palette Knife 14.2.1
       Patchwork 14.2.1
       Paths to Illustrator 14.2.1
       PCX 14.2.1 (14.2.1 x001)
       Photocopy 14.2.1
       Photoshop 3D Engine 14.2.1 (14.2.1 x001)
       Photoshop Touch 14.0
       Picture Package Filter 14.2.1 (14.2.1 x001)
       Pinch 14.2.1
       Pixar 14.2.1 (14.2.1 x001)
       Plaster 14.2.1
       Plastic Wrap 14.2.1
       PNG 14.2.1
       Pointillize 14.2.1
       Polar Coordinates 14.2.1
       Portable Bit Map 14.2.1 (14.2.1 x001)
       Poster Edges 14.2.1
       Radial Blur 14.2.1
       Radiance 14.2.1 (14.2.1 x001)
       Range 14.2.1 (14.2.1 x001)
       Read Watermark 4.0
       Reticulation 14.2.1
       Ripple 14.2.1
       Rough Pastels 14.2.1
       Save for Web 14.2.1
       ScriptingSupport 14.2.1
       Shake Reduction 14.2.1
       Shear 14.2.1
       Skewness 14.2.1 (14.2.1 x001)
       Smart Blur 14.2.1
       Smudge Stick 14.2.1
       Solarize 14.2.1 (14.2.1 x001)
       Spatter 14.2.1
       Spherize 14.2.1
       Sponge 14.2.1
       Sprayed Strokes 14.2.1
       Stained Glass 14.2.1
       Stamp 14.2.1
       Standard Deviation 14.2.1 (14.2.1 x001)
       STL 14.2.1 (14.2.1 x001)
       Sumi-e 14.2.1
       Summation 14.2.1 (14.2.1 x001)
       Targa 14.2.1
       Texturizer 14.2.1
       Tiles 14.2.1
       Torn Edges 14.2.1
       Twirl 14.2.1
       Underpainting 14.2.1
       Vanishing Point 14.2.1
       Variance 14.2.1 (14.2.1 x001)
       Variations 14.2.1 (14.2.1 x001)
       Water Paper 14.2.1
       Watercolor 14.2.1
       Wave 14.2.1
       Wavefront|OBJ 14.2.1 (14.2.1 x001)
       WIA Support 14.2.1 (14.2.1 x001)
       Wind 14.2.1
       Wireless Bitmap 14.2.1 (14.2.1 x001)
       ZigZag 14.2.1
    Optional and third party plug-ins:
       Alien Skin Blow Up 3 3.0.0
       Blow Up 3.0.0
       Topaz Adjust 5 10.0
       Topaz BW Effects 2 10.0
       Topaz Clarity 10.0
       Topaz Clean 3 10.0
       Topaz DeJpeg 4 10.0
       Topaz DeNoise 5 10.0
       Topaz Detail 3 10.0
       Topaz InFocus 10.0
       Topaz Lens Effects 10.0
       Topaz photoFXlab 10.0
       Topaz ReMask 3 10.0
       Topaz Simplify 4 10.0
       Topaz Star Effects 10.0
       TopazRemaskAutomate NO VERSION
    Plug-ins that failed to load: NONE
    Flash:
       Gallery Wrapper
       Mini Bridge
       Adobe Exchange
       Kuler
    Installed TWAIN devices: NONE

  • MacBook1,1(32-bit) to MacBookPro5,1(64-bit) 10.6.8 system slow starting

    I've received a "hand-me-down" MacBook Pro (2008; 5,1; 64-bit mode) into which I installed a new and bigger drive. I used SuperDuper! to copy the Snow Leopard backup from my MacBook (2006; 1,1; 32-bit) to that drive and then partitioned for Windows XP Pro using Boot Camp Assistant (3.0.4,) then "restored" XP using Winclone 2.2. Two questions:
    1. Do I have to re-install Snow Leopard to get the 64-bit capabilities? The machine is very slow to start up. When I turn on "verbose" it says 64-bit mode, but when I look in System Profiler I see "No" next to 64-bit Kernel and Extensions in Software. I also see appx. 50 "No" entries under the 64-Bit (Intel) header in Frameworks; Kernel, ManagedClient, MediaBrowser, and SyndicationUI show blanks.
    2. The Windows XP system seems to have lost its drivers in the transfer. I can't even get it on the Internet. It wants drivers for Video Controller (VGA compatible), SM Bus Controller, Coprocessor, and of course Ethernet Controller. How would I go about re-installing them--or perhaps new ones? When I ran the Boot Camp Assistant it offered to download the drivers but when I said yes it came back and told me they were no longer available. Supposedly they are on my SL install disc (which thankfully I have) but that's all I know. The driver discs I burned in the past (for & with the other machine) are in storage a long way away alongside my Windows XP Pro install disc (which I hope I won't need.)
    I would be grateful for any help and/or thoughts!

    Yes, it's me (marikavs)--Apple's been messing with my head (and my user id.)
    So I used the Snow Leopard disc to reinstall. Whoop-dee-doo. First of all it didn't even offer me an archive and install. I thought that wasn't supposed to go away until Lion. No matter. By the time it was done all my personal folders and aliases were still there. The machine is slower than ever! Both on startup and on launching anything. I looked in the System Profiler and don't see any changes. That doesn't mean there aren't any; I didn't look everywhere. But the "64-bit Kernel and Extensions" still says "No" and the Frameworks (in Software) still has plenty of No's under the 64-bit header and the four blanks are still there. I'm baffled, and it seems it was all a big waste of time. Does anybody know what that was all about?
    As for the Windows drivers, not having a disc available to do a reinstall there, I tried the SL disc--in Windows! Lo and behold, the content is very different from what shows when you look at it in OS X. It does have a way for you to "Repair" the drivers. Only, it doesn't work. Sigh. I tried it twice. Still no Internet. When I try to bring up the Network Wizard nothing happens. Does anybody have ideas on what I can try now?
    And yes, I have verified (with an Apple employee) that the Boot Camp Assistant does indeed require that you start over from scratch. You can't just only delete the existing Boot Camp partition and create a new one.

  • I have a Macbook Pro 15" that is three and a half years old.  Although it has slowed a bit, it still runs well and runs every program I need. Any tips for how to keep this old computer running well and in good health?

    I have a Macbook Pro 15" that is three and a half years old.  Although it has slowed a bit, it still runs well and runs every program I need. Any tips for how to keep this old computer running well and in good health?
    I have a 250 gig drive and try to keep at least 100 gigs unused at all times, 4 GB 667 MHz DDR2 SDRAM memory, back up with Time Machine and CrashPlan, and have OS X 10.7.3.
    This was my first Mac since an old Apple II GS.  After that I used PC's and got really good at reformatting, replacing drives, reinstalling, defragging, resolving software conflicts, etc.  Since switching back to Macs (five in my extended family now), I haven't had to do any of those things. So, although, the cost is three times as much, the aggrevation has been ten times less.
    I'm retired and living on a fixed income and would therefore like to keep this computer running as opposed to constatntly upgrading.
    That said, any tips?
    Thanks
    It does have a crack on the left of the screen case about 3/4'' up from the bottom.  I've posted that as another question.

    Kappy's Personal Suggestions for OS X Maintenance
    For disk repairs use Disk Utility.  For situations DU cannot handle the best third-party utilities are: Disk Warrior;  DW only fixes problems with the disk directory, but most disk problems are caused by directory corruption; Disk Warrior 4.x is now Intel Mac compatible. Drive Genius provides additional tools not found in Disk Warrior.  Versions 1.5.1 and later are Intel Mac compatible.
    OS X performs certain maintenance functions that are scheduled to occur on a daily, weekly, or monthly period. The maintenance scripts run in the early AM only if the computer is turned on 24/7 (no sleep.) If this isn't the case, then an excellent solution is to download and install a shareware utility such as Macaroni, JAW PseudoAnacron, or Anacron that will automate the maintenance activity regardless of whether the computer is turned off or asleep.  Dependence upon third-party utilities to run the periodic maintenance scripts was significantly reduced since Tiger.  These utilities have limited or no functionality with Snow Leopard or Lion and should not be installed.
    OS X automatically defragments files less than 20 MBs in size, so unless you have a disk full of very large files there's little need for defragmenting the hard drive. As for virus protection there are few if any such animals affecting OS X. You can protect the computer easily using the freeware Open Source virus protection software ClamXAV. Personally I would avoid most commercial anti-virus software because of their potential for causing problems. For more about malware see Macintosh Virus Guide.
    I would also recommend downloading a utility such as TinkerTool System, OnyX 2.4.3, or Cocktail 5.1.1 that you can use for periodic maintenance such as removing old log files and archives, clearing caches, etc.
    For emergency repairs install the freeware utility Applejack.  If you cannot start up in OS X, you may be able to start in single-user mode from which you can run Applejack to do a whole set of repair and maintenance routines from the command line.  Note that AppleJack 1.5 is required for Leopard. AppleJack 1.6 is compatible with Snow Leopard. There is no confirmation that this version also works with Lion.
    When you install any new system software or updates be sure to repair the hard drive and permissions beforehand. I also recommend booting into safe mode before doing system software updates.
    Get an external Firewire drive at least equal in size to the internal hard drive and make (and maintain) a bootable clone/backup. You can make a bootable clone using the Restore option of Disk Utility. You can also make and maintain clones with good backup software. My personal recommendations are (order is not significant):
    Carbon Copy Cloner
    Data Backup
    Deja Vu
    SuperDuper!
    SyncTwoFolders
    Synk Pro
    Synk Standard
    Tri-Backup
    Visit The XLab FAQs and read the FAQs on maintenance, optimization, virus protection, and backup and restore.
    Additional suggestions will be found in Mac Maintenance Quick Assist.
    Referenced software can be found at CNet Downloads or MacUpdate.
    Be sure you have an adequate amount of RAM installed for the number of applications you run concurrently. Be sure you leave a minimum of 10% of the hard drive's capacity as free space.
    Adding more RAM, if feasible, and a new, faster hard drive may also help pep it up a little.

  • OPSC 12cR1 Install Error:no compatible version of 64-Bit java runtime exist

    The Full error msg from the 12cR1 installer script:
    Using Solaris sparc_64 Binaries
    localhost is alive
    warning: Jvm: System has greater version of 32-Bit java runtime (1.7.0_05) than
    the bundled version (1.7.0_02). However, no compatible version of
    64-Bit java runtime exists on the system. You can either choose to
    continue, in which case, the 64-bit support on the Enterprise
    Controller will be disabled or manually install the 64-Bit java runtime
    (1.7.0_05) and try again.
    Number of precheck info messages: 0, number of warnings: 1, number of errors: 0
    I saw that the 11g installer script had the same problem last year. Why is this still a problem?  How do I work around it?? The prior 11g workarounds did not work for me.
    My JAVA versions, both 32&64bit, are there:
    #java -d32 -version ; java -d64 -version
    java version "1.7.0_05"
    Java(TM) SE Runtime Environment (build 1.7.0_05-b06)
    Java HotSpot(TM) Server VM (build 23.1-b03, mixed mode)
    java version "1.7.0_05"
    Java(TM) SE Runtime Environment (build 1.7.0_05-b06)
    Java HotSpot(TM) 64-Bit Server VM (build 23.1-b03, mixed mode
    Any help would be greatly appreciated. Thanks!!

    Ops Center bundles the Java runtime in the installation but it will not install it if there's a newer version already installed.
    In your case, you only have 32 bits version installed which is newer, so Ops Center cannot continue as you cannot install a lower version of the 64 bits.
    This will tell you the 32 bits version:
    # pkgparam SUNWj7rt VERSION
    You're probably missing the SUNWj7rtx - which is the 64 bit version.
    This will probably give you an error (this will check the 64-bit java version):
    # pkgparam SUNWj7rtx VERSION
    To see if you have it installed:
    # pkginfo | grep SUNWj7rtx
    To resolve this, you should install the same version in 64 bits (SUNWj7rtx) and then try the Ops Center installation again.

  • Coldfusion 9.0.1 and Java 7 on 64 bit machine

    I have found that I am unable to get Coldfusion 9.0.1 to work with Java 7 (1.7.0_x) on 64 bit windows 2008.  I tried both Java 1.7.0_0 and 1.7.0_2.  When I point Coldfusion to it and try to start the only thing that is logged is it can't load the jvm.dll.  It is pointing to the correct location with the JDK installed.  Any one have any ideas?
    Thanks,
    Jim

    Well, getting a current version of CF to support a new major release of Java is quite a bit of work! I suspect that CF 10 will support Java 7. In any case, I don't think there's anything especially exciting about Java 7 unless you're actually doing Java programming, in which case you can put the Java 7 JDK on your machine alongside all the other Java JDKs.
    Oh, and also, things are a lot better than they used to be. For many years, CF required a very old version of Java (1.4) that was no longer even really supported by Sun! CF has gotten a lot better with regard to Java version support in the last few years.
    Dave Watts, CTO, Fig Leaf Software
    Message was edited by: Dave Watts

  • Very slow 64 bit Lightroom Windows 7?

    I've recently switched over to Windows 7 64 bit Home Premium, running 8GB DDR3 RAM, 1GB ATI Radeon 4800 series video card, 1920px monitor and have found the performance in Lightroom 3.4.1 much slower than I did on Windows XP, 32 bit running 2GB of RAM with a 128MB motherboard card (laptop to boot).
    Why is this happening? The main issues are extremely slow imports (minimal previews set as default when importing), very delayed thumbnail (preview) rendering (the grid view sometimes sits with half the thumbnails rendered, and half not rendered, then all of a sudden, a minute or two later, all will be rendered...), and slow, in-consistent 1:1 rendering. I've tried all the different combos when it comes to preview rendering but nothing does the trick. I've even tried switching my 10GB ACR cache to different drives but nothing does the trick.
    Could this be an issue with the Catalyst Control Center (software controling my video driver)? It's all I've got left to consider but would very much like a resolution.
    Thanks in advance.

    Just to be clear, the 10GB cache is LR3's cache (not sure if it's the same as ACR cache...confusing!)

  • Latest  32-bit Java 7 compiled with /LARGEADDRESSAWARE?

    While searching around, I didn't have a whole lot of success getting a clear answer, thus I appeal to this forum...
    A customer of ours wants to continue using the 32-bit Java 7 VM on 64-bit Windows 2008, but would like to use as large a heap as possible. Has the Windows 32-bit Java 7 VM been compiled with /LARGEADDRESSAWARE? Is there any documentation about this?
    Thanks,
    -- Jim C

    The 32-bit JVM for Windows is not compiled with LARGEADDRESSAWARE, and based upon recent space optimizations with Java 7, is likely not to be anytime soon. In the past, some avoided the 64-bit JVM if they didn't need the extra heap space because it incurred significant memory overhead. That is not necessarily the case now. In fact Oracle recommends using the 64-bit JVM even if your heap requirements don't exceed 4GB. Why?
    1. The 64-bit JVM will automatically use 32-bit references on the heap when its size is below 4GB. The command-line switch -XX:+|-UseCompressedOops, available in Java 7, enables/disables this mode and by default is on. Not all internal pointers will be 32-bit, but nonetheless your application running in 64-bit mode should be much smaller than previous 64-bit versions. For a technical description, check out this article:
    https://wikis.oracle.com/display/HotSpotInternals/CompressedOops
    2. The 64-bit JVM has access to more registers and hence more opportunities for performance optimizations. This helps generate faster code.

  • Error: Java HotSpot(TM) 64-Bit Server VM warning: JVM cannot use large page

    Hi,
    i recently came across Error Message (coming up in webadmin Log view):
    ProcessMonitor: Java HotSpot(TM) 64-Bit Server VM warning: JVM cannot use large page memory because it does not have enough privilege to lock pages in memory
    when running Oracle NoSQL on Windows 7 64bit Home Premium system, having 8GB of physical RAM.
    I created the store configuration without explicitly passing a value for parameter memory_mb (was set to -memory_mb 0), so that replication group would take as much
    memory as possible, which found it's reflection in following line from store log:
    Creating rg1-rn1 on sn1 haPort=tangel-lapp:5.011 helpers=tangel-lapp:5011 mountpoint=null heapMB=7.007 cacheSize=5.143.454.023 -XX:ParallelGCThreads=4
    I was a bit surprised because of the fact that i definetly succeeded in running kvstore in this configuration, leading to store using 7007MB of memory.
    It was only possible to run kvstore when creating store configuration with memory configured to be less than 2GB.
    After searching google with error message mentioned above i came across some hints regarding activation of Huge Pages on Windows 7, which mentioned that it could be
    done on systems having at least Windows 7 Professional Edition.
    But finally i found a more helpful hint, referring to size of windows pagefile. As my machine uses an SSD as system disk and there some notes on deactivating pagefile when
    using an SSD, i did so some time ago.
    So i activated the pagefile on windows again and after doing so, the store came up without any problems.
    Maybe it's nothing new to some of you guys, but as there was nothing to be read about this fact in neither admin nor getting started guide, i just wanted to share this
    piece of information with you.
    Regards
    Thomas

    Charles,
    thanks for clarification, obviously i've overseen that in chapter "Installation prerequisites" of
    Admin Guide.
    By the way, are there any specific OS related settings, let's say "best practice" similar as it is
    referred to in documentation of "classic" Oracle Databases?
    Regards
    Thomas

Maybe you are looking for