Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 35 of 35 for GroovyObject (0.13 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

        public void components(Action<? super SoftwareComponentContainer> configuration) {
            configuration.execute(getComponents());
        }
    
        /**
         * This is an implementation of the {@link groovy.lang.GroovyObject}'s corresponding method.
         * The interface itself is mixed-in at runtime, but we want to keep this implementation as it
         * properly handles the dynamicLookupRoutine.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    ====
    <1> The receiver is a link:https://docs.groovy-lang.org/latest/html/api/groovy/lang/GroovyObject.html[GroovyObject] and provides Kotlin helpers
    <2> The `GroovyObject` API is available
    <3> Invoke the `methodName` method, passing some parameters
    <4> Configure the `blockName` property, maps to a `Closure` taking method invocation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/annotations/impl/DefaultTypeAnnotationMetadataStore.java

         * @param ignoreMethodsFromTypes Methods to ignore: any methods declared by these types are ignored even when overridden by a given type. This is to avoid detecting methods like {@code Object.equals()} or {@code GroovyObject.getMetaClass()}.
         * @param ignoredMethodAnnotations Annotations to use to explicitly ignore a method/property.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/project/taskfactory/AnnotationProcessingTaskFactoryTest.groovy

        def typeAnnotationMetadataStore = new DefaultTypeAnnotationMetadataStore(
            [],
            ModifierAnnotationCategory.asMap(PROPERTY_TYPE_ANNOTATIONS),
            ["java", "groovy"],
            [],
            [Object, GroovyObject],
            [ConfigurableFileCollection, Property],
            IGNORED_METHOD_ANNOTATIONS,
            { false },
            cacheFactory
        )
        def propertyHandlers = services.getAll(PropertyAnnotationHandler)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

     * limitations under the License.
     */
    package org.gradle.internal.instantiation.generator;
    
    import com.google.common.collect.ImmutableSet;
    import groovy.lang.Closure;
    import groovy.lang.GroovyObject;
    import groovy.lang.GroovySystem;
    import groovy.lang.MetaClass;
    import groovy.lang.MetaClassRegistry;
    import org.gradle.api.Action;
    import org.gradle.api.Describable;
    import org.gradle.api.IsolatedAction;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
Back to top