Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 268 for propertyNames (0.22 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/DefaultInputFileChanges.java

            super(previous, current, TITLE);
        }
    
        @Override
        public boolean accept(String propertyName, ChangeVisitor visitor) {
            CurrentFileCollectionFingerprint currentFileCollectionFingerprint = current.get(propertyName);
            FileCollectionFingerprint previousFileCollectionFingerprint = previous.get(propertyName);
            FingerprintCompareStrategy compareStrategy = determineCompareStrategy(currentFileCollectionFingerprint);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/GetInputFilesVisitor.java

            FileNormalizer normalizer = FileParameterUtils.normalizerOrDefault(fileNormalizer);
            specs.add(new DefaultInputFilePropertySpec(
                propertyName,
                normalizer,
                new PropertyFileCollection(ownerDisplayName, propertyName, "input", actualValue),
                value,
                behavior,
                normalizeDirectorySensitivity(normalizer, directorySensitivity),
                lineEndingSensitivity
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/DefaultOverlappingOutputDetector.java

            for (Map.Entry<String, FileSystemSnapshot> entry : current.entrySet()) {
                String propertyName = entry.getKey();
                FileSystemSnapshot currentSnapshot = entry.getValue();
                FileSystemSnapshot previousSnapshot = previous.getOrDefault(propertyName, FileSystemSnapshot.EMPTY);
                // If the root hashes are the same there are no overlapping outputs
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/IntegrationTestBuildContext.java

        }
    
        protected static TestFile file(String propertyName, String defaultPath) {
            TestFile testFile = optionalFile(propertyName);
            if (testFile != null) {
                return testFile;
            }
            if (defaultPath == null) {
                throw new RuntimeException("You must set the '" + propertyName + "' property to run the integration tests.");
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/project/DynamicLookupRoutine.java

    public interface DynamicLookupRoutine {
        @Nullable Object property(DynamicObject receiver, String propertyName) throws MissingPropertyException;
        @Nullable Object findProperty(DynamicObject receiver, String propertyName);
        void setProperty(DynamicObject receiver, String name, @Nullable Object value);
        boolean hasProperty(DynamicObject receiver, String propertyName);
        @Nullable Map<String, ?> getProperties(DynamicObject receiver);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 09:49:31 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/DefaultValidatingProperty.java

    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)
  7. 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)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/impl/DefaultOutputSnapshotter.java

                public void visitOutputProperty(String propertyName, TreeType type, UnitOfWork.OutputFileValueSupplier value) {
                    FileSystemSnapshot snapshot;
                    try {
                        snapshot = fileCollectionSnapshotter.snapshot(value.getFiles()).getSnapshot();
                    } catch (Exception ex) {
                        throw new OutputFileSnapshottingException(propertyName, ex);
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/FileParameterUtils.java

            while (fileProperties.hasNext()) {
                T propertySpec = fileProperties.next();
                String propertyName = propertySpec.getPropertyName();
                if (!names.add(propertyName)) {
                    throw new IllegalArgumentException(String.format("Multiple %s file properties with name '%s'", displayName, propertyName));
                }
                builder.add(propertySpec);
            }
            return builder.build();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/model/annotations/AbstractInputFilePropertyAnnotationHandler.java

            if (!propertyMetadata.hasAnnotationForCategory(NORMALIZATION)) {
                validationContext.visitPropertyProblem(problem -> {
                    String propertyName = propertyMetadata.getPropertyName();
                    problem
                        .forProperty(propertyName)
                        .id(MISSING_NORMALIZATION_ID.getName(), MISSING_NORMALIZATION_ID.getDisplayName(), MISSING_NORMALIZATION_ID.getGroup()) // TODO (donat) missing test coverage
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top