Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for outOfDate (1.81 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. subprojects/core/src/main/java/org/gradle/deployment/internal/DefaultDeploymentRegistry.java

                            handle.start(deployment.getDeployment());
                            if (pendingChanges.hasRemainingChanges()) {
                                deployment.outOfDate();
                            }
                            deployments.put(name, deployment);
                            return handle;
                        }
                    });
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	if !updateAndVerify(t, testContext, registry, podA) {
    		t.Errorf("Unexpected error updating podA")
    	}
    
    	// forbid creation again
    	registry.UpdateStrategy.(*testRESTStrategy).allowCreateOnUpdate = false
    
    	// outofDate
    	_, _, err = registry.Update(testContext, podAWithResourceVersion.Name, rest.DefaultUpdatedObjectInfo(podAWithResourceVersion), rest.ValidateAllObjectFunc, rest.ValidateAllObjectUpdateFunc, false, &metav1.UpdateOptions{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
Back to top