Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getPropertyNameFor (0.16 sec)

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

    import org.gradle.internal.fingerprint.CurrentFileCollectionFingerprint;
    import org.gradle.internal.fingerprint.FileCollectionFingerprint;
    
    public interface IncrementalInputProperties {
        String getPropertyNameFor(Object value);
        InputFileChanges nonIncrementalChanges(ImmutableSortedMap<String, FileCollectionFingerprint> previous, ImmutableSortedMap<String, CurrentFileCollectionFingerprint> current);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/IncrementalInputChanges.java

            return getObjectFileChanges(parameter);
        }
    
        private Iterable<FileChange> getObjectFileChanges(Object parameter) {
            String propertyName = incrementalInputProperties.getPropertyNameFor(parameter);
            CollectingChangeVisitor visitor = new CollectingChangeVisitor();
            changes.accept(propertyName, visitor);
            return Cast.uncheckedNonnullCast(visitor.getChanges());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/DefaultIncrementalInputProperties.java

        public DefaultIncrementalInputProperties(ImmutableBiMap<String, Object> incrementalInputProperties) {
            this.incrementalInputProperties = incrementalInputProperties;
        }
    
        @Override
        public String getPropertyNameFor(Object propertyValue) {
            String propertyName = incrementalInputProperties.inverse().get(propertyValue);
            if (propertyName == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/NonIncrementalInputChanges.java

        }
    
        public Iterable<FileChange> getObjectFileChanges(Object parameter) {
            CurrentFileCollectionFingerprint currentFileCollectionFingerprint = currentInputs.get(incrementalInputProperties.getPropertyNameFor(parameter));
            return () -> getAllFileChanges(currentFileCollectionFingerprint).iterator();
        }
    
        @Override
        public Iterable<InputFileDetails> getAllFileChanges() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top