- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 333 for substring (0.05 sec)
-
src/main/java/org/codelibs/core/lang/StringUtil.java
return !isEmpty(text); } /** * Replaces all occurrences of a substring within a string with another string. * * @param text * The original string. * @param fromText * The substring to be replaced. * @param toText * The replacement substring. * @return The resulting string after replacements. */Registered: 2025-12-20 08:55 - Last Modified: 2025-11-22 11:21 - 21.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluator.java
Registered: 2025-12-28 03:35 - Last Modified: 2025-01-24 17:29 - 16.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4.java
Registered: 2025-12-28 03:35 - Last Modified: 2025-01-24 17:29 - 9.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/PhaseId.java
Registered: 2025-12-28 03:35 - Last Modified: 2024-10-25 12:31 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PermissionHelper.java
if (lower.startsWith(allowPrefix)) { lower = lower.substring(allowPrefix.length()); permission = permission.substring(allowPrefix.length()); aclPrefix = StringUtil.EMPTY; } else if (lower.startsWith(denyPrefix)) { lower = lower.substring(denyPrefix.length()); permission = permission.substring(denyPrefix.length());
Registered: 2025-12-20 09:19 - Last Modified: 2025-11-13 05:54 - 15.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/dfs/DfsReferralDataImpl.java
if (expandedNames.length > 0) { dr.server = expandedNames[0].substring(1).toLowerCase(); } else { dr.server = ref.getSpecialName().substring(1).toLowerCase(); } if (log.isDebugEnabled()) { log.debug("Server " + dr.server + " path " + reqPath + " remain " + reqPath.substring(consumed) + " path consumed " + consumed); }
Registered: 2025-12-20 13:44 - Last Modified: 2025-08-16 01:32 - 11.7K bytes - Viewed (0) -
internal/s3select/sql/analysis.go
result.combine(e.Substring.Expr.analyze(s)) switch { case e.Substring.From != nil: result.combine(e.Substring.From.analyze(s)) if e.Substring.For != nil { result.combine(e.Substring.Expr.analyze(s)) } case e.Substring.Arg2 != nil: result.combine(e.Substring.Arg2.analyze(s)) if e.Substring.Arg3 != nil { result.combine(e.Substring.Arg3.analyze(s)) } default:
Registered: 2025-12-28 19:28 - Last Modified: 2025-09-28 20:59 - 8.6K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/profiles/activation/OperatingSystemProfileActivator.java
private boolean determineVersionMatch(String version) { String test = version; boolean reverse = false; if (test.startsWith("!")) { reverse = true; test = test.substring(1); } boolean result = Os.OS_VERSION.equals(test); if (reverse) { return !result; } else { return result; } }Registered: 2025-12-28 03:35 - Last Modified: 2025-06-06 14:28 - 3.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/ClassTraversalUtil.java
final String className = entryName.substring(startPos, entryName.length() - CLASS_SUFFIX.length()).replace('/', '.'); final int pos = className.lastIndexOf('.'); final String packageName = pos == -1 ? null : className.substring(0, pos); final String shortClassName = pos == -1 ? className : className.substring(pos + 1);
Registered: 2025-12-20 08:55 - Last Modified: 2025-07-31 08:16 - 9.5K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/activation/OperatingSystemProfileActivator.java
final boolean result; if (test.startsWith(REGEX_PREFIX)) { result = actualVersion.matches(test.substring(REGEX_PREFIX.length())); } else { if (test.startsWith("!")) { reverse = true; test = test.substring(1); } result = actualVersion.equalsIgnoreCase(test); } return reverse != result; }Registered: 2025-12-28 03:35 - Last Modified: 2025-02-25 08:27 - 5.3K bytes - Viewed (0)