Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getCallInterceptors (0.22 sec)

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

             */
            @SuppressWarnings("unchecked")
            private static List<FilterableCallInterceptor> getInterceptorsFromClass(Class<?> interceptorsProviderClass) {
                Method getCallInterceptors;
                try {
                    getCallInterceptors = interceptorsProviderClass.getDeclaredMethod("getCallInterceptors");
                } catch (NoSuchMethodException e) {
    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/main/java/org/gradle/internal/classpath/Instrumented.java

         *
         * @deprecated This should not be called from the sources.
         */
        @SuppressWarnings("unused")
        @Deprecated
        public static List<FilterableCallInterceptor> getCallInterceptors() {
            return Arrays.asList(
                new SystemGetPropertyInterceptor(),
                new SystemSetPropertyInterceptor(),
                new SystemGetPropertiesInterceptor(),
    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