Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 753 for Sall (0.05 sec)

  1. 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)
  2. 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)
  3. .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)
  4. 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)
  5. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/UncheckedException.java

         *
         * @param callable The callable to call
         * @param <T> Callable's return type
         * @return The value returned by {@link Callable#call()}
         */
        @Nullable
        public static <T> T uncheckedCall(Callable<T> callable) {
            try {
                return callable.call();
            } catch (Exception e) {
                throw throwAsUncheckedException(e);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. 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)
  7. subprojects/core/src/main/java/org/gradle/cache/internal/CacheVersionMapping.java

                if (!versions.isEmpty()) {
                    Preconditions.checkArgument(parsedGradleVersion.compareTo(versions.lastKey()) > 0,
                        "Gradle version (%s) must be greater than all previous versions: %s", parsedGradleVersion.getVersion(), versions.keySet());
                    GradleVersion currentBaseVersion = GradleVersion.current().getBaseVersion();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 30 20:23:37 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. 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)
  9. testing/performance/src/templates/native-pch-component/build.gradle

                sources {
                    c {
                        if (project.hasProperty("usePCH")) {
                            preCompiledHeader "pch.h"
                        }
                    }
                    binaries.all {
                        if (toolChain.name == "visualCpp") {
                            cCompiler.args("/showIncludes")
                        } else {
                            cCompiler.args("-H")
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/time/src/test/groovy/org/gradle/internal/time/MonotonicClockTest.groovy

            when:
            setNanos(delta)
    
            then:
            clock.currentTime == START_MILLIS + Math.max(0, delta)
    
            where:
            delta << [0, 100, -100]
        }
    
        def "resyncs with system wall clock"() {
            when:
            setNanos(10)
    
            then:
            clock.currentTime == time(10)
    
            when:
            setNanos(15)
    
            then:
            clock.currentTime == time(15)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top