- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 12 for argName (0.05 seconds)
-
src/main/java/org/codelibs/core/misc/AssertionUtil.java
*/ public static void assertArgumentArrayIndex(final String argName, final int argValue, final int arraySize) { if (argValue < 0) { throw new ClIllegalArgumentException(argName, "ECL0014", asArray(argName)); } if (argValue >= arraySize) { throw new ClIllegalArgumentException(argName, "ECL0015", asArray(argName, arraySize)); } } /**Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 12.5K bytes - Click Count (0) -
src/main/java/org/codelibs/core/exception/NullArgumentException.java
private static final long serialVersionUID = 1L; /** * Creates a {@link NullArgumentException}. * * @param argName * Name of the argument that is {@code null} */ public NullArgumentException(final String argName) { super(argName, "ECL0008", asArray(argName)); }Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Thu Jun 19 09:12:22 GMT 2025 - 1.3K bytes - Click Count (0) -
src/main/java/org/codelibs/core/exception/ClIllegalArgumentException.java
* @param args * Array of arguments */ public ClIllegalArgumentException(final String argName, final String messageCode, final Object[] args) { this(argName, messageCode, args, null); } /** * Creates a {@link ClIllegalArgumentException}. * * @param argName * Name of the argument * @param messageCode * Message code * @param argsCreated: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Thu Jun 19 09:12:22 GMT 2025 - 2.6K bytes - Click Count (0) -
src/main/java/org/codelibs/core/exception/EmptyArgumentException.java
* Creates an {@link EmptyArgumentException}. * * @param argName * Name of the argument * @param messageCode * Message code * @param args * Array of arguments */ public EmptyArgumentException(final String argName, final String messageCode, final Object[] args) { this(argName, messageCode, args, null); } /**Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Thu Jun 19 09:12:22 GMT 2025 - 1.7K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/CommonsCliUpgradeOptions.java
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Sep 29 14:48:39 GMT 2025 - 7K bytes - Click Count (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/interpolation/AbstractModelInterpolatorTest.java
String orgName = "MyCo"; Model model = new Model(org.apache.maven.api.model.Model.newBuilder() .name("${project.organization.name} Tools") .organization(org.apache.maven.api.model.Organization.newBuilder() .name(orgName) .build()) .build());
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sun Mar 30 23:08:36 GMT 2025 - 18.2K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringVisitorModelInterpolator.java
model.setPackaging(intPackaging); } // Name String orgName = model.getName(); String intName = interpolate(orgName); if (orgName != intName) { model.setName(intName); } // Description
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 43.1K bytes - Click Count (0) -
tests/test_security_oauth2_optional.py
"loc": ["body", "grant_type"], "msg": "Field required", "input": None, } ] } @pytest.mark.parametrize( argnames=["grant_type"], argvalues=[ pytest.param("incorrect", id="incorrect value"), pytest.param("passwordblah", id="password with suffix"), pytest.param("blahpassword", id="password with prefix"),
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Sat Dec 27 18:19:10 GMT 2025 - 8.9K bytes - Click Count (0) -
tests/test_security_oauth2.py
"loc": ["body", "grant_type"], "msg": "Field required", "input": None, } ] } @pytest.mark.parametrize( argnames=["grant_type"], argvalues=[ pytest.param("incorrect", id="incorrect value"), pytest.param("passwordblah", id="password with suffix"), pytest.param("blahpassword", id="password with prefix"),
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Sat Dec 27 18:19:10 GMT 2025 - 9K bytes - Click Count (0) -
tests/test_security_oauth2_optional_description.py
"loc": ["body", "grant_type"], "msg": "Field required", "input": None, } ] } @pytest.mark.parametrize( argnames=["grant_type"], argvalues=[ pytest.param("incorrect", id="incorrect value"), pytest.param("passwordblah", id="password with suffix"), pytest.param("blahpassword", id="password with prefix"),
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Sat Dec 27 18:19:10 GMT 2025 - 9.1K bytes - Click Count (0)