Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 295 for evacuated (0.19 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r41/InitScriptCrossVersionSpec.groovy

        def "init scripts see the root project before it is evaluated"() {
            given:
            settingsFile << """
                rootProject.name = 'root'
            """
            def initScript = file("init.gradle") << """
                rootProject { root ->
                    if (root.state.executed) {
                        throw new IllegalStateException("Root project should not be evaluated too early")
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/project/interpolation/ModelInterpolationException.java

            super("The POM expression: " + expression + " could not be evaluated. Reason: " + message, cause);
    
            this.expression = expression;
            this.originalMessage = message;
        }
    
        public ModelInterpolationException(String expression, String message) {
            super("The POM expression: " + expression + " could not be evaluated. Reason: " + message);
    
            this.expression = expression;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/runner/EvaluationResult.kt

    import org.gradle.internal.declarativedsl.language.SingleFailureResult
    import org.gradle.internal.declarativedsl.objectGraph.AssignmentTraceElement
    
    
    sealed interface EvaluationResult<out R : StepResult> {
        class Evaluated<R : StepResult>(val stepResult: R) : EvaluationResult<R>
    
        class NotEvaluated<R : StepResult>(
            val stageFailures: List<StageFailure>,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:40 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/invocation/GradleLifecycle.java

     *
     * @since 8.8
     */
    @Incubating
    public interface GradleLifecycle {
        /**
         * Adds an {@link IsolatedAction isolated action} to be called immediately before a project is evaluated.
         *
         * Any extensions added to the {@code Project} model will be available to build scripts.
         *
         * @param action The action to execute.
         * @see IsolatedAction for the requirements to isolated actions
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 21:28:22 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/parsingUtil.kt

        evaluate: FailureCollectorContext.() -> ElementResult<T>
    ): ElementResult<T> {
        val context = FailureCollectorContext()
        return evaluate(context)
    }
    
    
    internal
    fun <T> syntacticOrFailure(
        evaluate: FailureCollectorContext.() -> SyntacticResult<T>
    ): SyntacticResult<T> {
        val context = FailureCollectorContext()
        return evaluate(context)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:53:44 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/EvaluationContextTest.groovy

            then:
            1 * evaluation.evaluate() >> "result"
            result == "result"
        }
    
        def "fallback value is used when circular evaluation detected"() {
            given:
            def evaluation = Mock(TestEvaluation)
    
            when:
            def result = context().evaluate(owner) {
                context().tryEvaluate(this.owner, "fallback", evaluation)
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 20:21:33 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  7. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/DefaultDevelocityBuildLifecycleService.java

            // - `allprojects` executes eagerly before any project has been evaluated, allowing its effects
            //   to be observable from other eager configuration blocks (e.g., `subprojects { ... }`).
            // - `lifecycle.beforeProject` executes just before each project is evaluated. Therefore, its effects
            //   are not observable from eager configuration blocks, which would anyway be incompatible with
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 21:44:28 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/precompiled/PrecompiledScriptPluginAccessorSettingEvaluationTest.kt

    
    @LeaksFileHandles("Kotlin Compiler Daemon working directory")
    class PrecompiledScriptPluginAccessorSettingEvaluationTest : AbstractPrecompiledScriptPluginTest() {
    
        @Test
        fun `settings and init scripts are not evaluated when generating accessors`() {
            // given:
            val evaluationLog = file("evaluation.log")
            withFolders {
                // a precompiled script plugin contributing an extension
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Program.kt

     * - in stage 1, the [Buildscript] and [Plugins] programs are executed and their execution
     *   is assumed to affect the classpath available to the stage 2 program;
     * - in stage 2, the remaining [Script] must be evaluated against the dynamically resolved classpath and,
     *   for that reason, [stage 2 programs][Script] can only be specialized after stage 1 executes at least once;
     */
    sealed class Program {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/integration_test/custom_aggregator_op_test.py

          aggregator = custom_aggregator_op_wrapper.custom_aggregator(
              input_tensor,
              id='1',
              calibration_method=_CalibrationMethod.CALIBRATION_METHOD_MIN_MAX,
          )
          aggregator_output = self.evaluate(aggregator)
          self.assertAllEqual(aggregator_output.output, [1.0, 2.0, 3.0, 4.0, 5.0])
          self.assertEqual(aggregator_output.min, 1.0)
          self.assertEqual(aggregator_output.max, 5.0)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top