Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 326 for Sall (0.92 sec)

  1. 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)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/PerformanceTestJvmOptions.groovy

            List<String> jvmOptions
            if (!originalJvmOptions) {
                jvmOptions = []
            } else {
                jvmOptions = originalJvmOptions.collect { it.toString() }  // makes sure that all elements are java.lang.String instances
            }
            if (!JavaVersion.current().isJava8Compatible() && jvmOptions.count { it.startsWith('-XX:MaxPermSize=') } == 0) {
                jvmOptions << '-XX:MaxPermSize=256m'
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:59:28 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/RoleBasedConfigurationContainerInternal.java

     * All methods in this interface produce <strong>unlocked</strong> configurations, meaning they
     * are allowed to change roles. Starting in Gradle 9.0, all Gradle-created configurations will be locked.
     *
     * <p>The methods on this interface are meant to be transitional, and as such all usages of this interface
     * should be migrated to the public API starting in Gradle 9.0.<p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. 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)
  5. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/Result.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.launcher.daemon.protocol;
    
    /**
     * The supertype of all objects sent from the daemon server back to the client.
     * <p>
     * Specific subclass types carry extra context, e.g. whether it was a failure or successful result.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/distributions-core/build.gradle.kts

        pluginsRuntimeOnly(project(":configuration-cache")) {
            because("We always need a BuildLogicTransformStrategy service implementation.")
        }
        pluginsRuntimeOnly(project(":testing-junit-platform")) {
            because("All test workers have JUnit platform on their classpath (see ForkingTestClassProcessor.getTestWorkerImplementationClasspath).")
        }
        pluginsRuntimeOnly(project(":kotlin-dsl-provider-plugins")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/event/ScopedListenerManager.java

    public interface ScopedListenerManager extends ListenerManager, AnnotatedServiceLifecycleHandler {
    
        /**
         * Creates a child {@code ListenerManager}.
         * <p>
         * All events broadcast in the child will be received by the listeners registered in the parent.
         * However, the reverse is not true:
         * events broadcast in the parent are not received by the listeners in the children.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 10:09:43 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/Dependencies.java

    import javax.annotation.Nullable;
    import javax.inject.Inject;
    
    /**
     * Universal APIs that are available for all {@code dependencies} blocks.
     *
     * @apiNote This interface is intended to be used to mix-in DSL methods for {@code dependencies} blocks.
     * @implSpec The default implementation of all methods should not be overridden.
     * @implNote Changes to this interface may require changes to the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 05:34:03 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. 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)
  10. platforms/documentation/docs/src/snippets/codeQuality/codeQuality/groovy/build.gradle

    dependencies {
    // end::specify-groovy-version[]
        implementation localGroovy()
        testImplementation 'junit:junit:4.13'
    // tag::specify-groovy-version[]
        codenarc 'org.codehaus.groovy:groovy-all:3.0.3'
        codenarc 'org.codenarc:CodeNarc:1.6.1'
    }
    // end::specify-groovy-version[]
    
    // tag::customize-checkstyle-memory[]
    tasks.withType(Checkstyle) {
        minHeapSize = "200m"
        maxHeapSize = "1g"
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 14 14:22:49 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top