Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for outOfDate (0.1 sec)

  1. platforms/core-execution/execution/src/integTest/groovy/org/gradle/internal/execution/IncrementalExecutionIntegrationTest.groovy

                }
            }
        }
    
        ExecutionEngine.Result outOfDate(UnitOfWork unitOfWork, String... expectedReasons) {
            return outOfDate(unitOfWork, ImmutableList.<String> copyOf(expectedReasons))
        }
    
        ExecutionEngine.Result outOfDate(UnitOfWork unitOfWork, List<String> expectedReasons) {
            def result = execute(unitOfWork)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  2. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/TaskUpToDateIntegrationTest.groovy

            run myTask, '-PinputDir=inputDir2'
            then:
            if (outOfDate) {
                executedAndNotSkipped(myTask)
            } else {
                skipped(myTask)
            }
    
            where:
            inputAnnotation     | outOfDate
            InputFiles.name     | true
            InputDirectory.name | false
    
            outOfDateDescription = outOfDate ? "makes task out of date" : "leaves task up to date"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/continuous/ContinuousBuildActionExecutor.java

        ) {
            if (!deploymentRegistry.getRunningDeployments().isEmpty()) {
                // Deployments are considered outOfDate until initial execution with file watching
                for (Deployment deployment : deploymentRegistry.getRunningDeployments()) {
                    ((DeploymentInternal) deployment).outOfDate();
                }
                logger.println().println("Reloadable deployment detected. Entering continuous build.");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 17:41:07 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top