- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 93 for Arguments (0.03 sec)
-
src/main/java/org/codelibs/core/message/MessageFormatter.java
return ResourceBundleUtil.getBundle(systemName + MESSAGES, LocaleUtil.getDefault()); } /** * Returns a message with arguments lined up without using a pattern. * * @param args * Arguments * @return Message with arguments lined up */ protected static String getNoPatternMessage(final Object... args) { if (args == null || args.length == 0) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 5.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/BeanDesc.java
ConstructorDesc getConstructorDesc(Class<?>... paramTypes); /** * Returns the {@link ConstructorDesc} that matches the given arguments. * * @param args * The arguments to pass to the constructor * @return The {@link ConstructorDesc} that matches the given arguments */ ConstructorDesc getSuitableConstructorDesc(Object... args); /** * Returns the {@link ConstructorDesc}.
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 24 01:52:43 UTC 2025 - 7.9K bytes - Viewed (0) -
src/main/webapp/js/clipboard.min.js
class as a function")}(this),(n=o.call(this)).resolveOptions(e),n.listenClick(t),n}return t=r,n=[{key:"copy",value:function(t){var e=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{container:document.body};return f(t,e)}},{key:"cut",value:function(t){return a(t)}},{key:"isSupported",value:function(){var t=0<arguments.length&&void 0!==arguments[0]?arguments[0]:["copy","cut"],t="string"==typeof t?[t]:t,e=!!document.queryCommandSupported;return t.forEach(function(t){e=e&&!!document.queryComm...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Jan 12 06:14:02 UTC 2025 - 8.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/ClIllegalArgumentException.java
* * @return Name of the argument */ public String getArgName() { return argName; } /** * Returns the message code. * * @return Message code */ public String getMessageCode() { return messageCode; } /** * Returns the array of arguments. * * @return Array of arguments */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 2.6K bytes - Viewed (0) -
native-image-tests/src/test/kotlin/okhttp3/nativeimage/WithArgumentSourceTest.kt
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue Jul 22 20:31:49 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/impl/ParameterizedClassDescImpl.java
return arguments; } /** * Sets an array of {@link ParameterizedClassDesc} representing type arguments. * * @param arguments * An array of {@link ParameterizedClassDesc} representing type arguments */ public void setArguments(final ParameterizedClassDesc[] arguments) { this.arguments = arguments; }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/EmptyArgumentException.java
* @param args * Array of arguments */ public EmptyArgumentException(final String argName, final String messageCode, final Object[] args) { this(argName, messageCode, args, null); } /** * Creates an {@link EmptyArgumentException}. * * @param argName * Name of the argument * @param messageCode * Message code * @param args
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 1.7K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/SimpleProvider.kt
import org.junit.jupiter.api.extension.ExtensionContext import org.junit.jupiter.params.provider.Arguments import org.junit.jupiter.params.provider.ArgumentsProvider abstract class SimpleProvider : ArgumentsProvider { override fun provideArguments(context: ExtensionContext) = arguments().map { Arguments.of(it) }.stream() @Throws(Exception::class) abstract fun arguments(): List<Any>
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/ClRuntimeException.java
* Returns a message code. * * @return message code */ public String getMessageCode() { return messageCode; } /** * Returns arguments of a message * * @return array of arguments */ public Object[] getArgs() { return args; } @Override public String getMessage() { return message; } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 3.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/MethodNotFoundRuntimeException.java
/** * The classes of the method arguments. */ private final Class<?>[] methodArgClasses; /** * Creates a {@link MethodNotFoundRuntimeException}. * * @param targetClass * Target class * @param methodName * Method name * @param methodArgs * Array of arguments */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 3.3K bytes - Viewed (0)