Search Results
OK to copy?
Examples 1 through 10 of
24 (0.0010 seconds)
Class:
org.apache.catalina.ant.ValidatorTask
©,
Rating:
0% of 0,
C2
Class: org.apache.tomcat.util.compat.Jdk14Compat ©, Rating: 0% of 0, C1
Class: org.apache.jmeter.NewDriver ©, Rating: 0% of 0, C3
Class: org.apache.tools.ant.taskdefs.optional.extension.resolvers.AntResolver ©, Rating: 0% of 0, C1
Class: org.apache.tomcat.util.compat.JdkCompat ©, Rating: 0% of 0, C1
Class: org.apache.jasper.compiler.JspRuntimeContext ©, Rating: 0% of 0, C3
Class: org.apache.catalina.startup.TldConfig ©, Rating: 0% of 0, C3
Class: org.apache.naming.resources.FileDirContext ©, Rating: 0% of 0, C2
Class: org.apache.jasper.JspC ©, Rating: 0% of 0, C3
Class: org.apache.jasper.JspC ©, Rating: 0% of 0, C3
092 Digester digester = DigesterFactory.newDigester(true, true, null);
093 try {
094 file = file.getCanonicalFile();
095 InputStream stream =
096 new BufferedInputStream(new FileInputStream(file));
Class: org.apache.tomcat.util.compat.Jdk14Compat ©, Rating: 0% of 0, C1
061 try {
062 realFile = realFile.getCanonicalFile();
063 } catch (IOException e) {
064 // Ignore
065 }
Class: org.apache.jmeter.NewDriver ©, Rating: 0% of 0, C3
053 try
054 {
055 jmDir = jar.getCanonicalFile().getParentFile().getParent();
056 }
057 catch (IOException e)
Class: org.apache.tools.ant.taskdefs.optional.extension.resolvers.AntResolver ©, Rating: 0% of 0, C1
58
59 try {
60 final File dir =
61 m_antfile.getParentFile().getCanonicalFile();
62 ant.setDir(dir);
Class: org.apache.tomcat.util.compat.JdkCompat ©, Rating: 0% of 0, C1
152 try {
153 realFile = realFile.getCanonicalFile();
154 } catch (IOException e) {
155 // Ignore
156 }
Class: org.apache.jasper.compiler.JspRuntimeContext ©, Rating: 0% of 0, C3
370 }
371 File contextDir = new File(codeBase);
372 URL url = contextDir.getCanonicalFile().toURL();
373 codeSource = new CodeSource(url,(Certificate[])null);
374 permissionCollection = policy.getPermissions(codeSource);
Class: org.apache.catalina.startup.TldConfig ©, Rating: 0% of 0, C3
682 File file = new File(urls[i].getFile());
683 try {
684 file = file.getCanonicalFile();
685 } catch (IOException e) {
686 // Ignore
Class: org.apache.naming.resources.FileDirContext ©, Rating: 0% of 0, C2
0131 base = new File(docBase);
0132 try {
0133 base = base.getCanonicalFile();
0134 } catch (IOException e) {
0135 // Ignore
Class: org.apache.jasper.JspC ©, Rating: 0% of 0, C3
1095 private void locateUriRoot( File f ) {
1096 String tUriBase = uriBase;
1097 if (tUriBase == null) {
1098 tUriBase = "/";
1099 }
Class: org.apache.jasper.JspC ©, Rating: 0% of 0, C3
1083
1084 URL urlsA[]=new URL[urls.size()];
1085 urls.toArray(urlsA);
1086 loader = new URLClassLoader(urlsA, this.getClass().getClassLoader());
1087 Thread.currentThread().setContextClassLoader(loader);