Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 161 for propertyNames (0.17 sec)

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

        private final TreeType outputType;
    
        public DefaultCacheableOutputFilePropertySpec(
            String propertyName,
            @Nullable String propertySuffix,
            FileCollectionInternal outputFiles,
            TreeType outputType
        ) {
            super(propertyName, OutputNormalizer.INSTANCE, outputFiles);
            this.propertySuffix = propertySuffix;
            this.outputType = outputType;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 15 21:46:23 UTC 2022
    - 2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/PropertyEvaluationException.java

    @Contextual
    public class PropertyEvaluationException extends GradleException {
    
        public PropertyEvaluationException(Object work, String propertyName, Throwable cause) {
            super(String.format("Error while evaluating property '%s' of %s.", propertyName, work), cause);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 16 11:28:32 UTC 2022
    - 1K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/DefaultInputPropertySpec.java

    public class DefaultInputPropertySpec extends AbstractPropertySpec implements InputPropertySpec {
        private final PropertyValue value;
    
        public DefaultInputPropertySpec(String propertyName, PropertyValue value) {
            super(propertyName);
            this.value = value;
        }
    
        @Override
        public PropertyValue getValue() {
            return value;
        }
    
        @Override
        public String toString() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 15 21:15:55 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/CaptureNonIncrementalStateBeforeExecutionStep.java

            work.visitOutputs(context.getWorkspace(), new UnitOfWork.OutputVisitor() {
                @Override
                public void visitOutputProperty(String propertyName, TreeType type, UnitOfWork.OutputFileValueSupplier value) {
                    builder.put(propertyName, FileSystemSnapshot.EMPTY);
                }
            });
            return builder.build();
        }
    
        @Nullable
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/DefaultInputFilePropertySpec.java

        public DefaultInputFilePropertySpec(
            String propertyName,
            FileNormalizer normalizer,
            FileCollectionInternal files,
            PropertyValue value,
            InputBehavior behavior,
            DirectorySensitivity directorySensitivity,
            LineEndingSensitivity lineEndingSensitivity
        ) {
            super(propertyName, normalizer, files);
            this.behavior = behavior;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 16 20:09:26 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/InstrumentedExecutionAccessListener.kt

    ) : InstrumentedExecutionAccess.Listener {
    
        override fun disallowedAtExecutionInjectedServiceAccessed(injectedServiceType: Class<*>, propertyName: String, consumer: String) {
            executionAccessChecker.disallowedAtExecutionInjectedServiceAccessed(injectedServiceType, propertyName, consumer)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/GetInputPropertiesVisitor.java

        private final ImmutableSortedSet.Builder<InputPropertySpec> inputProperties = ImmutableSortedSet.naturalOrder();
    
        @Override
        public void visitInputProperty(String propertyName, PropertyValue value, boolean optional) {
            inputProperties.add(new DefaultInputPropertySpec(propertyName, value));
        }
    
        public ImmutableSortedSet<InputPropertySpec> getProperties() {
            return inputProperties.build();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 15 21:15:56 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/ValidationAction.java

    public interface ValidationAction {
        /**
         * Validates the given property value according to some rule.
         *
         * @param propertyName
         * @param value a supplier of a non-null value - side effects are guaranteed to happen only once
         * @param context
         */
        void validate(String propertyName, @Nonnull Supplier<Object> value, PropertyValidationContext context);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 15 01:05:28 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/validation/DefaultTypeAwareProblemBuilderTest.groovy

                .typeName("foo")
                .propertyName("bar")
                .build()
    
            expect:
            DefaultTypeAwareProblemBuilder.introductionFor(Optional.of(data), true) == "Property 'bar' "
        }
    
        def "render introduction with type"() {
            given:
            def data = DefaultTypeValidationData.builder()
                .typeName("foo")
                .propertyName("bar")
                .build()
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/AbstractFilePropertySpec.java

        private final FileNormalizer normalizer;
        private final FileCollectionInternal files;
    
        public AbstractFilePropertySpec(String propertyName, FileNormalizer normalizer, FileCollectionInternal files) {
            super(propertyName);
            this.normalizer = normalizer;
            this.files = files;
        }
    
        @Override
        public FileNormalizer getNormalizer() {
            return normalizer;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 16 20:09:26 UTC 2022
    - 1.5K bytes
    - Viewed (0)
Back to top