Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 146 for propertyNames (0.21 sec)

  1. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/test/impl/DefaultTestTaskPropertiesService.java

                ) {
                    FileCollection files = resolveLeniently(value);
                    inputFileProperties.add(new DefaultInputFileProperty(propertyName, files));
                }
    
                @Override
                public void visitOutputFileProperty(
                    String propertyName,
                    boolean optional,
                    PropertyValue value,
                    OutputFilePropertyType filePropertyType
                ) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ResolveChangesStep.java

                                    throw new InvalidUserDataException("Must specify a value for incremental input property '" + propertyName + "'.");
                                }
                                builder.put(propertyName, value);
                            }
                        }
                    };
                    work.visitIdentityInputs(visitor);
                    work.visitRegularInputs(visitor);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 17:10:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/ApiExtractor.java

                for (final Map.Entry<String, Object> entry : httpClientPropertyMap.entrySet()) {
                    final String propertyName = entry.getKey();
                    if (beanDesc.hasPropertyDesc(propertyName)) {
                        final PropertyDesc propertyDesc = beanDesc.getPropertyDesc(propertyName);
                        propertyDesc.setValue(closeableHttpClient, entry.getValue());
                    } else {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/CustomLambdasTest.kt

            return outer
        }
    }
    
    
    class Outer {
        @get:Restricted
        val inner: Inner = Inner()
    
        @Configuring(propertyName = "inner")
        fun configureInner(fn: Functional) {
            fn.configure(inner)
        }
    
        @Configuring(propertyName = "inner")
        fun configureInnerWithGeneric(fn: GenericFunctional<Inner>) {
            fn.configure(inner)
        }
    }
    
    
    interface Functional {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. 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)
Back to top