Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 404 for evacuatedX (0.46 sec)

  1. 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)
  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. 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)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/InitScriptApi.kt

         *
         * The given `baseDir` path is evaluated as per [KotlinInitScript.file].
         *
         * The returned file tree is lazy, so that it scans for files only when the contents of the file tree are
         * queried. The file tree is also live, so that it scans for files each time the contents of the file tree are
         * queried.
         *
         * @param baseDir The base directory of the file tree. Evaluated as per [KotlinInitScript.file].
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  5. 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)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/SettingsScriptApi.kt

         *
         * The given `baseDir` path is evaluated as per [file].
         *
         * The returned file tree is lazy, so that it scans for files only when the contents of the file tree are
         * queried. The file tree is also live, so that it scans for files each time the contents of the file tree are
         * queried.
         *
         * @param baseDir The base directory of the file tree. Evaluated as per [file].
         * @return The file tree.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K 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. subprojects/core-api/src/main/java/org/gradle/api/Script.java

         * Relative paths are resolved relative to the directory containing this script.</p>
         *
         * @param paths The contents of the file collection. Evaluated as per {@link #files(Object...)}.
         * @param configureClosure The closure to use to configure the file collection.
         * @return the configured file tree. Never returns null.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/tasks/TaskInputs.java

         *
         * @param paths The input files. The given paths are evaluated as per {@link org.gradle.api.Project#files(Object...)}.
         * @return a property builder to further configure the property.
         */
        TaskInputFilePropertyBuilder files(Object... paths);
    
        /**
         * Registers some input file for this task.
         *
         * @param path The input file. The given path is evaluated as per {@link org.gradle.api.Project#file(Object)}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 26 16:09:35 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  10. 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)
Back to top