Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 14 for argName (0.06 seconds)

  1. 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)
  2. 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)
  3. 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 args
    Created: Sat Dec 20 08:55:33 GMT 2025
    - Last Modified: Thu Jun 19 09:12:22 GMT 2025
    - 2.6K bytes
    - Click Count (0)
  4. 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)
  5. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/CommonsCliUpgradeOptions.java

                        .hasArg()
                        .argName("version")
                        .desc("Target POM model version (4.0.0 or 4.1.0)")
                        .get());
                options.addOption(Option.builder(DIRECTORY)
                        .longOpt("directory")
                        .hasArg()
                        .argName("path")
                        .desc("Directory to use as starting point for POM discovery")
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Mon Sep 29 14:48:39 GMT 2025
    - 7K bytes
    - Click Count (0)
  6. src/cmd/asm/internal/asm/operand_test.go

    	{"$-24(R4)", "$-24(R4)"},
    	{"$0", "$0"},
    	{"$0(R1)", "$(R1)"},
    	{"$0.5", "$(0.5)"},
    	{"$0x7000", "$28672"},
    	{"$0x88888eef", "$2290650863"},
    	{"$1", "$1"},
    	{"$_main<>(SB)", "$_main<>(SB)"},
    	{"$argframe(FP)", "$argframe(FP)"},
    	{"$runtime·tlsg(SB)", "$runtime.tlsg(SB)"},
    	{"$~3", "$-4"},
    	{"(-288-3*8)(R1)", "-312(R1)"},
    	{"(16)(R7)", "16(R7)"},
    	{"(8)(g)", "8(g)"},
    	{"(CTR)", "(CTR)"},
    	{"(R0)", "(R0)"},
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Tue Aug 29 18:31:05 GMT 2023
    - 23.9K bytes
    - Click Count (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to Top