Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 109 for propertyNames (0.19 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/validation/DefaultTypeAwareProblemBuilder.java

            }
            return this;
        }
    
        @Override
        public TypeAwareProblemBuilder forProperty(String propertyName) {
            additionalData(TypeValidationDataSpec.class, data -> data.propertyName(propertyName));
            return this;
        }
    
        @Override
        public TypeAwareProblemBuilder parentProperty(@Nullable String parentProperty) {
            if (parentProperty == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/StructSchemaExtractionStrategySupport.java

                    String propertyName = propertyAccessorType.propertyNameFor(method);
                    ModelPropertyExtractionContext propertyContext = propertiesMap.get(propertyName);
                    if (propertyContext == null) {
                        propertyContext = new ModelPropertyExtractionContext(propertyName);
                        propertiesMap.put(propertyName, propertyContext);
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:46:00 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/provider/ProviderFactory.java

         *
         * @param propertyName the name of the system property
         * @return the provider for the system property, never returns null
         * @since 6.1
         */
        Provider<String> systemProperty(String propertyName);
    
        /**
         * Creates a {@link Provider} whose value is fetched from system properties using the given property name.
         *
         * @param propertyName the name of the system property
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheValueSourceIntegrationTest.groovy

                        @get:Input
                        val propertyName: Property<String>
                    }
    
                    override fun obtain(): String? = parameters.run {
                        propertiesFile.get().asFile.takeIf { it.isFile }?.inputStream()?.use {
                            java.util.Properties().apply { load(it) }
                        }?.get(propertyName.get()) as String?
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ProblemReportingCrossProjectModelAccess.kt

                onProjectsCoupled()
    
                return withDelegateDynamicCallReportingConfigurationOrder(
                    propertyName,
                    action = { tryGetProperty(propertyName) },
                    resultNotFoundExceptionProvider = { getMissingProperty(propertyName) }
                )
            }
    
            override fun invokeMethod(name: String, args: Any): Any? {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/software/internal/SoftwareTypeAnnotationHandler.java

            return true;
        }
    
        @Override
        public void visitPropertyValue(String propertyName, PropertyValue value, PropertyMetadata propertyMetadata, PropertyVisitor visitor) {
            propertyMetadata.getAnnotation(SoftwareType.class).ifPresent(softwareType ->
                visitor.visitSoftwareTypeProperty(propertyName, value, softwareType)
            );
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 19:19:32 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/model/annotations/ServiceReferencePropertyAnnotationHandler.java

        }
    
        @Override
        public boolean isPropertyRelevant() {
            return true;
        }
    
        @Override
        public void visitPropertyValue(String propertyName, PropertyValue value, PropertyMetadata propertyMetadata, PropertyVisitor visitor) {
            propertyMetadata.getAnnotation(ServiceReference.class).ifPresent(annotation -> {
                String serviceName = annotation.value();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/ProjectDelegate.kt

            delegate.beforeEvaluate(action)
    
        override fun beforeEvaluate(closure: Closure<*>) =
            delegate.beforeEvaluate(closure)
    
        override fun property(propertyName: String): Any? =
            delegate.property(propertyName)
    
        override fun buildscript(configureClosure: Closure<*>) =
            delegate.buildscript(configureClosure)
    
        override fun getProject(): Project =
            delegate.project
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:16:16 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/JsonModelWriter.kt

            property(name) { jsonString(value) }
        }
    
        private
        inline fun property(name: String, value: () -> Unit) {
            propertyName(name)
            value()
        }
    
        private
        fun propertyName(name: String) {
            simpleString(name)
            write(':')
        }
    
        private
        fun simpleString(name: String) {
            write('"')
            write(name)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/groovy/InterceptGroovyCallsGenerator.java

                String propertyName = request.getInterceptedCallable().getCallableName();
                String setterName = "set" + TextUtil.capitalize(propertyName);
                scopeExpressions.add(CodeBlock.of("$1T.writesOfPropertiesNamed($2S)", INTERCEPTED_SCOPE_CLASS, propertyName));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top