Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for GroovyObjectSupport (0.2 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/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)
  3. 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)
  4. 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)
  5. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/GroovyCodecs.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.serialize.codecs.core
    
    import groovy.lang.Closure
    import groovy.lang.GroovyObjectSupport
    import groovy.lang.MetaClass
    import groovy.lang.MissingMethodException
    import groovy.lang.MissingPropertyException
    import groovy.lang.Script
    import org.codehaus.groovy.runtime.InvokerHelper
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ProblemReportingCrossProjectModelAccess.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl
    
    import groovy.lang.Closure
    import groovy.lang.GroovyObjectSupport
    import groovy.lang.GroovyRuntimeException
    import groovy.lang.Script
    import org.gradle.api.Action
    import org.gradle.api.AntBuilder
    import org.gradle.api.project.IsolatedProject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 41.1K bytes
    - Viewed (0)
Back to top