Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractMinimalProvider.java

        @Deprecated
        @Override
        public final Provider<T> forUseAtConfigurationTime() {
            DeprecationLogger.deprecateMethod(Provider.class, "forUseAtConfigurationTime")
                .withAdvice("Simply remove the call.")
                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(7, "for_use_at_configuration_time_deprecation")
                .nagUser();
            return this;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 23:22:41 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/core-execution/workers/src/main/java/org/gradle/workers/WorkerExecutor.java

         * @since 5.6
         */
        WorkQueue processIsolation(Action<? super ProcessWorkerSpec> action);
    
        /**
         * Blocks until all work associated with the current build operation is complete.  Note that when using this method inside
         * a task action, it will block completion of the task action until all submitted work is complete.  This means that other
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultProvider.java

        }
    
        @Override
        protected Value<? extends T> calculateOwnValue(ValueConsumer consumer) {
            try (EvaluationContext.ScopeContext ignored = openScope()) {
                return Value.ofNullable(value.call());
            } catch (Exception e) {
                throw UncheckedException.throwAsUncheckedException(e);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 23:22:41 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. 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)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/compatibility/MultiVersionTestInterceptor.groovy

            if (versions != null) {
                return versionsFrom(versions.value() as List)
            } else if (coverage != null) {
                return versionsFrom(coverage.value().newInstance(target, target).call() as List)
            } else {
                throw new RuntimeException("Target class '$target' is not annotated with @${TargetVersions.simpleName} nor with @${TargetCoverage.simpleName}.")
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ResettableExpectations.java

     * test expectations before cleanup so they can be silenced if necessary.
     */
    public interface ResettableExpectations {
        /**
         * Resets all pending expectations after verifying them.
         * Must throw when a verification fails.
         */
        void resetExpectations();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1K bytes
    - Viewed (0)
Back to top