- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 11 for PD (0.01 sec)
-
src/test/java/org/codelibs/core/beans/impl/BeanDescImplTest.java
final BeanDesc bd = BeanDescFactory.getBeanDesc(Hoge.class); PropertyDesc pd = bd.getPropertyDesc("baz"); assertThat(pd.isParameterized(), is(true)); assertThat(pd.getKeyClassOfMap(), is(sameClass(String.class))); assertThat(pd.getValueClassOfMap(), is(sameClass(Date.class))); ParameterizedClassDesc pcd = pd.getParameterizedClassDesc(); assertThat(pcd.getRawClass(), is(sameClass(Map.class)));
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Fri Jun 20 13:40:57 UTC 2025 - 13.9K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4Test.java
PluginDescriptor pd = new PluginDescriptor(); pd.setArtifactId("my-plugin"); pd.setGroupId("org.myco.plugins"); pd.setVersion("1"); DefaultArtifact artifact = new DefaultArtifact( pd.getGroupId(), pd.getArtifactId(), pd.getVersion(), "compile", "maven-plugin",
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Mar 26 19:31:34 UTC 2025 - 19.3K bytes - Viewed (0) -
cmd/erasure-server-pool-decom.go
QueuedBuckets: pd.QueuedBuckets, DecommissionedBuckets: pd.DecommissionedBuckets, Bucket: pd.Bucket, Prefix: pd.Prefix, Object: pd.Object, ItemsDecommissioned: pd.ItemsDecommissioned, ItemsDecommissionFailed: pd.ItemsDecommissionFailed, BytesDone: pd.BytesDone, BytesFailed: pd.BytesFailed, } }
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Sun Sep 28 20:59:21 UTC 2025 - 42.2K bytes - Viewed (1) -
impl/maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorTest.java
} private MojoExecution newMojoExecution() { PluginDescriptor pd = new PluginDescriptor(); pd.setArtifactId("my-plugin"); pd.setGroupId("org.myco.plugins"); pd.setVersion("1"); MojoDescriptor md = new MojoDescriptor(); md.setPluginDescriptor(pd); pd.addComponentDescriptor(md); return new MojoExecution(md); }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Mar 26 19:31:34 UTC 2025 - 19.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java
final PropertyDescImpl pd = (PropertyDescImpl) propertyDescCache.get(field.getName()); pd.setField(field); continue; } if (FieldUtil.isPublicField(field)) { final PropertyDescImpl pd = new PropertyDescImpl(field.getName(), field.getType(), null, null, field, this); propertyDescCache.put(fname, pd); } } }
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 25.8K bytes - Viewed (1) -
impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginValidationManager.java
return groupId + ":" + artifactId + ":" + version; } private String pluginKey(MojoDescriptor mojoDescriptor) { PluginDescriptor pd = mojoDescriptor.getPluginDescriptor(); return pluginKey(pd.getGroupId(), pd.getArtifactId(), pd.getVersion()); } private String pluginKey(Artifact pluginArtifact) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Apr 05 11:52:32 UTC 2025 - 17.5K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java
*/ public Map<String, Parameter> getParameterMap() { LinkedHashMap<String, Parameter> parameterMap = new LinkedHashMap<>(); for (Parameter pd : parameters) { parameterMap.put(pd.getName(), pd); } return parameterMap; } // ---------------------------------------------------------------------- // Dependency requirementRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 21.7K bytes - Viewed (0) -
src/test/java/org/codelibs/core/beans/impl/PropertyDescImplTest.java
/** * */ public void testConvertWithString() { final BeanDesc beanDesc = BeanDescFactory.getBeanDesc(MyDto.class); final PropertyDesc pd = beanDesc.getPropertyDesc("myEnum"); final MyDto dto = new MyDto(); pd.setValue(dto, "ONE"); assertEquals(MyEnum.ONE, dto.myEnum); } /** * @throws Exception */ @TestRegistered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Fri Jun 20 13:40:57 UTC 2025 - 11K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java
if (PLUGIN_2_0_0.equals(nsUri)) { org.apache.maven.api.plugin.descriptor.PluginDescriptor pd = new PluginDescriptorStaxReader().read(xsr, true); return new PluginDescriptor(pd); } else { XmlNode node = XmlService.read(xsr); PlexusConfiguration cfg = XmlPlexusConfiguration.toPlexusConfiguration(node);
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Mar 25 09:45:07 UTC 2025 - 17.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java
return perms; } @Override public PermissionCollection getPermissions(ProtectionDomain pd) { return perms; } @Override public boolean implies(ProtectionDomain pd, Permission p) { return perms.implies(p); } @Override public void refresh() {} }Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Dec 11 20:07:52 UTC 2025 - 37.8K bytes - Viewed (0)