e.g. Calendar Search Help
You must enter a value before pressing Search
Search Results OK to copy? Examples 41 through 50 of 2052 (6.438 seconds)
Class: org.springframework.context.support.ResourceEntityResolver  ©, Rating: 0% of 0, C2

66 // try relative to resource base if currently in system root 67 if (givenUrl.startsWith(systemRootUrl)) { 68 resourcePath = givenUrl.substring(systemRootUrl.length()); 69 } 70 }

Class: org.springframework.core.io.DefaultResourceLoader  ©, Rating: 0% of 0, C1

076 Assert.notNull(location, "location is required"); 077 if (location.startsWith(CLASSPATH_URL_PREFIX)) { 078 return new ClassPathResource(location.substring(CLASSPATH_URL_PREFIX.length()), getClassLoader()); 079 } 080 else {

Class: org.springframework.transaction.interceptor.TransactionAttributeEditor  ©, Rating: 0% of 0, C3

68 } 69 else if (token.startsWith(DefaultTransactionAttribute.TIMEOUT_PREFIX)) { 70 String value = token.substring(DefaultTransactionAttribute.TIMEOUT_PREFIX.length()); 71 attr.setTimeout(Integer.parseInt(value)); 72 }

Class: org.springframework.aop.support.NameMatchMethodPointcut  ©, Rating: 0% of 0, C2

92 */ 93 protected boolean isMatch(String methodName, String mappedName) { 94 return (mappedName.endsWith("*") && methodName.startsWith(mappedName.substring(0, mappedName.length() - 1))) || 95 (mappedName.startsWith("*") && methodName.endsWith(mappedName.substring(1, mappedName.length()))); 96 }

Class: org.apache.axis.types.NMToken  ©, Rating: 0% of 0, C1

100 int scan; 101 102 for (scan=0; scan < stValue.length(); scan++) { 103 if (XMLChar.isName(stValue.charAt(scan)) == false) 104 return false;

Class: org.apache.batik.css.engine.sac.CSSOneOfAttributeCondition  ©, Rating: 0% of 0, C2

093 } 094 int j = i + val.length(); 095 return (j == attr.length() || 096 (j < attr.length() && Character.isSpaceChar(attr.charAt(j)))); 097 }

Class: org.apache.batik.css.engine.sac.CSSOneOfAttributeCondition  ©, Rating: 0% of 0, C2

092 return false; 093 } 094 int j = i + val.length(); 095 return (j == attr.length() || 096 (j < attr.length() && Character.isSpaceChar(attr.charAt(j))));

Class: org.apache.batik.svggen.font.table.FeatureList  ©, Rating: 0% of 0, C2

80 81 public Feature findFeature(LangSys langSys, String tag) { 82 if (tag.length() != 4) { 83 return null; 84 }

Class: org.apache.tools.ant.taskdefs.optional.sitraka.StringUtil  ©, Rating: 0% of 0, C1

41 src.delete(index, index + find.length()); 42 src.insert(index, replacement); 43 index += replacement.length() + 1; 44 } 45 }

Class: org.apache.tools.ant.taskdefs.optional.sitraka.StringUtil  ©, Rating: 0% of 0, C1

39 break; 40 } 41 src.delete(index, index + find.length()); 42 src.insert(index, replacement); 43 index += replacement.length() + 1;

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