Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for bootstrapInstrumentationOnly (0.36 sec)

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

            private static String getBoostrapMethodName(BytecodeInterceptorFilter interceptorFilter) {
                switch (interceptorFilter) {
                    case INSTRUMENTATION_ONLY:
                        return "bootstrapInstrumentationOnly";
                    case ALL:
                        return "bootstrapAll";
                    default:
                        throw new UnsupportedOperationException("Unknown interceptor request: " + interceptorFilter);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 01:16:36 UTC 2024
    - 32K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/Instrumented.java

         * @return the produced CallSite
         * @see IndyInterface
         */
        // Called by generated code
        @SuppressWarnings("unused")
        public static java.lang.invoke.CallSite bootstrapInstrumentationOnly(MethodHandles.Lookup caller, String callType, MethodType type, String name, int flags) {
            return getGroovyCallDecorator(BytecodeInterceptorFilter.INSTRUMENTATION_ONLY).maybeDecorateIndyCallSite(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 34.2K bytes
    - Viewed (0)
Back to top