Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for getInputProperties (0.26 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/BeforeExecutionContext.java

            return Optional.ofNullable(beforeExecutionState);
        }
    
        @Override
        public ImmutableSortedMap<String, ValueSnapshot> getInputProperties() {
            return getBeforeExecutionState()
                .map(BeforeExecutionState::getInputProperties)
                .orElseGet(super::getInputProperties);
        }
    
        @Override
        public ImmutableSortedMap<String, CurrentFileCollectionFingerprint> getInputFileProperties() {
    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/DefaultExecutionStateChangeDetector.java

                lastExecution.getInputProperties().keySet(),
                thisExecution.getInputProperties().keySet(),
                "Input",
                executable);
            ChangeContainer inputPropertyValueChanges = new InputValueChanges(
                lastExecution.getInputProperties(),
                thisExecution.getInputProperties(),
                executable);
    
            // Capture input files state
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/IdentityContext.java

        }
    
        protected IdentityContext(IdentityContext parent) {
            this(parent, parent.getInputProperties(), parent.getInputFileProperties(), parent.getIdentity());
        }
    
        /**
         * All currently known input properties.
         */
        public ImmutableSortedMap<String, ValueSnapshot> getInputProperties() {
            return inputProperties;
        }
    
        /**
         * All currently known input file properties.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/resources/CharSourceBackedTextResource.java

        }
    
        @Override
        public File asFile() {
            throw new UnsupportedOperationException("Cannot create file for char source " + charSource);
        }
    
        @Override
        public Object getInputProperties() {
            return null;
        }
    
        @Override
        public FileCollection getInputFiles() {
            return null;
        }
    
        @Override
        public TaskDependency getBuildDependencies() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 27 15:36:08 UTC 2018
    - 2.5K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/ExecutionInputState.java

         */
        ImmutableList<ImplementationSnapshot> getAdditionalImplementations();
    
        /**
         * The non-file inputs.
         */
        ImmutableSortedMap<String, ValueSnapshot> getInputProperties();
    
        /**
         * The file inputs.
         */
        ImmutableSortedMap<String, ? extends FileCollectionFingerprint> getInputFileProperties();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:29 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AbstractCaptureStateBeforeExecutionStep.java

            ImmutableSortedMap<String, ValueSnapshot> previousInputPropertySnapshots = previousExecutionState
                .map(ExecutionInputState::getInputProperties)
                .orElse(ImmutableSortedMap.of());
            ImmutableSortedMap<String, ? extends FileCollectionFingerprint> previousInputFileFingerprints = previousExecutionState
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/StoreExecutionStateStep.java

                return beforeExecutionState.getAdditionalImplementations();
            }
    
            @Override
            public ImmutableSortedMap<String, ValueSnapshot> getInputProperties() {
                return beforeExecutionState.getInputProperties();
            }
    
            @Override
            public ImmutableSortedMap<String, CurrentFileCollectionFingerprint> getInputFileProperties() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/TaskProperties.java

        /**
         * The lifecycle aware values.
         */
        Iterable<? extends LifecycleAwareValue> getLifecycleAwareValues();
    
        /**
         * Input properties.
         */
        ImmutableSortedSet<InputPropertySpec> getInputProperties();
    
        /**
         * Input file properties.
         *
         * It is guaranteed that all the {@link InputFilePropertySpec}s have a name and that the names are unique.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 23:32:26 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/resources/TextResource.java

         * Not typically used directly.
         *
         * @return the input properties registered when this resource is used as task input
         */
        @Nullable
        @Optional
        @Input
        Object getInputProperties();
    
        /**
         * Returns the input files registered when this resource is used as task input.
         * Not typically used directly.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 10 09:43:44 UTC 2018
    - 3.1K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/AbstractInputExecutionState.java

        @Override
        public ImmutableList<ImplementationSnapshot> getAdditionalImplementations() {
            return additionalImplementations;
        }
    
        @Override
        public ImmutableSortedMap<String, ValueSnapshot> getInputProperties() {
            return inputProperties;
        }
    
        @Override
        public ImmutableSortedMap<String, C> getInputFileProperties() {
            return inputFileProperties;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:29 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top