Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for PD (0.02 sec)

  1. 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)
  2. compat/maven-plugin-api/src/test/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilderTest.java

            PluginDescriptor pd = build("/plugin.xml");
    
            assertEquals("org.apache.maven.plugins", pd.getGroupId());
            assertEquals("maven-jar-plugin", pd.getArtifactId());
            assertEquals("2.3-SNAPSHOT", pd.getVersion());
            assertEquals("jar", pd.getGoalPrefix());
            assertEquals("plugin-description", pd.getDescription());
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 6K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/plugin/PluginDescriptorCache.java

                throws PluginResolutionException, PluginDescriptorParsingException, InvalidPluginDescriptorException {
            PluginDescriptor pd = get(key);
            if (pd == null) {
                pd = supplier.load();
                put(key, pd);
            }
            return pd;
        }
    
        void flush();
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 10 07:09:12 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. impl/maven-core/src/test/java/org/apache/maven/plugin/PluginManagerTest.java

            assertNotNull(mojoDescriptor);
            PluginDescriptor pd = mojoDescriptor.getPluginDescriptor();
            assertNotNull(pd);
            assertEquals(groupId, pd.getGroupId());
            assertEquals(artifactId, pd.getArtifactId());
            assertEquals(version, pd.getVersion());
        }
    
        @Test
        void testPluginRealmCache() throws Exception {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sun Mar 30 23:08:36 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. impl/maven-core/src/main/java/org/apache/maven/plugin/PluginManagerException.java

            super(message, cause);
    
            this.project = project;
    
            PluginDescriptor pd = mojoDescriptor.getPluginDescriptor();
            pluginGroupId = pd.getGroupId();
            pluginArtifactId = pd.getArtifactId();
            pluginVersion = pd.getVersion();
    
            goal = mojoDescriptor.getGoal();
        }
    
        /**
         * Constructor.
         *
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. 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)
Back to top