Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getValidationContext (0.3 sec)

  1. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultNodeValidator.java

            return !problems.isEmpty();
        }
    
        private WorkValidationContext validateNode(LocalTaskNode node) {
            WorkValidationContext validationContext = node.getValidationContext();
            Class<?> taskType = GeneratedSubclasses.unpackType(node.getTask());
            // We don't know whether the task is cacheable or not, so we ignore cacheability problems for scheduling
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 04 07:42:50 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ValidateStep.java

            this.warningReporter = warningReporter;
            this.delegate = delegate;
        }
    
        @Override
        public R execute(UnitOfWork work, C context) {
            WorkValidationContext validationContext = context.getValidationContext();
            work.validate(validationContext);
            context.getBeforeExecutionState()
                .ifPresent(beforeExecutionState -> validateImplementations(work, beforeExecutionState, validationContext));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top