Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 80 for PropertyValue (0.23 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/PropertyVisitor.java

        default void visitInputProperty(String propertyName, PropertyValue value, boolean optional) {}
    
        default void visitOutputFileProperty(String propertyName, boolean optional, PropertyValue value, OutputFilePropertyType filePropertyType) {}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:21 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/bean/DefaultPropertyWalker.java

    import org.gradle.api.tasks.Nested;
    import org.gradle.api.tasks.Optional;
    import org.gradle.internal.UncheckedException;
    import org.gradle.internal.deprecation.DeprecationLogger;
    import org.gradle.internal.properties.PropertyValue;
    import org.gradle.internal.properties.PropertyVisitor;
    import org.gradle.internal.properties.annotations.PropertyAnnotationHandler;
    import org.gradle.internal.properties.annotations.PropertyMetadata;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/DefaultValidatingProperty.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.properties;
    
    import org.gradle.internal.properties.PropertyValue;
    
    public class DefaultValidatingProperty extends AbstractValidatingProperty {
        public DefaultValidatingProperty(String propertyName, PropertyValue value, boolean optional, ValidationAction validationAction) {
            super(propertyName, value, optional, validationAction);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 15 21:15:55 UTC 2022
    - 1004 bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/DefaultFinalizingValidatingProperty.java

    package org.gradle.api.internal.tasks.properties;
    
    import org.gradle.internal.properties.PropertyValue;
    
    public class DefaultFinalizingValidatingProperty extends AbstractValidatingProperty {
        private final PropertyValue value;
        private LifecycleAwareValue lifecycleAware;
    
        public DefaultFinalizingValidatingProperty(String propertyName, PropertyValue value, boolean optional, ValidationAction validationAction) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 15 21:15:55 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/DefaultInputFilePropertySpec.java

    import org.gradle.internal.properties.PropertyValue;
    
    import javax.annotation.Nullable;
    
    public class DefaultInputFilePropertySpec extends AbstractFilePropertySpec implements InputFilePropertySpec {
        private final InputBehavior behavior;
        private final DirectorySensitivity directorySensitivity;
        private final LineEndingSensitivity lineEndingSensitivity;
        private final PropertyValue value;
    
    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/model-core/src/main/java/org/gradle/internal/properties/StaticValue.java

    import javax.annotation.Nullable;
    
    /**
     * A {@link PropertyValue} backed by a fixed value.
     */
    public class StaticValue implements PropertyValue {
        private final Object value;
    
        public StaticValue(@Nullable Object value) {
            this.value = value;
        }
    
        public static PropertyValue of(@Nullable Object value) {
            return new StaticValue(value);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/TestProjects.groovy

        }
    
        private static void verifyGradlePropertiesSettingSpecified(Properties gradleProperties, String propertyName) {
            def propertyValue = gradleProperties.getProperty(propertyName)
            if (propertyValue == null || propertyValue.isEmpty()) {
                throw new IllegalArgumentException("Test project needs to specify ${propertyName} but did not.")
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskInputs.java

                @Nullable FileNormalizer fileNormalizer,
                PropertyValue value,
                InputFilePropertyType filePropertyType
            ) {
                hasInputs = true;
            }
    
            @Override
            public void visitInputProperty(String propertyName, PropertyValue value, boolean optional) {
                hasInputs = true;
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/DefaultIncrementalInputProperties.java

        }
    
        @Override
        public String getPropertyNameFor(Object propertyValue) {
            String propertyName = incrementalInputProperties.inverse().get(propertyValue);
            if (propertyName == null) {
                throw new InvalidUserDataException("Cannot query incremental changes: No property found for value " + propertyValue + ". Incremental properties: " + Joiner.on(", ").join(incrementalInputProperties.keySet()) + ".");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/NoOpPropertyAnnotationHandler.java

     * limitations under the License.
     */
    
    package org.gradle.internal.properties.annotations;
    
    import com.google.common.collect.ImmutableSet;
    import org.gradle.internal.properties.PropertyValue;
    import org.gradle.internal.properties.PropertyVisitor;
    
    import java.lang.annotation.Annotation;
    
    public class NoOpPropertyAnnotationHandler extends AbstractPropertyAnnotationHandler {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top