Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 64 for Sall (0.11 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/GroovyPluginImplementation.groovy

                        def value = ${read.groovyExpression}
                        println("apply = " + value)
    
                        // Instance call
                        def sys = System
                        println("apply INSTANCE = " + sys.getProperty("INSTANCE"))
    
                        // Call from closure
                        def cl = { p ->
                            println("\$p CLOSURE = " + sys.getProperty("CLOSURE"))
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/api/NonNullApi.java

    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Marks a type or a whole package as providing a non-null API by default.
     *
     * All parameter and return types are assumed to be {@link Nonnull} unless specifically marked as {@link Nullable}.
     *
     * All types of an annotated package inherit the package rule.
     * Subpackages do not inherit nullability rules and must be annotated.
     *
     * @since 4.2
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/build.gradle.kts

    packageCycles {
        excludePatterns.add("org/gradle/**")
    }
    
    val prepareVersionsInfo = tasks.register<PrepareVersionsInfo>("prepareVersionsInfo") {
        destFile = layout.buildDirectory.file("generated-resources/all-released-versions/all-released-versions.properties")
        versions = moduleIdentity.releasedVersions.map {
            it.allPreviousVersions.joinToString(" ") { it.version }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/build.gradle.kts

        testImplementation(libs.nativePlatform) {
            because("Required for SystemInfo")
        }
    
        integTestImplementation(projects.messaging)
        // TODO: Make these available for all integration tests? Maybe all tests?
        integTestImplementation(libs.jetbrainsAnnotations)
    
        testFixturesApi(testFixtures(project(":language-jvm")))
        testFixturesImplementation(project(":base-services"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. platforms/documentation/samples/build.gradle.kts

        integTestImplementation(libs.guava)
        integTestImplementation(libs.ant)
        integTestImplementation(libs.samplesCheck) {
            exclude(group = "org.codehaus.groovy", module = "groovy-all")
        }
        integTestImplementation(testFixtures(project(":core")))
        integTestImplementation(testFixtures(project(":model-core")))
    
        integTestDistributionRuntimeOnly(project(":distributions-full"))
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 20:15:18 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectModelAccessTrackingClosure.kt

            val numClosureArgs = delegate.maximumNumberOfParameters
            val finalArgs: Array<out Any> = args.take(numClosureArgs).map { trackingProjectAccess(crossProjectModelAccess, referrerProject, it) }.toTypedArray()
            delegate.call(*finalArgs)
        }
    
        override fun setDelegate(delegateObject: Any) {
            delegate.delegate = trackingProjectAccess(crossProjectModelAccess, referrerProject, delegateObject)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/api/GradleException.java

     * limitations under the License.
     */
    
    package org.gradle.api;
    
    import javax.annotation.Nullable;
    
    /**
     * <p><code>GradleException</code> is the base class of all exceptions thrown by Gradle.</p>
     */
    public class GradleException extends RuntimeException {
        public GradleException() {
            super();
        }
    
        public GradleException(String message) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskRealizationBuildOperationIntegrationTest.groovy

            buildFile << """
                tasks.register("foo")
            """
    
            when:
            configurationCacheRun(":foo")
            then:
            def realizeOps = buildOperations.all(RealizeTaskBuildOperationType)
            realizeOps.size() == 2
            realizeOps*.details.each {
                assert it.taskPath == ":foo"
            }
            realizeOps.first().details.eager == false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionFailuresIntegrationTest.groovy

                it.assertHasFirstCause("Could not resolve all files for configuration ':implementation'.")
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/SystemPropertyInstrumentationInStaticGroovyIntegrationTest.groovy

            given:
            // Why the separate plugin? The Project.getProperties() is available in the build.gradle as getProperties().
            // Therefore, it is impossible to call System.getProperties() with static import there, and testing static
            // import is important because Groovy generates different code in this case.
            file("buildSrc/src/main/groovy/SomePlugin.groovy") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top