Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for enterInstrumentedClosure (0.26 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/InstrumentedClosuresHelper.java

        private InstrumentedClosuresHelper() {
        }
    
        @SuppressWarnings("unused") // call sites generated by instrumentation in `CallInterceptionClosureInstrumentingClassVisitor`
        public static void enterInstrumentedClosure(InstrumentableClosure thisClosure) {
            INSTANCE.enterClosure(thisClosure);
        }
    
        @SuppressWarnings("unused") // call sites generated by instrumentation in `CallInterceptionClosureInstrumentingClassVisitor`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 24 15:57:59 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/CallInterceptionClosureInstrumentingClassVisitor.java

     *     <li> Renames the {@code doCall} methods to {@code doCall$original} and adds new {@code doCall methods} that surrounds the original call with
     *          {@link InstrumentedClosuresHelper#enterInstrumentedClosure} and {@link InstrumentedClosuresHelper#leaveInstrumentedClosure}, making sure that
     *          the closure is tracked and will be taken into account when a dynamically dispatched invocation happens.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 01:16:36 UTC 2024
    - 16.9K bytes
    - Viewed (0)
Back to top