Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for maybeInspect (0.1 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/plugins/DefaultPluginRegistry.java

            return new DefaultPluginRegistry(this, pluginInspector, lookupScope);
        }
    
        @Nullable
        @Override
        public <T> PluginImplementation<T> maybeInspect(Class<T> clazz) {
            if (parent != null) {
                PluginImplementation<T> implementation = parent.maybeInspect(clazz);
                if (implementation != null) {
                    return implementation;
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:06 UTC 2021
    - 10.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/plugins/PluginRegistry.java

        <T> PluginImplementation<T> inspect(Class<T> clazz);
    
        /**
         * Extracts plugin information for the given class, if known to this registry.
         */
        @Nullable
        <T> PluginImplementation<T> maybeInspect(Class<T> clazz);
    
        /**
         * Locates the plugin with the given id. Note that the id of the result may be different to the requested id.
         */
        @Nullable
        PluginImplementation<?> lookup(PluginId pluginId);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 25 08:50:30 UTC 2021
    - 1.6K bytes
    - Viewed (0)
Back to top