Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for withValidationContext (0.28 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/impl/DefaultExecutionEngine.java

                @Override
                public void forceNonIncremental(String nonIncremental) {
                    this.nonIncrementalReason = nonIncremental;
                }
    
                @Override
                public void withValidationContext(WorkValidationContext validationContext) {
                    this.validationContext = validationContext;
                }
    
                @Override
                public Result execute() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 16:13:07 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/tasks/execution/ExecuteActionsTaskExecuter.java

            ExecutionEngine.Request request = executionEngine.createRequest(work);
            context.getTaskExecutionMode().getRebuildReason().ifPresent(request::forceNonIncremental);
            request.withValidationContext(context.getValidationContext());
            Result result = request.execute();
            result.getExecution().ifSuccessfulOrElse(
                success -> state.setOutcome(convertOutcome(success.getOutcome())),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/ExecutionEngine.java

             */
            void forceNonIncremental(String nonIncremental);
    
            /**
             * Set the validation context to use during execution.
             */
            void withValidationContext(WorkValidationContext validationContext);
    
            /**
             * Execute the unit of work using available optimizations like
             * up-to-date checks, build cache and incremental execution.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:17 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top