Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 408 for Sall (0.03 sec)

  1. .teamcity/src/main/kotlin/common/extensions.kt

            build/tmp/teŝt files/** => $hiddenArtifactDestination/teŝt-files
            build/errorLogs/** => $hiddenArtifactDestination/errorLogs
            subprojects/internal-build-reports/build/reports/incubation/all-incubating.html => incubation-reports
            build/reports/dependency-verification/** => dependency-verification-reports
        """.trimIndent()
    
        paramsForBuildToolBuild(buildJvm, os, arch)
        params {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/internal/buildevents/BuildExceptionReporterTest.groovy

            print(output.value)
    
            then:
            output.value == """
    {failure}FAILURE: {normal}{failure}Build failed with an exception.{normal}
    
    * What went wrong:
    Could not resolve all task dependencies for org:example:1.0.
    {info}> {normal}first failure
       {info}> {normal}ultimate cause
    {info}> {normal}There is 1 more failure with an identical cause.
    
    * Try:
    $STACKTRACE
    $INFO_OR_DEBUG
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  3. 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)
  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. 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)
  8. 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)
  9. 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)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilder.java

            allowEmptySourcePath = false;
            return this;
        }
    
        /**
         * Returns a list with all Java compiler arguments as configured in this builder.
         * Returned arguments are guaranteed not to be null.
         *
         * @return a list containing all Java compiler arguments
         */
        public List<String> build() {
            args = new ArrayList<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:08 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top