Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 249 for evacuatedX (0.13 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/ProjectConfigurationIntegrationTest.groovy

            failure.assertHasCause("Cannot run Project.afterEvaluate(Closure) when the project is already evaluated.")
        }
    
        @ToBeFixedForIsolatedProjects(because = "allprojects, evaluationDependsOn")
        def "shows deprecation warning when calling Project#afterEvaluate(Action) after the project was evaluated"() {
            buildFile '''
                allprojects { p ->
                    println "[1] Adding afterEvaluate for $p.name"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/EvaluationContext.java

    import org.gradle.api.GradleException;
    
    import javax.annotation.Nullable;
    import java.util.List;
    import java.util.Set;
    import java.util.stream.Collectors;
    
    /**
     * This class keeps track of all objects being evaluated at the moment.
     * It helps to provide nicer error messages when the evaluation enters an endless cycle (A obtains a value of B which obtains a value of A).
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 16:54:51 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/conversion/AnalysisAndConversionStepRunner.kt

                    applyReflectionToJvmObjectConversion(step.evaluationSchemaForStep, step, stepContext.targetObject, topLevelObjectReflection)
                    EvaluationResult.Evaluated(ConversionStepResult.ConversionSucceeded(analysisResult.stepResult))
                } else EvaluationResult.Evaluated(ConversionStepResult.ConversionNotApplicable(analysisResult.stepResult))
        }
    
        private
        fun <R : Any> applyReflectionToJvmObjectConversion(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:40 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. 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)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirCompileTimeConstantEvaluator.kt

            } else null
        }
    
        fun evaluateAsKtConstantValue(
            fir: FirElement,
        ): KaConstantValue? {
            val evaluated = evaluate(fir) ?: return null
    
            val value = evaluated.value
            val psi = evaluated.psi as? KtElement
            return when (evaluated.kind) {
                ConstantValueKind.Byte -> KaConstantValue.KaByteConstantValue(value as Byte, psi)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/utils/firUtils.kt

    internal fun FirExpression.asKaInitializerValue(builder: KaSymbolByFirBuilder, forAnnotationDefaultValue: Boolean): KaInitializerValue {
        val ktExpression = psi as? KtExpression
        val evaluated = FirCompileTimeConstantEvaluator.evaluateAsKtConstantValue(this)
    
        return when (evaluated) {
            null -> if (forAnnotationDefaultValue) {
                val annotationConstantValue = FirAnnotationValueConverter.toConstantValue(this, builder)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      // - 'params' - Parameter resource referred to by the policy binding being evaluated. Only populated if the policy has a ParamKind.
      // - 'namespaceObject' - The namespace object that the incoming object belongs to. The value is null for cluster-scoped resources.
      // - 'variables' - Map of composited variables, from its name to its lazily evaluated value.
      //   For example, a variable named 'foo' can be accessed as 'variables.foo'.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     *
     * <li>Finally, evaluate each <code>Project</code> by executing its <code>{@value #DEFAULT_BUILD_FILE}</code> file, if
     * present, against the project. The projects are evaluated in breadth-wise order, such that a project is evaluated
     * before its child projects. This order can be overridden by calling <code>{@link #evaluationDependsOnChildren()}</code> or by adding an
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
Back to top