Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for getAdditionalImplementations (0.22 sec)

  1. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/StoreExecutionStateStepTest.groovy

        def originMetadata = Mock(OriginMetadata)
        def beforeExecutionState = Stub(BeforeExecutionState) {
            getImplementation() >> ImplementationSnapshot.of("Test", TestHashCodes.hashCodeFrom(123))
            getAdditionalImplementations() >> ImmutableList.of()
            getInputProperties() >> ImmutableSortedMap.of()
            getInputFileProperties() >> ImmutableSortedMap.of()
        }
    
        def outputFile = file("output.txt").text = "output"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ValidateStep.java

            validateImplementation(workValidationContext, beforeExecutionState.getImplementation(), "Implementation of ", work);
            beforeExecutionState.getAdditionalImplementations()
                .forEach(additionalImplementation -> validateImplementation(workValidationContext, additionalImplementation, "Additional action of ", work));
    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