Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 170 for evacuatedX (0.18 sec)

  1. 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)
  2. 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)
  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/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)
  5. subprojects/core-api/src/main/java/org/gradle/api/tasks/OutputFiles.java

     *
     * <p>When the annotated property is a {@link java.util.Map}, then the keys of the map must be non-empty strings.
     * The values of the map will be evaluated to individual files as per
     * {@link org.gradle.api.Project#file(Object)}.</p>
     *
     * <p>
     * Otherwise the given files will be evaluated as per {@link org.gradle.api.Project#files(Object...)}.
     * Task output caching will be disabled if the outputs contain file trees.
     * </p>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 29 11:24:35 UTC 2018
    - 1.8K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/tasks/OutputDirectories.java

     *
     * <p>When the annotated property is a {@link java.util.Map}, the keys of the map must be non-empty strings.
     * The values of the map will be evaluated to individual directories as per
     * {@link org.gradle.api.Project#file(Object)}.</p>
     *
     * <p>
     * Otherwise the given directories will be evaluated as per {@link org.gradle.api.Project#files(Object...)}.
     * Task output caching will be disabled if the outputs contain file trees.
     * </p>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 29 11:24:35 UTC 2018
    - 1.8K bytes
    - Viewed (0)
  7. 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)
  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. subprojects/core-api/src/main/java/org/gradle/api/file/SourceDirectorySet.java

         * @param srcPath The source directory. This is evaluated as per {@link org.gradle.api.Project#files(Object...)}
         * @return this
         */
        SourceDirectorySet srcDir(Object srcPath);
    
        /**
         * Adds the given source directories to this set. The given directories do not need to exist. Directories that do not exist are ignored.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 06 08:25:17 UTC 2021
    - 5.7K bytes
    - Viewed (0)
Back to top