Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for GroovyObject (0.21 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/BeanDynamicObject.java

            private final GroovyObject groovyObject = (GroovyObject) bean;
    
            @Override
            protected DynamicInvokeResult getOpaqueProperty(String name) {
                try {
                    return DynamicInvokeResult.found(groovyObject.getProperty(name));
                } catch (MissingPropertyException e) {
                    if (!name.equals(e.getProperty())) {
                        throw e;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/DefaultCallSiteDecorator.java

                        if (groovyDefaultCallSite != null) {
                            return groovyDefaultCallSite.callCurrent((GroovyObject) receiver, args);
                        } else {
                            try {
                                return super.callCurrent((GroovyObject) receiver, args);
                            } finally {
                                restoreCallSiteArrayEntry();
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/classpath/declarations/GroovyDynamicDispatchInterceptors.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.classpath.declarations;
    
    import groovy.lang.GroovyObject;
    import org.codehaus.groovy.runtime.ScriptBytecodeAdapter;
    import org.gradle.api.NonNullApi;
    import org.gradle.internal.classpath.InstrumentedClosuresHelper;
    import org.gradle.internal.classpath.intercept.AbstractInvocation;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/initialization/LegacyTypesSupport.java

     */
    @ServiceScope(Scope.Global.class)
    public interface LegacyTypesSupport {
    
        /**
         * Returns a set of classes that require {@link groovy.lang.GroovyObject} to be mixed in.
         */
        Set<String> getClassesToMixInGroovyObject();
    
        /**
         * Returns a set of types that have been removed, but which are baked into the bytecode
         * generated by the Groovy compiler
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/model/NamedObjectInstantiator.java

    import com.google.common.cache.CacheBuilder;
    import com.google.common.cache.CacheLoader;
    import com.google.common.cache.LoadingCache;
    import com.google.common.util.concurrent.UncheckedExecutionException;
    import groovy.lang.GroovyObject;
    import org.gradle.api.GradleException;
    import org.gradle.api.Named;
    import org.gradle.api.reflect.ObjectInstantiationException;
    import org.gradle.cache.internal.CrossBuildInMemoryCache;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/initialization/MixInLegacyTypesClassLoader.java

     *
     * <p>Mixes GroovyObject into certain types.</p>
     * <p>Generates empty interfaces for certain types that have been removed, but which are baked into the bytecode generated by the Groovy compiler.</p>
     */
    public class MixInLegacyTypesClassLoader extends TransformingClassLoader {
        private static final Type GROOVY_OBJECT_TYPE = Type.getType(GroovyObject.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 17K bytes
    - Viewed (0)
  7. testing/integ-test/src/crossVersionTest/groovy/org/gradle/integtests/PluginBinaryCompatibilityCrossVersionSpec.groovy

                        c.sourceCompatibility = 1.8
                        println c.sourceCompatibility
                        c.manifest { }
    
                        GroovyObject o = p.convention.plugins.java
                        o.sourceCompatibility = 1.7
                        println o.sourceCompatibility
                        o.manifest { }
    
                        def d = p.convention.plugins.java
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/service/scopes/ExecutionGlobalServices.java

     * limitations under the License.
     */
    package org.gradle.internal.service.scopes;
    
    import com.google.common.annotations.VisibleForTesting;
    import com.google.common.collect.ImmutableSet;
    import groovy.lang.GroovyObject;
    import groovy.transform.Generated;
    import org.gradle.api.Describable;
    import org.gradle.api.artifacts.transform.CacheableTransform;
    import org.gradle.api.artifacts.transform.InputArtifact;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/internal/reflect/annotations/TestAnnotationHandlingSupport.groovy

            [ThisIsAThing],
            [(TestNested): TYPE, (Long): TYPE, (Short): TYPE, (Tint): Modifiers.COLOR],
            ["java", "groovy"],
            [Object],
            [Object, GroovyObject],
            [],
            [Ignored, AlsoIgnored],
            { Method method -> method.isAnnotationPresent(Generated) },
            TestCrossBuildInMemoryCacheFactory.instance()
        )
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/AbstractTaskInputsAndOutputsTest.groovy

        def typeAnnotationMetadataStore = new DefaultTypeAnnotationMetadataStore(
            [],
            [:],
            ["java", "groovy"],
            [],
            [Object, GroovyObject],
            [ConfigurableFileCollection, Property],
            [Internal],
            { false },
            cacheFactory
        )
        def propertyHandlers = [new NoOpPropertyAnnotationHandler(Internal)]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top