Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 26th, 2012  |  syntax: None  |  size: 1.61 KB  |  hits: 18  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. # ${HOME} will be replaced by JVM user.home system property
  2. netbeans_default_userdir="${HOME}/.netbeans/7.0beta2"
  3.  
  4. # Options used by NetBeans launcher by default, can be overridden by explicit
  5. # command line switches:
  6. netbeans_default_options="-J-client -J-Xss2m -J-Xms256m -J-Xmx512m -J-XX:PermSize=64m -J-XX:MaxPermSize=96m -J-XX:+UseConcMarkSweepGC -J-XX:+CMSClassUnloadingEnabled -J-XX:+CMSPermGenSweepingEnabled -J-Dnetbeans.logger.console=true -J-ea -J-Dapple.laf.useScreenMenuBar=true -J-Dapple.awt.graphics.UseQuartz=false -J-Dsun.java2d.noddraw=true"
  7. # Note that a default -Xmx is selected for you automatically.
  8. # You can find this value in var/log/messages.log file in your userdir.
  9. # The automatically selected value can be overridden by specifying -J-Xmx here
  10. # or on the command line.
  11.  
  12. # If you specify the heap size (-Xmx) explicitely, you may also want to enable
  13. # Concurrent Mark & Sweep garbage collector. In such case add the following
  14. # options to the netbeans_default_options:
  15. # -J-XX:+UseConcMarkSweepGC -J-XX:+CMSClassUnloadingEnabled -J-XX:+CMSPermGenSweepingEnabled
  16. # (see http://wiki.netbeans.org/wiki/view/FaqGCPauses)
  17.  
  18. # Default location of JDK, can be overridden by using --jdkhome <dir>:
  19. #netbeans_jdkhome="/path/to/jdk"
  20.  
  21. # Additional module clusters, using ${path.separator} (';' on Windows or ':' on Unix):
  22. #netbeans_extraclusters="/absolute/path/to/cluster1:/absolute/path/to/cluster2"
  23.  
  24. # If you have some problems with detect of proxy settings, you may want to enable
  25. # detect the proxy settings provided by JDK5 or higher.
  26. # In such case add -J-Djava.net.useSystemProxies=true to the netbeans_default_options.