- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for getParameterMap (0.4 sec)
-
compat/maven-plugin-api/src/test/java/org/apache/maven/plugin/descriptor/MojoDescriptorTest.java
*/ package org.apache.maven.plugin.descriptor; import org.junit.jupiter.api.Test; import static org.junit.jupiter.api.Assertions.assertEquals; class MojoDescriptorTest { @Test void getParameterMap() throws DuplicateParameterException { MojoDescriptor mojoDescriptor = new MojoDescriptor(); Parameter param1 = new Parameter(); param1.setName("param1"); param1.setDefaultValue("value1");
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/ExecJob.java
final LaJobRuntime jobRuntime = ComponentUtil.getJobHelper().getJobRuntime(); if (jobRuntime != null) { final ScheduledJob job = (ScheduledJob) jobRuntime.getParameterMap().get(Constants.SCHEDULED_JOB); if (job != null) { prop.setProperty("job.runtime.id", job.getId()); prop.setProperty("job.runtime.name", job.getName());
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 7.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
} @Override public Map<String, String[]> getFields() { final Map<String, String[]> fields = new HashMap<>(); for (final Map.Entry<String, String[]> entry : request.getParameterMap().entrySet()) { final String key = entry.getKey(); if (key.startsWith("fields.")) { final String[] value = simplifyArray(entry.getValue());
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:46 UTC 2024 - 50.3K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java
* Any change to this map is NOT reflected on list and other way around! */ public Map<String, Parameter> getParameterMap() { LinkedHashMap<String, Parameter> parameterMap = new LinkedHashMap<>(); for (Parameter pd : parameters) { parameterMap.put(pd.getName(), pd); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 21.7K bytes - Viewed (0)