Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for intercept_getDescription (0.25 sec)

  1. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/extensions/types/InstrumentedTypesResourceGeneratorTest.groovy

                        return false;
                    }
    
                    @InterceptCalls
                    @InstanceMethod
                    @InterceptInherited
                    public static String intercept_getDescription(@Receiver Rule thisRule) {
                        return "";
                    }
                }
            """
    
            when:
            Compilation compilation = compile(givenSource)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/processor/codegen/jvmbytecode/InterceptJvmCallsResourceGeneratorTest.groovy

                public class RuleInterceptorsDeclaration {
                    @InterceptCalls
                    @InstanceMethod
                    public static String intercept_getDescription(@Receiver Rule thisRule) {
                        return "";
                    }
                }
            """
            def givenSecondSource = source """
                package org.gradle.test;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/processor/codegen/jvmbytecode/InterceptJvmCallsGeneratorTest.groovy

                public class FileInterceptorsDeclaration {
                    @InterceptCalls
                    @InstanceMethod
                    @InterceptInherited
                    public static String intercept_getDescription(@Receiver Rule thisRule) {
                        return "";
                    }
                }
            """
    
            when:
            Compilation compilation = compile(givenSource)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 19:21:09 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top