Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 415 for isInject (0.19 sec)

  1. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/SinceAnnotationMissingRule.java

        }
    
        private boolean isInject(JApiCompatibility member) {
            return member instanceof JApiHasAnnotations && isInject((JApiHasAnnotations) member);
        }
    
        private boolean isOverrideMethod(JApiCompatibility member) {
            return member instanceof JApiMethod && isOverride((JApiMethod) member);
        }
    
        /**
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Sep 21 16:02:23 GMT 2023
    - 2.7K bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/BinaryBreakingChangesRule.java

                    // The changes about the interface's methods will be reported already
                    return null;
                }
                if (member instanceof JApiConstructor) {
                    if (isInject((JApiConstructor) member)) {
                        // We do not consider injecting constructors public API
                        return null;
                    }
                }
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Oct 06 19:15:15 GMT 2022
    - 3.1K bytes
    - Viewed (0)
  3. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/IncubatingMissingRule.java

            if (member instanceof JApiMethod || member instanceof JApiField || member instanceof JApiClass || member instanceof JApiConstructor) {
                if (!isIncubating((JApiHasAnnotations) member) && !isInject((JApiHasAnnotations) member)) {
                    return violationError(member);
                }
            }
            return null;
        }
    
        private Violation violationError(JApiCompatibility member) {
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Oct 06 19:15:15 GMT 2022
    - 1.7K bytes
    - Viewed (0)
  4. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/AbstractGradleViolationRule.groovy

        }
    
        private static boolean isAnnotatedWithInject(JApiHasAnnotations member) {
            member.annotations*.fullyQualifiedName.any { it == Inject.name }
        }
    
        protected static boolean isInject(JApiHasAnnotations member) {
            return isAnnotatedWithInject(member)
        }
    
        protected boolean isIncubating(JApiHasAnnotations member) {
            if (member instanceof JApiClass) {
    Groovy
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Apr 23 08:40:36 GMT 2024
    - 10.4K bytes
    - Viewed (0)
  5. api/maven-api-di/src/main/java/org/apache/maven/api/di/Inject.java

    import static java.lang.annotation.ElementType.*;
    import static java.lang.annotation.RetentionPolicy.RUNTIME;
    
    @Target({FIELD, CONSTRUCTOR, METHOD})
    @Retention(RUNTIME)
    @Documented
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Feb 05 09:45:47 GMT 2024
    - 1.1K bytes
    - Viewed (0)
  6. istioctl/pkg/kubeinject/testdata/inject-values.yaml

    Xiaopeng Han <******@****.***> 1686841337 +0800
    Others
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Thu Jun 15 15:02:17 GMT 2023
    - 23 bytes
    - Viewed (0)
  7. istioctl/pkg/kubeinject/testdata/inject-config.yaml

    Xiaopeng Han <******@****.***> 1686841337 +0800
    Others
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Thu Jun 15 15:02:17 GMT 2023
    - 255 bytes
    - Viewed (0)
  8. maven-core/src/main/resources/META-INF/maven/org.apache.maven.api.di.Inject

    Guillaume Nodet <******@****.***> 1714054416 +0200
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 4.2K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/META-INF/maven/org.apache.maven.api.di.Inject

    Guillaume Nodet <******@****.***> 1712816575 +0200
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 55 bytes
    - Viewed (0)
  10. istioctl/pkg/kubeinject/testdata/inject-config-inline.yaml

    Xiaopeng Han <******@****.***> 1686841337 +0800
    Others
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Thu Jun 15 15:02:17 GMT 2023
    - 202 bytes
    - Viewed (0)
Back to top