Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 752 for Sall (0.06 sec)

  1. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/client/DefaultDaemonConnectorTest.groovy

            given:
            startIdleDaemon()
            assert !registry.all.empty
    
            connector.connector.connect(_ as Address) >> { throw new ConnectException("Problem!", new RuntimeException("foo")) }
    
            when:
            def connection = connector.maybeConnect( { true } as ExplainingSpec)
    
            then:
            !connection
    
            registry.all.empty
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskSelectionIntegrationTest.groovy

    class TaskSelectionIntegrationTest extends AbstractIntegrationSpec {
    
        @ToBeFixedForIsolatedProjects(because = "subprojects")
        def "given an unqualified name traverse project tree from current project and select all tasks with matching name"() {
            createDirs("a", "b", "a/a", "b/b")
            settingsFile << "include 'a', 'b', 'a:a', 'b:b'"
    
            buildFile << """
                subprojects {
                    task thing
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    * A `File` — used as a file path
    * A `FileCollection` or `FileTree` — all files in the collection are included in the copy
    * A task — the files or directories that form a task's <<incremental_build.adoc#sec:task_inputs_outputs,defined outputs>> are included
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/operations/BuildOperationExecutor.java

        /**
         * Submits an arbitrary number of runnable operations, created synchronously by the scheduling action, to be executed in the global
         * build operation thread pool. Operations may execute concurrently. Blocks until all operations are complete.
         *
         * <p>Actions are not permitted to access any mutable project state. Generally, this is preferred.</p>
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r410/GradleBuildModelCrossVersionSpec.groovy

            buildC.rootProject.name == "buildC"
            buildC.projects.size() == 1
            buildC.includedBuilds.empty
        }
    
        @TargetGradleVersion(">=4.10")
        def "root build model exposes all builds that participate in the composite when nested included builds are present"() {
            given:
            singleProjectBuildInRootFolder("root") {
                settingsFile << """
                    rootProject.name = 'root'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/listener/ClosureBackedMethodInvocationDispatch.java

                if (closure.getMaximumNumberOfParameters() < parameters.length) {
                    parameters = Arrays.asList(parameters).subList(0, closure.getMaximumNumberOfParameters()).toArray();
                }
                closure.call(parameters);
            }
        }
    
        @Override
        public boolean equals(Object o) {
            if (this == o) {
                return true;
            }
            if (o == null || getClass() != o.getClass()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 12:43:02 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/util/AdHocPerformanceScenario.kt

                display = ParameterDisplay.PROMPT,
                allowEmpty = false,
                description = "The test project to use. E.g. largeJavaMultiProject"
            )
            param("channel", "adhoc")
            param("checks", "all")
            text("runs", "10", display = ParameterDisplay.PROMPT, allowEmpty = false)
            text("warmups", "3", display = ParameterDisplay.PROMPT, allowEmpty = false)
            text(
                "scenario",
                "",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/child/WorkerLogEventListener.java

            WorkerLoggingProtocol defaultProtocol = workerLoggingProtocol.getAndSet(newLoggingProtocol);
            try {
                return callable.call();
            } finally {
                workerLoggingProtocol.getAndSet(defaultProtocol);
            }
        }
    
        @Override
        public void onOutput(OutputEvent event) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. testing/soak/build.gradle.kts

            because("Kotlin soak tests use AssertJ")
        }
    
        integTestDistributionRuntimeOnly(project(":distributions-full"))
    }
    
    tasks.register("soakTest") {
        description = "Run all soak tests defined in the :soak subproject"
        group = "CI Lifecycle"
        dependsOn(":soak:forkingIntegTest")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/time/src/main/java/org/gradle/internal/time/Time.java

        }
    
        /**
         * Measures elapsed time.
         *
         * Timers use System.nanoTime() to measure elapsed time,
         * and are therefore not synchronized with {@link #clock()} or the system wall clock.
         *
         * System.nanoTime() does not consider time elapsed while the system is in hibernation.
         * Therefore, timers effectively measure the elapsed time, of which the system was awake.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top