- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 19 for targetClass (0.37 sec)
-
okhttp/src/jvmMain/kotlin/okhttp3/internal/graal/GraalSvm.kt
@TargetClass(ConscryptPlatform::class) @Delete class TargetConscryptPlatform @TargetClass(Jdk8WithJettyBootPlatform::class) @Delete class TargetJdk8WithJettyBootPlatform @TargetClass(OpenJSSEPlatform::class) @Delete class TargetOpenJSSEPlatform @TargetClass(Platform.Companion::class) class TargetPlatform { @Substitute fun findPlatform(): Platform = Jdk9Platform.buildIfSupported()!!
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/ConstructorNotFoundRuntimeException.java
super("ECL0048", asArray(targetClass.getName(), getSignature(methodArgs))); this.targetClass = targetClass; this.methodArgs = methodArgs; paramTypes = null; } /** * Creates a {@link ConstructorNotFoundRuntimeException}. * * @param targetClass * Target class
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 3.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/MethodNotFoundRuntimeException.java
* Array of parameter types */ public MethodNotFoundRuntimeException(final Class<?> targetClass, final String methodName, final Class<?>[] methodArgClasses) { super("ECL0049", asArray(targetClass.getName(), MethodUtil.getSignature(methodName, methodArgClasses))); this.targetClass = targetClass; this.methodName = methodName; this.methodArgClasses = methodArgClasses; } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java
* * @param targetClass * the target class */ private void setupFieldDescsByClass(final Class<?> targetClass) { addFieldDescs(targetClass); for (final Class<?> intf : targetClass.getInterfaces()) { setupFieldDescsByInterface(intf); } final Class<?> superClass = targetClass.getSuperclass();
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 25.8K bytes - Viewed (1) -
src/main/java/org/codelibs/core/exception/IllegalAccessRuntimeException.java
/** * The target class. */ private final Class<?> targetClass; /** * Creates a {@link IllegalAccessRuntimeException}. * * @param targetClass * Target class * @param cause * The cause of the exception */ public IllegalAccessRuntimeException(final Class<?> targetClass, final IllegalAccessException cause) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/FieldNotFoundRuntimeException.java
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/FieldUtil.java
valueClass == null ? null : valueClass.getName(), valueClass == null ? null : valueClass.getClassLoader(), value, targetClass == null ? null : targetClass.getName(), targetClass == null ? null : targetClass.getClassLoader()), e); } } /** * Checks if the given field is an instance field. *
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 9.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/InvocationTargetRuntimeException.java
/** * The target class. */ private final Class<?> targetClass; /** * Creates a {@link InvocationTargetRuntimeException}. * * @param targetClass * Target class * @param cause * The cause of the exception */ public InvocationTargetRuntimeException(final Class<?> targetClass, final InvocationTargetException cause) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/InstantiationRuntimeException.java
/** * The target class. */ private final Class<?> targetClass; /** * Creates a {@link InstantiationRuntimeException}. * * @param targetClass * Target class * @param cause * The cause of the exception */ public InstantiationRuntimeException(final Class<?> targetClass, final InstantiationException cause) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/FieldNotStaticRuntimeException.java
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 1.9K bytes - Viewed (0)