Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for GroovyObjectSupport (0.27 sec)

  1. platforms/jvm/jacoco/src/main/java/org/gradle/internal/jacoco/AbstractAntJacocoReport.java

        }
    
        protected void configureAntReportTask(FileCollection classpath, final Action<GroovyObjectSupport> action) {
            ant.withClasspath(classpath).execute(new Closure<Object>(this, this) {
                @SuppressWarnings("UnusedDeclaration")
                public Object doCall(Object it) {
                    GroovyObjectSupport antBuilder = (GroovyObjectSupport) it;
                    antBuilder.invokeMethod("taskdef", ImmutableMap.of(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:19:29 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/AntGroovydoc.java

            ant.withClasspath(combinedClasspath).execute(new Closure<Object>(this, this) {
                @SuppressWarnings("UnusedDeclaration")
                public Object doCall(Object it) {
                    final GroovyObjectSupport antBuilder = (GroovyObjectSupport) it;
    
                    antBuilder.invokeMethod("taskdef", ImmutableMap.of(
                        "name", "groovy",
                        "classname", "org.codehaus.groovy.ant.Groovy"
                    ));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  3. platforms/jvm/jacoco/src/main/java/org/gradle/internal/jacoco/AntJacocoReport.java

            configureAntReportTask(classpath, new Action<GroovyObjectSupport>() {
                @Override
                public void execute(GroovyObjectSupport antBuilder) {
                    invokeJacocoReport(antBuilder, projectName, allClassesDirs, allSourcesDirs, encoding, executionData, reports);
                }
            });
        }
    
        @Override
        protected void configureReport(GroovyObjectSupport antBuilder, JacocoReportsContainer reports) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:19:29 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/bean-serialization-services/src/main/kotlin/org/gradle/internal/serialize/beans/services/BeanConstructors.kt

            maybeInit(beanType)
            if (GroovyObjectSupport::class.java.isAssignableFrom(beanType)) {
                // Run the `GroovyObjectSupport` constructor, to initialize the metadata field
                return newConstructorForSerialization(beanType, GroovyObjectSupport::class.java.getConstructor())
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. platforms/jvm/jacoco/src/main/java/org/gradle/internal/jacoco/AntJacocoCheck.java

            final JacocoCheckResult jacocoCheckResult = new JacocoCheckResult();
    
            configureAntReportTask(classpath, new Action<GroovyObjectSupport>() {
                @Override
                public void execute(GroovyObjectSupport antBuilder) {
                    try {
                        invokeJacocoReport(antBuilder, projectName, allClassesDirs, allSourcesDirs, encoding, executionData, violationRules);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:19:29 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/extensibility/DefaultExtraPropertiesExtension.java

    import groovy.lang.Closure;
    import groovy.lang.GroovyObjectSupport;
    import groovy.lang.MissingPropertyException;
    import groovy.lang.ReadOnlyPropertyException;
    import org.gradle.api.plugins.ExtraPropertiesExtension;
    
    import javax.annotation.Nullable;
    import java.util.HashMap;
    import java.util.Map;
    
    public class DefaultExtraPropertiesExtension extends GroovyObjectSupport implements ExtraPropertiesExtension {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/ConfigureDelegate.java

    package org.gradle.internal.metaobject;
    
    import groovy.lang.Closure;
    import groovy.lang.GroovyObjectSupport;
    
    import javax.annotation.Nullable;
    import javax.annotation.concurrent.NotThreadSafe;
    
    @SuppressWarnings({"FieldNamingConvention", "NewMethodNamingConvention"})
    @NotThreadSafe
    public class ConfigureDelegate extends GroovyObjectSupport {
        protected final DynamicObject _owner;
        protected final DynamicObject _delegate;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 17 11:25:34 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/ModuleFactoryDelegate.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.artifacts.dsl.dependencies;
    
    import groovy.lang.Closure;
    import groovy.lang.GroovyObjectSupport;
    import org.codehaus.groovy.runtime.InvokerHelper;
    import org.gradle.api.artifacts.Dependency;
    import org.gradle.api.artifacts.ModuleDependency;
    import org.gradle.util.internal.ConfigureUtil;
    
    @Deprecated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelMapGroovyView.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.model.internal.core;
    
    import groovy.lang.Closure;
    import groovy.lang.GroovyObjectSupport;
    import groovy.lang.MissingMethodException;
    import groovy.lang.MissingPropertyException;
    import org.gradle.model.ModelMap;
    import org.gradle.util.internal.ClosureBackedAction;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-groovy/src/main/java/org/gradle/model/dsl/internal/NonTransformedModelDslBacking.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.model.dsl.internal;
    
    import groovy.lang.Closure;
    import groovy.lang.GroovyObjectSupport;
    import groovy.lang.MissingMethodException;
    import groovy.lang.MissingPropertyException;
    import javax.annotation.concurrent.NotThreadSafe;
    import org.gradle.api.Action;
    import org.gradle.api.GradleException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top