Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for intercept_listFiles (0.51 sec)

  1. 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 File[] intercept_listFiles(@Receiver File thisFile) {
                        return new File[0];
                    }
                }
            """
    
            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)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/declarations/FileInterceptorsDeclaration.java

        @InterceptCalls
        @InstanceMethod
        public static File[] intercept_listFiles(
            @Receiver File thisFile,
            @CallerClassName String consumer
        ) {
            return Instrumented.fileListFiles(thisFile, consumer);
        }
    
        @InterceptCalls
        @InstanceMethod
        public static File[] intercept_listFiles(
            @Receiver File thisFile,
            FileFilter fileFilter,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 12:34:20 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/processor/codegen/groovy/InterceptGroovyCallsGeneratorTest.groovy

                public class FileInterceptorsDeclaration {
                    @InterceptCalls
                    @InstanceMethod
                    public static File[] intercept_listFiles(@Receiver File thisFile) {
                        return new File[0];
                    }
                }
            """
    
            when:
            Compilation compilation = compile(givenSource)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 09:48:43 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/processor/codegen/groovy/InterceptGroovyCallsResourceGeneratorTest.groovy

                public class FileInterceptorsDeclaration {
                    @InterceptCalls
                    @InstanceMethod
                    public static File[] intercept_listFiles(@Receiver File thisFile) {
                        return new File[0];
                    }
    
                    @AfterConstructor
                    @InterceptCalls
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 13:46:28 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/extensions/types/InstrumentedTypesResourceGeneratorTest.groovy

                public class InterceptorsDeclaration {
                    @InterceptCalls
                    @InstanceMethod
                    public static File[] intercept_listFiles(@Receiver File thisFile) {
                        return new File[0];
                    }
    
                    @InterceptCalls
                    @InstanceMethod
                    @InterceptInherited
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/processor/codegen/jvmbytecode/InterceptJvmCallsResourceGeneratorTest.groovy

                public class FileInterceptorsDeclaration {
                    @InterceptCalls
                    @InstanceMethod
                    public static File[] intercept_listFiles(@Receiver File thisFile) {
                        return new File[0];
                    }
                }
            """
    
            when:
            Compilation compilation = compile(givenFirstSource, givenSecondSource)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top