Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 72 for Sall (0.04 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DynamicCallProblemReporting.kt

     * A problem is identified using a key object.
     * The implementation should be thread-safe and should support tracking problems in multiple threads, each with its own call stack.
     */
    interface DynamicCallProblemReporting {
        /**
         * Begin tracking a new dynamic call on the call stack, with no problems reported in it initially.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/services/internal/RegisteredBuildServiceProvider.java

            synchronized (instanceLock) {
                return stopActions;
            }
        }
    
        @Override
        public void maybeStop() {
            // We don't want to call stop actions with the lock held.
            ExecutionResult<Void> stopResult = ExecutionResult.forEach(getStopActions(), action -> action.accept(this));
            synchronized (instanceLock) {
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 09:24:00 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. 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)
  4. build-logic/integration-testing/src/main/kotlin/gradlebuild.cross-version-tests.gradle.kts

                this.systemProperties["org.gradle.integtest.crossVersion.lowestTestedVersion"] = releasedVersions?.lowestTestedVersion?.version
    
                // We should always be using JUnitPlatform at this point, so don't call useJUnitPlatform(), else this will
                // discard existing options configuration and add a deprecation warning.  Just set the existing options.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. testing/architecture-test/src/changes/archunit-store/stored.rules

    no\ classes\ should\ call\ method\ RoleBasedConfigurationContainerInternal.resolvableDependencyScopeUnlocked(String)\ or\ should\ call\ method\ RoleBasedConfigurationContainerInternal.resolvableDependencyScopeUnlocked(String,\ Action)\ or\ should\ call\ method\ RoleBasedConfigurationContainerInternal.maybeCreateResolvableUnlocked(String)\ or\ should\ call\ method\ RoleBasedConfigurationContainerInternal.maybeCreateConsumableUnlocked(String)\...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top