e.g. Calendar Search Help
You must enter a value before pressing Search
Search Results OK to copy? Examples 91 through 100 of 356 (0.0030 seconds)
Class: org.apache.jmeter.protocol.http.control.HeaderManager  ©, Rating: 0% of 0, C2

119 if (!file.isAbsolute()) 120 { 121 file = 122 new File( 123 System.getProperty("user.dir")

Class: org.apache.jmeter.protocol.http.control.HeaderManager  ©, Rating: 0% of 0, C1

096 if (!file.isAbsolute()) 097 { 098 file = 099 new File( 100 System.getProperty("user.dir") + File.separator + headFile);

Class: org.apache.tools.ant.util.JavaEnvUtilsTest  ©, Rating: 0% of 0, C3

091 if (!Os.isName("netware") && !Os.isFamily("windows")) { 092 FileUtils fileUtils = FileUtils.newFileUtils(); 093 String javaHome = 094 fileUtils.normalize(System.getProperty("java.home")) 095 .getAbsolutePath();

Class: org.apache.tools.ant.util.JavaEnvUtilsTest  ©, Rating: 0% of 0, C2

045 if (Os.isFamily("windows")) { 046 FileUtils fileUtils = FileUtils.newFileUtils(); 047 String javaHome = 048 fileUtils.normalize(System.getProperty("java.home")) 049 .getAbsolutePath();

Class: org.apache.jk.config.NSConfig  ©, Rating: 0% of 0, C1

106 //set up some defaults based on OS type 107 static{ 108 String os = System.getProperty("os.name").toLowerCase(); 109 if(os.indexOf("windows")>=0){ 110 NSAPI_REDIRECTOR = "bin/nsapi_redirect.dll";

Class: org.apache.jorphan.test.AllTests  ©, Rating: 0% of 0, C2

146 logprop("java.class.version"); 147 //logprop("java.class.path"); 148 String cp = System.getProperty("java.class.path"); 149 String cpe[]= JOrphanUtils.split(cp,java.io.File.pathSeparator); 150 StringBuffer sb = new StringBuffer(3000);

Class: org.apache.jorphan.test.AllTests  ©, Rating: 0% of 0, C1

102 private static void logprop(String prop,boolean show) 103 { 104 String value = System.getProperty(prop); 105 log.info(prop+"="+value); 106 if (show) System.out.println(prop+"="+value);

Class: org.apache.tomcat.util.net.jsse.JSSESocketFactory  ©, Rating: 0% of 0, C1

059 static boolean defaultClientAuth = false; 060 static String defaultKeystoreType = "JKS"; 061 private static final String defaultKeystoreFile 062 = System.getProperty("user.home") + "/.keystore"; 063 private static final String defaultKeyPass = "changeit";

Class: org.apache.tomcat.util.net.jsse.JSSESocketFactory  ©, Rating: 0% of 0, C1

273 File keyStoreFile = new File(path); 274 if (!keyStoreFile.isAbsolute()) { 275 keyStoreFile = new File(System.getProperty("catalina.base"), 276 path); 277 }

Class: org.apache.tomcat.util.net.jsse.JSSESocketFactory  ©, Rating: 0% of 0, C3

238 String trustStorePassword = (String)attributes.get("truststorePass"); 239 if( trustStorePassword == null) { 240 trustStorePassword = System.getProperty("javax.net.ssl.trustStorePassword"); 241 } 242 if( trustStorePassword == null ) {

Result Page:  1  |  2  |  3  |  4  |  5  |  6  |  7  |  8  |  9  |  10