Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 279 for bean3 (0.13 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/PropertyAccessorTypeTest.groovy

            bean.url == 'lower-case' && bean.getUrl() == bean.url
            bean.URL == 'upper-case' && bean.getURL() == bean.URL
            bean.cCompiler == 'lower-case first char' && bean.getcCompiler() == bean.cCompiler
            bean.CCompiler == 'upper-case first char' && bean.getCCompiler() == bean.CCompiler
            bean.cppCompiler == 'cppCompiler' && bean.getCppCompiler() == bean.cppCompiler
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Parameter.java

     * <code>MavenPluginManager.getConfiguredMojo(...)</code></a>.
     * <p>
     * Beans injected into Mojo parameters are prepared by <a href="https://www.eclipse.org/sisu/">Sisu</a> JSR330-based
     * container: this annotation is only effective on fields of the Mojo class itself, nested bean injection
     * requires Sisu or JSR330 annotations.
     *
     * @since 4.0.0
     */
    @Experimental
    @Documented
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 05 09:45:47 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/beans/BeanDesc.java

     *     }
     * }
     * </pre>
     *
     * @author higa
     * @see BeanDescFactory
     */
    public interface BeanDesc {
    
        /**
         * Beanのクラスを返します。
         *
         * @param <T>
         *            Beanのクラス
         * @return Beanのクラス
         */
        <T> Class<T> getBeanClass();
    
        /**
         * 型変数から型引数へのマップを返します。
         *
         * @return 型変数から型引数へのマップ
         */
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Mojo.java

         * @return need to be online
         */
        boolean onlineRequired() default false;
    
        /**
         * TODO: v4: add a SPI for the configurator
         * configurator bean name.
         * @return the configurator bean name
         */
        @Nonnull
        String configurator() default "";
    
        /**
         * Indicates whether dependency collection will be
         * required when executing the Mojo.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. fess-crawler-es/src/main/java/org/codelibs/fess/crawler/service/impl/AbstractCrawlerService.java

    import javax.annotation.Resource;
    
    import org.apache.lucene.search.TotalHits;
    import org.codelibs.core.beans.BeanDesc;
    import org.codelibs.core.beans.Converter;
    import org.codelibs.core.beans.PropertyDesc;
    import org.codelibs.core.beans.factory.BeanDescFactory;
    import org.codelibs.core.beans.util.BeanUtil;
    import org.codelibs.core.io.FileUtil;
    import org.codelibs.core.lang.StringUtil;
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Apr 04 09:58:36 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  6. maven-embedder/src/main/java/org/eclipse/sisu/plexus/PlexusXmlBeanConverter.java

    import org.eclipse.sisu.Priority;
    import org.eclipse.sisu.bean.BeanProperties;
    import org.eclipse.sisu.bean.BeanProperty;
    import org.eclipse.sisu.inject.Logs;
    import org.eclipse.sisu.inject.TypeArguments;
    
    /**
     * {@link PlexusBeanConverter} {@link Module} that converts Plexus XML configuration into beans.
     */
    @Singleton
    @Priority(10)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/beans/ConstructorDesc.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.core.beans;
    
    import java.lang.reflect.Constructor;
    import java.util.Collection;
    import java.util.Map;
    
    /**
     * コンストラクタを扱うためのインターフェースです。
     *
     * @author koichik
     */
    public interface ConstructorDesc {
    
        /**
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorInjectUndecoratedTest.groovy

            bean.someValue == 12
            bean.calculated == "[12]"
    
            bean instanceof GeneratedSubclass
            bean.publicType() == BeanWithServiceGetters
    
            bean instanceof ModelObject
            bean.modelIdentityDisplayName == null
            !bean.hasUsefulDisplayName()
    
            bean instanceof OwnerAware
    
            !(bean instanceof DynamicObjectAware)
            !(bean instanceof ExtensionAware)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskSerializationIntegrationTest.groovy

                        bean.parent.parent = bean.parent
                    }
    
                    @TaskAction
                    void run() {
                        println "bean.value = " + bean.value
                        println "bean.parent.value = " + bean.parent.value
                        println "same reference = " + (bean.parent.child == bean)
                    }
                }
    
                task ok(type: SomeTask) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/extensibility/ExtensibleDynamicObjectTest.java

        @Test
        public void hasPropertiesDefinedByClass() {
            Bean bean = new Bean();
            assertTrue(bean.hasProperty("readWriteProperty"));
            assertTrue(bean.hasProperty("readOnlyProperty"));
            assertTrue(bean.hasProperty("writeOnlyProperty"));
        }
    
        @Test
        public void canGetAndSetClassProperty() {
            Bean bean = new Bean();
            bean.setReadWriteProperty("value");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 33.7K bytes
    - Viewed (0)
Back to top