Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ClassLoaderSourceGroovyCallInterceptorsProvider (0.42 sec)

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

            return new CompositeGroovyCallInterceptorsProvider(this, other);
        }
    
        @NonNullApi
        class ClassLoaderSourceGroovyCallInterceptorsProvider implements GroovyCallInterceptorsProvider {
    
            private final Lazy<List<FilterableCallInterceptor>> interceptors;
    
            public ClassLoaderSourceGroovyCallInterceptorsProvider(ClassLoader classLoader) {
                this(classLoader, "");
            }
    
            @VisibleForTesting
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 13:46:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/internal/classpath/CompositeCallInterceptionTest.groovy

    import static org.gradle.internal.classpath.BasicCallInterceptionTestInterceptorsDeclaration.TEST_GENERATED_CLASSES_PACKAGE
    import static org.gradle.internal.classpath.GroovyCallInterceptorsProvider.ClassLoaderSourceGroovyCallInterceptorsProvider
    import static org.gradle.internal.classpath.InstrumentedClasses.nestedClassesOf
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 11:38:52 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top