Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 281 for propertyNames (0.22 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/annotations/impl/DefaultPropertyAnnotationMetadata.java

        private final String propertyName;
        private final Method getter;
        private final TypeToken<?> declaredType;
        private final ImmutableMap<AnnotationCategory, Annotation> annotationsByCategory;
        private final ImmutableMap<Class<? extends Annotation>, Annotation> annotationsByType;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ModelPropertyExtractionContext.java

        private final String propertyName;
        private Map<PropertyAccessorType, PropertyAccessorExtractionContext> accessors;
    
        public ModelPropertyExtractionContext(String propertyName) {
            this.propertyName = propertyName;
            this.accessors = Maps.newEnumMap(PropertyAccessorType.class);
        }
    
        public String getPropertyName() {
            return propertyName;
        }
    
        public boolean isReadable() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/binding/DefaultStructBindingsStore.java

                        continue;
                    }
    
                    ModelType<?> propertyType = determineManagedPropertyType(extractionContext, propertyName, accessorBindings);
                    ModelSchema<?> propertySchema = schemaStore.getSchema(propertyType);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 29.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/RuntimePropertyResolver.kt

        private
        fun getterName(propertyName: String) = "get" + capitalize(propertyName)
    
        private
        fun setterName(propertyName: String) = "set" + capitalize(propertyName)
    
        private
        fun capitalize(propertyName: String) = propertyName.replaceFirstChar {
            if (it.isLowerCase()) it.uppercaseChar() else it
        }
    }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 17:34:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/extensions/property/InstrumentedPropertiesResourceGenerator.java

            private final List<ReplacedAccessor> replacedAccessors;
    
            public UpgradedProperty(String containingType, String propertyName, String methodName, String methodDescriptor, List<ReplacedAccessor> replacedAccessors) {
                this.containingType = containingType;
                this.propertyName = propertyName;
                this.methodName = methodName;
                this.methodDescriptor = methodDescriptor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/NestedValidationUtil.java

         * requirements.
         *
         * @param validationContext the validation context
         * @param propertyName the name of the property
         * @param beanType the type of the bean
         */
        public static void validateBeanType(
            TypeValidationContext validationContext,
            String propertyName,
            Class<?> beanType
        ) {
            getUnsupportedReason(beanType).ifPresent(reason ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 09:10:37 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AbstractSkipEmptyWorkStep.java

                // And being empty archives is not reflected in the fingerprint.
                return hasEmptyFingerprints(sourceFileProperties, propertyName -> !propertiesRequiringIsEmptyCheck.contains(propertyName))
                    && hasEmptyInputFileCollections(work, propertiesRequiringIsEmptyCheck::contains);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:46:24 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/PropertyVisitor.java

    public interface PropertyVisitor {
        default void visitInputFileProperty(String propertyName, boolean optional, InputBehavior behavior, DirectorySensitivity directorySensitivity, LineEndingSensitivity lineEndingSensitivity, @Nullable FileNormalizer fileNormalizer, PropertyValue value, InputFilePropertyType filePropertyType) {}
    
        default void visitInputProperty(String propertyName, PropertyValue value, boolean optional) {}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:21 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/sources/SystemPropertyValueSource.java

        @Nullable
        @Override
        public String obtain() {
            @Nullable String propertyName = propertyNameOrNull();
            if (propertyName == null) {
                return null;
            }
            return System.getProperty(propertyName);
        }
    
        @Override
        public String getDisplayName() {
            return String.format("system property '%s'", propertyNameOrNull());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/GroovyCodecs.kt

                if (targetMetadata.hasProperty(null, propertyName) == null) {
                    if (propertyName == "class") {
                        return javaClass
                    }
                    throw MissingPropertyException(propertyName)
                }
                scriptReferenced()
            }
    
            override fun setProperty(propertyName: String, newValue: Any?) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top