Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for GroovyObject (0.34 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/type/ModelTypes.java

     */
    
    package org.gradle.model.internal.type;
    
    import com.google.common.collect.ImmutableSortedSet;
    import com.google.common.collect.Iterables;
    import com.google.common.collect.Ordering;
    import groovy.lang.GroovyObject;
    import org.gradle.model.ModelMap;
    import org.gradle.model.ModelSet;
    
    import java.util.ArrayDeque;
    import java.util.LinkedHashSet;
    import java.util.List;
    import java.util.Queue;
    import java.util.Set;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/GroovyInteroperabilityIntegrationTest.kt

    import org.gradle.kotlin.dsl.fixtures.AbstractKotlinIntegrationTest
    import org.junit.Test
    
    
    class GroovyInteroperabilityIntegrationTest : AbstractKotlinIntegrationTest() {
    
        @Test
        fun `can call GroovyObject methods in withGroovyBuilder`() {
            withDefaultSettings()
    
            withFile(
                "groovy.gradle",
                """
                class MyExtension {
                    String server = 'default'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/logging/GroovyStackTraceSpec.java

                        + "|org.codehaus.groovy\\..*MetaClass.*"
                        + "|groovy\\..*MetaClass.*"
                        + "|groovy.lang.MetaMethod"
                        + "|groovy.lang.GroovyObject"
                        + "|java.lang.reflect\\..*"
                        + "|sun.reflect\\..*"
                        + "|jdk.internal.reflect\\..*"
                        + "|org.codehaus.groovy.vmplugin\\..*"
        );
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/type/ModelTypesTest.groovy

            where:
            types             | closed
            [Integer]         | typeHierarchyForInteger
            [Integer, Double] | typeHierarchyForInteger + typeHierarchyForDouble
            [Object]          | []
            [GroovyObject]    | []
        }
    
        static def getTypeHierarchyForDouble() {
            return maybeWithJava12ConstantTypes([Double, Number, Comparable, Serializable])
        }
    
        static def getTypeHierarchyForInteger() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. 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)
  6. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultAntBuilder.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.project;
    
    import com.google.common.collect.Sets;
    import groovy.lang.GroovyObject;
    import groovy.lang.MissingPropertyException;
    import groovy.util.ObservableMap;
    import org.apache.tools.ant.MagicNames;
    import org.apache.tools.ant.ProjectHelper;
    import org.apache.tools.ant.PropertyHelper;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.9K 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/test/groovy/org/gradle/api/internal/tasks/properties/InspectionSchemeFactoryTest.groovy

        def typeAnnotationMetadataStore = new DefaultTypeAnnotationMetadataStore(
            [],
            [(Thing1): TYPE, (Thing2): TYPE],
            ["java", "groovy"],
            [],
            [Object, GroovyObject],
            [ConfigurableFileCollection, Property],
            [IgnoredThing],
            { false },
            cacheFactory
        )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 10:13:50 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/ModelSchemaUtilsTest.groovy

    class ModelSchemaUtilsTest extends Specification {
        def "base object types have no candidate methods"() {
            expect:
            ModelSchemaUtils.getCandidateMethods(Object).isEmpty()
            ModelSchemaUtils.getCandidateMethods(GroovyObject).isEmpty()
        }
    
        class Base {
            @Incubating
            Object doSomething() { null }
        }
    
        class Child extends Base implements Serializable {
            @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  10. 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)
Back to top