Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for isIndy (0.1 sec)

  1. platforms/jvm/plugins-groovy/src/integTest/groovy/org/gradle/groovy/GroovyBasePluginIntegrationTest.groovy

            "org.codehaus.groovy:groovy-all:2.4.10"      | "groovy-all-2.4.10.jar"
            "org.codehaus.groovy:groovy:2.4.10"          | "groovy-2.4.10.jar"
            "org.codehaus.groovy:groovy-all:2.4.10:indy" | "groovy-all-2.4.10-indy.jar"
        }
    
        def "only resolves source class path feeding into inferred Groovy class path if/when the latter is actually used (but not during autowiring)"() {
            file("build.gradle") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/VersionNumber.java

                            scanner.skipSeparator();
                            patch = scanner.scanDigit();
                        }
                    }
                }
    
                if (scanner.isEnd()) {
                    return new VersionNumber(major, minor, micro, patch, null, this);
                }
    
                if (scanner.isQualifier()) {
                    scanner.skipSeparator();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. platforms/jvm/language-groovy/src/integTest/resources/org/gradle/groovy/compile/InvokeDynamicGroovyCompilerSpec/canEnableAndDisableInvokeDynamicOptimization/build.gradle

        destinationDirectory = file("$buildDir/classes/optimized")
        groovyOptions.optimizationOptions.indy = true
    }
    
    task compileWithoutOptimization(type: GroovyCompile) {
        source = sourceSets.main.groovy
        classpath = configurations.compileClasspath
        destinationDirectory = file("$buildDir/classes/unoptimized")
        groovyOptions.optimizationOptions.indy = false
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 1K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-groovy/src/test/groovy/org/gradle/api/tasks/GroovyRuntimeTest.groovy

            "2.1.2"              | ""         | "org.codehaus.groovy" | ["groovy", "groovy-ant"]
            "2.1.2"              | "-indy"    | "org.codehaus.groovy" | ["groovy", "groovy-ant"]
            "2.5.2"              | ""         | "org.codehaus.groovy" | ["groovy", "groovy-ant", "groovy-templates"]
            "2.5.2"              | "-indy"    | "org.codehaus.groovy" | ["groovy", "groovy-ant", "groovy-templates"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/util/VersionNumber.java

                            scanner.skipSeparator();
                            patch = scanner.scanDigit();
                        }
                    }
                }
    
                if (scanner.isEnd()) {
                    return new VersionNumber(major, minor, micro, patch, null, this, false);
                }
    
                if (scanner.isQualifier()) {
                    scanner.skipSeparator();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:46:00 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/CallSiteDecorator.java

    import org.codehaus.groovy.runtime.callsite.CallSite;
    import org.gradle.api.NonNullApi;
    
    import java.lang.invoke.MethodHandles;
    
    /**
     * A handler for Groovy call sites, including Indy ones, which is used to replace the call sites of some calls at runtime,
     * in order to alter their behavior.
     */
    @NonNullApi
    public interface CallSiteDecorator {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 27 13:58:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/DynamicGroovyPluginMixin.groovy

                        }
                    }
                }
            """
    
            file("buildSrc/build.gradle") << """
            compileGroovy {
                groovyOptions.optimizationOptions.indy = $enableIndy
            }
            """
    
            buildScript("""
                apply plugin: SomePlugin
            """)
        }
    
        abstract TestFile file(Object... path)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-groovy/src/main/java/org/gradle/api/tasks/GroovyRuntime.java

        public GroovyRuntime(Project project) {
            this.project = (ProjectInternal) project;
        }
    
        /**
         * Searches the specified class path for Groovy Jars ({@code groovy(-indy)}, {@code groovy-all(-indy)}) and returns a corresponding class path for executing Groovy tools such as the Groovy
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenDependencyResolveIntegrationTest.groovy

                }
            }
        }
    
        def "mixing variant aware and artifact selection is forbidden"() {
            buildFile << """
                dependencies {
                    conf('org:lib:1.0:indy') {
                        capabilities {
                            requireCapability("org:lib")
                        }
                    }
                }
            """
    
            when:
            fails ':checkDeps'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  10. platforms/jvm/language-groovy/src/testFixtures/groovy/org/gradle/testing/fixture/GroovyCoverage.groovy

        static {
            SUPPORTED_BY_JDK = groovyVersionsSupportedByJdk(JavaVersion.current())
            SUPPORTS_GROOVYDOC = VersionCoverage.versionsAtLeast(SUPPORTED_BY_JDK, "1.6.9")
            // Indy compilation doesn't work in 2.2.2 and before
            SUPPORTS_INDY = VersionCoverage.versionsAtLeast(SUPPORTED_BY_JDK, "2.3.0")
            SUPPORTS_TIMESTAMP = VersionCoverage.versionsAtLeast(SUPPORTED_BY_JDK, "2.4.6")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top