Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DefaultCacheableOutputFilePropertySpec (0.7 sec)

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

     * Everything else will use this class.
     */
    public class DefaultCacheableOutputFilePropertySpec extends AbstractFilePropertySpec implements CacheableOutputFilePropertySpec {
        private final String propertySuffix;
        private final TreeType outputType;
    
        public DefaultCacheableOutputFilePropertySpec(
            String propertyName,
            @Nullable String propertySuffix,
    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/OutputUnpacker.java

            } else {
                FileCollectionInternal outputFiles = fileCollectionFactory.resolving(unpackedValue);
                DefaultCacheableOutputFilePropertySpec filePropertySpec = new DefaultCacheableOutputFilePropertySpec(propertyName, null, outputFiles, filePropertyType.getOutputType());
                consumer.accept(filePropertySpec);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 15 21:15:56 UTC 2022
    - 9K bytes
    - Viewed (0)
Back to top