Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 83 for PropertyName (0.16 sec)

  1. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildParams.kt

    
    fun Project.gradleProperty(propertyName: String) = providers.gradleProperty(propertyName)
    
    
    fun Project.systemProperty(propertyName: String) = providers.systemProperty(propertyName)
    
    
    fun Project.environmentVariable(propertyName: String) = providers.environmentVariable(propertyName)
    
    
    fun Project.propertyFromAnySource(propertyName: String) = gradleProperty(propertyName)
        .orElse(systemProperty(propertyName))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. 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)
  3. src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java

        }
    
        @Override
        public boolean hasPropertyDesc(final String propertyName) {
            assertArgumentNotEmpty("propertyName", propertyName);
    
            return propertyDescCache.get(propertyName) != null;
        }
    
        @Override
        public PropertyDesc getPropertyDesc(final String propertyName) {
            assertArgumentNotEmpty("propertyName", propertyName);
    
            final PropertyDesc pd = propertyDescCache.get(propertyName);
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/annotations/impl/DefaultTypeAnnotationMetadataStore.java

            public PropertyAnnotationMetadataBuilder(String propertyName, Method getter, TypeValidationContext validationContext) {
                this.propertyName = propertyName;
                this.getter = getter;
                this.validationContext = validationContext;
            }
    
            public String getPropertyName() {
                return propertyName;
            }
    
            public Method getGetter() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/internal/project/taskfactory/TaskPropertyNamingIntegrationTest.groovy

                            void visitOutputFileProperty(String propertyName, boolean optional, PropertyValue value, OutputFilePropertyType filePropertyType) {
                                outputFiles[propertyName] = layout.files(value)
                            }
                        })
                        inputFiles.each { propertyName, value ->
                            println "Input: \${propertyName} \${value.files*.name.sort()}"
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 21 19:38:50 UTC 2022
    - 16.8K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart2IntegrationTest.groovy

                solutions == [ 'Use type \'java.net.URI\' instead' ]
                additionalData.asMap == [
                    'typeName' : 'MyTask',
                    'propertyName' : 'direct',
                ]
            }
            verifyAll(receivedProblem(1)) {
                fqid == 'validation:property-validation:unsupported-value-type-for-input'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/PropertyAccessorTypeTest.groovy

            Introspector.decapitalize(isGetterName.substring(2)) == propertyName
    
            PropertyAccessorType.isSetterName(setterName)
            PropertyAccessorType.SETTER.propertyNameFor(setterName) == propertyName
            Introspector.decapitalize(setterName.substring(3)) == propertyName
    
            where:
            getGetterName    | isGetterName    | setterName       | propertyName
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart1IntegrationTest.groovy

                    'Mark it as @Internal',
                ]
                additionalData.asMap == [
                    'parentPropertyName' : 'tree',
                    'typeName' : 'MyTask',
                    'propertyName' : 'nonAnnotated',
                ]
            }
    
        }
    
        def "task cannot have property with annotation @#ann.simpleName"() {
            javaTaskSource << """
                import org.gradle.api.*;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/extensions/property/PropertyUpgradeAnnotatedMethodReader.java

            String propertyName = getPropertyName(method);
            Type originalType = extractOriginalType(method, annotation);
            String methodName;
            switch (accessorType) {
                case GETTER:
                    String capitalize = propertyName.substring(0, 1).toUpperCase(Locale.ROOT) + propertyName.substring(1);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  10. build-logic/packaging/src/test/kotlin/gradlebuild/instrumentation/InstrumentationMetadataPluginTest.kt

                "{\"containingType\":\"org.gradle.api.Task\",\"propertyName\":\"enabled\"},{\"containingType\":\"org.gradle.api.Task\",\"propertyName\":\"dependencies\"}]")
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:55:53 UTC 2023
    - 10.9K bytes
    - Viewed (0)
Back to top