Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for HasAnnotation (0.35 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

                    for (Class<? extends Annotation> annotation : lifecycleHandler.getAnnotations()) {
                        boolean implementationHasAnnotation = inspector.hasAnnotation(instance.getClass(), annotation);
                        boolean declaredWithAnnotation = inspector.hasAnnotation(serviceType, annotation);
                        if (implementationHasAnnotation && !declaredWithAnnotation) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. pkg/controller/volume/persistentvolume/pv_controller.go

    		// Set AnnBoundByController if it is not set yet
    		if !metav1.HasAnnotation(claimClone.ObjectMeta, storagehelpers.AnnBoundByController) {
    			metav1.SetMetaDataAnnotation(&claimClone.ObjectMeta, storagehelpers.AnnBoundByController, "yes")
    		}
    	}
    
    	// Set AnnBindCompleted if it is not set yet
    	if !metav1.HasAnnotation(claimClone.ObjectMeta, storagehelpers.AnnBindCompleted) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

        }
    
        private static boolean hasNestedAnnotation(PropertyMetadata property) {
            return NESTED_ANNOTATION_TYPES.stream().anyMatch(property::hasAnnotation);
        }
    
        private static boolean isEagerAttachProperty(PropertyMetadata property) {
            // Property is readable and without a setter of property type and getter is final, so attach owner eagerly in constructor
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
Back to top