- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for colonIndex (0.07 seconds)
-
src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessMultipartRequestHandler.java
final String fileName = new File(filePath).getName(); int colonIndex = fileName.indexOf(":"); if (colonIndex == -1) { colonIndex = fileName.indexOf("\\\\"); // Windows SMB } final int backslashIndex = fileName.lastIndexOf("\\"); if (colonIndex > -1 && backslashIndex > -1) { return fileName.substring(backslashIndex + 1);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 08:48:41 GMT 2026 - 18.9K bytes - Click Count (1) -
android/guava/src/com/google/common/net/HostAndPort.java
"Bracketed host-port string must start with a bracket: %s", hostPortString); int colonIndex = hostPortString.indexOf(':'); int closeBracketIndex = hostPortString.lastIndexOf(']'); checkArgument( colonIndex > -1 && closeBracketIndex > colonIndex, "Invalid bracketed host/port: %s", hostPortString);Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Feb 23 19:19:10 GMT 2026 - 11.1K bytes - Click Count (0)