Search Results
OK to copy?
Examples 1 through 10 of
639 (0.013 seconds)
Class:
com.technoetic.xplanner.db.hsqldb.HsqlHelper
©,
Rating:
0% of 0,
C2
Class: org.springframework.aop.framework.autoproxy.SelectivePrototypeTargetSourceCreator ©, Rating: 0% of 0, C1
Class: org.springframework.aop.framework.autoproxy.TestPoolingTargetSourceCreator ©, Rating: 0% of 0, C1
Class: org.springframework.web.util.HtmlUtilsTests ©, Rating: 100% of 1, C1
Class: org.springframework.core.io.FileSystemResourceLoader ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.security.config.WebResourceCollection ©, Rating: 0% of 0, C3
Class: org.springframework.aop.framework.autoproxy.target.QuickTargetSourceCreator ©, Rating: 0% of 0, C2
Class: org.springframework.aop.framework.autoproxy.target.QuickTargetSourceCreator ©, Rating: 0% of 0, C2
Class: org.springframework.aop.framework.autoproxy.target.QuickTargetSourceCreator ©, Rating: 0% of 0, C2
Class: org.htmlparser.scanners.TitleScanner ©, Rating: 0% of 0, C1
15 while (keys.hasMoreElements()) {
16 String key = (String)keys.nextElement();
17 if (key.startsWith("xplanner.hsqldb.")) {
18
19 }
Class: org.springframework.aop.framework.autoproxy.SelectivePrototypeTargetSourceCreator ©, Rating: 0% of 0, C1
30
31 protected AbstractPrototypeBasedTargetSource createPrototypeTargetSource(Object bean, String beanName, BeanFactory factory) {
32 if (!beanName.startsWith("prototype")) {
33 return null;
34 }
Class: org.springframework.aop.framework.autoproxy.TestPoolingTargetSourceCreator ©, Rating: 0% of 0, C1
31 */
32 protected PoolingAttribute getPoolingAttribute(Object bean, String beanName, BeanFactory bf) {
33 if (!beanName.startsWith("pooling"))
34 return null;
35 return new PoolingAttribute(25);
Class: org.springframework.web.util.HtmlUtilsTests ©, Rating: 100% of 1, C1
27 String unescaped = "\"This is a quote";
28 String escaped = HtmlUtils.htmlEscape(unescaped);
29 if (escaped.startsWith("&#")) {
30 assertEquals(""This is a quote",escaped);
31 }
Class: org.springframework.core.io.FileSystemResourceLoader ©, Rating: 0% of 0, C1
41 */
42 protected Resource getResourceByPath(String path) {
43 if (path != null && path.startsWith("/")) {
44 path = path.substring(1);
45 }
Class: com.technoetic.xplanner.security.config.WebResourceCollection ©, Rating: 0% of 0, C3
42 String path = request.getServletPath() +
43 (request.getPathInfo() == null ? "" : request.getPathInfo());
44 return (urlPattern.equals("/") && (path.equals("/"))) ||
45 (urlPattern.length() > 2 && urlPattern.startsWith("*.") && path != null && path.endsWith(urlPattern.substring(2))) ||
46 (urlPattern.endsWith("*") && path != null && path.startsWith(urlPattern.substring(0, urlPattern.length() - 1))) ||
Class: org.springframework.aop.framework.autoproxy.target.QuickTargetSourceCreator ©, Rating: 0% of 0, C2
52 return new ThreadLocalTargetSource();
53 }
54 else if (beanName.startsWith(PREFIX_PROTOTYPE)) {
55 return new PrototypeTargetSource();
56 }
Class: org.springframework.aop.framework.autoproxy.target.QuickTargetSourceCreator ©, Rating: 0% of 0, C2
49 return cpts;
50 }
51 else if (beanName.startsWith(PREFIX_THREAD_LOCAL)) {
52 return new ThreadLocalTargetSource();
53 }
Class: org.springframework.aop.framework.autoproxy.target.QuickTargetSourceCreator ©, Rating: 0% of 0, C2
44 protected final AbstractPrototypeBasedTargetSource createPrototypeTargetSource(
45 Object bean, String beanName, BeanFactory factory) {
46 if (beanName.startsWith(PREFIX_COMMONS_POOL)) {
47 CommonsPoolTargetSource cpts = new CommonsPoolTargetSource();
48 cpts.setMaxSize(25);
Class: org.htmlparser.scanners.TitleScanner ©, Rating: 0% of 0, C1
60 {
61 absorbLeadingBlanks(tagNameBeingChecked);
62 return (
63 tagNameBeingChecked.toUpperCase().startsWith(MATCH_NAME[0])
64 && null == previousOpenScanner);