Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for implementsInterface (0.14 sec)

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

            this.modelRuleSourceDetector = modelRuleSourceDetector;
        }
    
        public <T> PotentialPlugin<T> inspect(Class<T> type) {
            boolean implementsInterface = Plugin.class.isAssignableFrom(type);
            boolean hasRules = this.modelRuleSourceDetector.hasRules(type);
    
            if (implementsInterface) {
                @SuppressWarnings("unchecked") Class<? extends Plugin<?>> cast = (Class<? extends Plugin<?>>) type;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 4.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-groovy/src/main/java/org/gradle/model/dsl/internal/transform/ClosureCreationInterceptingVerifier.java

        public static final Action<ClassNode> INSTANCE = new ClosureCreationInterceptingVerifier();
    
        @Override
        public void execute(ClassNode node) {
            if (node.implementsInterface(ClassHelper.GENERATED_CLOSURE_Type)) {
                RulesVisitor.visitGeneratedClosure(node);
                RuleVisitor.visitGeneratedClosure(node);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. test/fixedbugs/issue33219.go

    // compiledir
    
    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 33219: gccgo assert in "implements_interface()"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 23 12:39:03 UTC 2019
    - 249 bytes
    - Viewed (0)
Back to top