Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 707 for Sall (0.06 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/LongRunningOperation.java

         * @since 5.0
         */
        LongRunningOperation addJvmArguments(String... jvmArguments);
    
        /**
         * Sets system properties to pass to the build.
         * <p>
         * By default, the Tooling API passes all system properties defined in the client to the build. If called, this method limits the system properties that are passed to the build, except for
         * immutable system properties that need to match on both sides.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 14K bytes
    - Viewed (0)
  2. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildParams.kt

        const val GRADLE_INSTALL_PATH = "gradle_installPath"
    
    
        /**
         * Specify the flaky test quarantine strategy:
         *
         * -PflakyTests=include: run all tests, including flaky tests.
         * -PflakyTests=exclude: run all tests, excluding flaky tests.
         * -PflakyTests=only: run flaky tests only.
         *
         * Default value (if absent) is "include".
         */
        const val FLAKY_TEST = "flakyTests"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/MessageHub.java

         *
         * <ul>
         *
         * <li>All calls to {@link Dispatch#dispatch(Object)} for outgoing messages have returned.</li>
         *
         * <li>All dispatches to handlers have completed.</li>
         *
         * <li>All internal threads have completed.</li>
         *
         * </ul>
         */
        @Override
        public void stop() {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/AbstractKotlinIntegrationTest.kt

     *
     * You must apply the `gradlebuild.kotlin-dsl-plugin-bundle-integ-tests` plugin for this to work.
     *
     * You can also set the `kotlinDslTestsExtraRepo` system property
     * to the path of a maven repository to be injected in all tests.
     * This is useful for testing new/development Kotlin versions.
     */
    abstract class AbstractKotlinIntegrationTest : AbstractIntegrationTest() {
    
        protected
        open val injectLocalTestRepositories = true
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 16:44:39 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    To stop running Daemon processes, use the following command:
    
    ----
    $ gradle --stop
    ----
    
    This terminates all Daemon processes started with the same version of Gradle used to execute the command.
    
    You can also kill Daemons manually with your operating system.
    To find the PIDs for all Daemons regardless of Gradle version, see <<gradle_daemon.adoc#find_all_daemons,Find Daemons>>.
    
    [[sec:daemon_jvm_criteria]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/ChainingHttpHandler.java

                    }
                    handlers.clear();
                    completed = true;
                }
                if (!failures.isEmpty()) {
                    throw new DefaultMultiCauseException("Failed to handle all HTTP requests.", failures);
                }
            } finally {
                lock.unlock();
            }
        }
    
        @Override
        public void resetExpectations() {
            cancelBlockedRequests();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/LambdaInputsIntegrationTest.groovy

            """
        }
    
        @Issue("https://github.com/gradle/gradle/issues/5510")
        @Ignore("All lambdas are becoming serializable")
        // TODO remove this test if the change making all lambdas serializable is not reverted
        def "task with nested property defined by non-serializable Java lambda fails the build"() {
            // With configuration cache, all lambdas are forced to be serializable, so there won't be anything to report.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 09:08:49 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  8. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/Ear.java

                    recordTopLevelModules(details);
                }
            }));
    
            // create our own metaInf which runs after mainSpec's files
            // this allows us to generate the deployment descriptor after recording all modules it contains
            CopySpecInternal metaInf = (CopySpecInternal) getMainSpec().addChild().into("META-INF");
            CopySpecInternal descriptorChild = metaInf.addChild();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/testing_gradle_plugins.adoc

    ====
    <1> Applies the plugin to the project
    <2> Configures the URL to be verified through the exposed extension
    
    Executing the `verifyUrl` task renders a success message if the HTTP GET call to the configured URL returns with a 200 response code:
    
    [[verify-url-cmd-output]]
    [source,shell]
    ----
    $ gradle verifyUrl
    
    include::{snippetsPath}/developingPlugins/testingPlugins/tests/verifyUrl.out[]
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 22:49:20 UTC 2024
    - 16K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/composite_builds.adoc

    Executing a task will result in task dependencies being executed, as well as those tasks required to build dependency artifacts from other included builds.
    
    You can call a task in an included build using a fully qualified path, for example, `:included-build-name:project-name:taskName`.
    Project and task names can be <<command_line_interface.adoc#sec:name_abbreviation,abbreviated>>.
    
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 02:23:19 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top