Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 173 for propertyNames (0.27 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/tasks/PropertyFileCollection.java

        private final String type;
        private final String propertyName;
        private final FileCollectionInternal files;
        private String displayName;
    
        public PropertyFileCollection(String ownerDisplayName, String propertyName, String type, FileCollectionInternal files) {
            this.ownerDisplayName = ownerDisplayName;
            this.type = type;
            this.propertyName = propertyName;
            this.files = files;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 03 07:26:08 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultProviderFactory.java

        @Override
        public Provider<String> systemProperty(String propertyName) {
            return systemProperty(Providers.of(propertyName));
        }
    
        @Override
        public Provider<String> systemProperty(Provider<String> propertyName) {
            return of(
                SystemPropertyValueSource.class,
                spec -> spec.getParameters().getPropertyName().set(propertyName)
            );
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/pointers/KtFirJavaSyntheticPropertySymbolPointer.kt

        private val propertyName: Name,
        private val isSynthetic: Boolean,
    ) : KaFirMemberSymbolPointer<KaSyntheticJavaPropertySymbol>(ownerPointer) {
        override fun KaFirSession.chooseCandidateAndCreateSymbol(
            candidates: FirScope,
            firSession: FirSession,
        ): KaSyntheticJavaPropertySymbol? {
            val syntheticProperty = candidates.getProperties(propertyName)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/binding/ManagedPropertyMethodBinding.java

        private final String propertyName;
    
        public ManagedPropertyMethodBinding(WeaklyTypeReferencingMethod<?, ?> source, String propertyName, PropertyAccessorType accessorType) {
            super(source, Preconditions.checkNotNull(accessorType));
            this.propertyName = propertyName;
        }
    
        public String getPropertyName() {
            return propertyName;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top