- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 20 for classNames (0.05 sec)
-
src/main/java/org/codelibs/core/lang/ClassUtil.java
assertArgumentNotEmpty("className", className); final String[] ret = new String[2]; final int i = className.lastIndexOf('.'); if (i > 0) { ret[0] = className.substring(0, i); ret[1] = className.substring(i + 1); } else { ret[1] = className; } return ret; } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 25.6K 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: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 9.5K bytes - Viewed (0) -
src/main/java/jcifs/http/Handler.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/creator/PagerCreatorTest.java
return false; } @Override public String toInterfaceClassName(String className) { return className + "Interface"; } @Override public String toImplementationClassName(String className) { return className + "Impl"; } @Override public String fromActionNameToPath(String actionName) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/Handler.java
try { Class handlerClass = null; try { handlerClass = Class.forName(className); } catch (final Exception ex) {} if (handlerClass == null) { handlerClass = ClassLoader.getSystemClassLoader().loadClass(className);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.1K bytes - Viewed (0) -
pom.xml
return types --> <className>**</className> <differenceType>7006</differenceType> <method>*</method> <from>*</from> <to>*</to> </difference> <difference> <className>jcifs/Configuration</className> <differenceType>7012</differenceType> <method>boolean isSendNTLMTargetName()</method>
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Mon Aug 25 14:34:10 UTC 2025 - 12.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/ClassLoaderUtil.java
* @see java.lang.ClassLoader#loadClass(String) */ public static Class<?> loadClass(final ClassLoader loader, final String className) { assertArgumentNotNull("loader", loader); assertArgumentNotEmpty("className", className); try { return loader.loadClass(className); } catch (final ClassNotFoundException e) { throw new ClassNotFoundRuntimeException(e); } }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 7.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/TraversalUtil.java
* * @param className * The class name. * @return The class file path name. */ protected static String toClassFile(final String className) { assertArgumentNotNull("className", className); return className.replace('.', '/') + ".class"; } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 18.6K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/PerformanceTestBucketProvider.kt
} } data class PerformanceTestDuration( val scenario: Scenario, val durationInMs: Int, ) { fun toCsvLine() = "${scenario.className};${scenario.scenario}" } data class PerformanceScenario( val scenario: Scenario, val testProject: String, ) interface PerformanceTestBucket { fun createPerformanceTestsFor(
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Thu Jul 10 02:18:03 UTC 2025 - 16.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/Traverser.java
* </p> * * @param className the class name * @return <code>true</code> if the class file exists in the resources handled by this instance */ boolean isExistClass(final String className); /** * Searches for classes handled by this instance and calls the handler for each class. * <p>
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 2.1K bytes - Viewed (0)