Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ImplementationVisitor (0.19 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AbstractCaptureStateBeforeExecutionStep.java

                newInputs.getAllFileFingerprints(),
                unfilteredOutputSnapshots,
                overlappingOutputs
            );
        }
    
        private static class ImplementationsBuilder implements UnitOfWork.ImplementationVisitor {
            private final ClassLoaderHierarchyHasher classLoaderHierarchyHasher;
            private ImplementationSnapshot implementation;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ValidateStep.java

            MutableReference<Class<?>> workClass = MutableReference.empty();
            work.visitImplementations(new UnitOfWork.ImplementationVisitor() {
                @Override
                public void visitImplementation(Class<?> implementation) {
                    workClass.set(GeneratedSubclasses.unpack(implementation));
                }
    
                @Override
    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