Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 505 for fileCollections (0.35 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/language/cpp/internal/DefaultCppComponent.java

    public abstract class DefaultCppComponent extends DefaultNativeComponent implements CppComponent, ComponentWithNames {
        private final FileCollection cppSource;
        private final String name;
        private final ConfigurableFileCollection privateHeaders;
        private final FileCollection privateHeadersWithConvention;
        private final Property<String> baseName;
        private final Names names;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 04:34:07 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/LazilyInitializedFileCollectionTest.groovy

        }
    
        def "creates delegate on first access"() {
            expect:
            createCount == 0
    
            when:
            def files = fileCollection.files
    
            then:
            createCount == 1
            files == [new File("foo")] as Set
    
            when:
            fileCollection.files
    
            then:
            createCount == 1
            files == [new File("foo")] as Set
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/jvm/JavaModuleDetector.java

            this.fileCollectionFactory = fileCollectionFactory;
        }
    
        public FileCollection inferClasspath(boolean inferModulePath, Collection<File> classpath) {
            return inferClasspath(inferModulePath, fileCollectionFactory.fixed(classpath));
        }
    
        public FileCollection inferClasspath(boolean inferModulePath, FileCollection classpath) {
            if (classpath == null) {
                return FileCollectionFactory.empty();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/IncrementalCompilerBuilder.java

    import java.util.Map;
    
    public interface IncrementalCompilerBuilder {
        IncrementalCompiler newCompiler(TaskInternal task, FileCollection sourceFiles, FileCollection includeDirs, Map<String, String> macros, Provider<Boolean> importAware);
    
        interface IncrementalCompiler {
            <T extends NativeCompileSpec> Compiler<T> createCompiler(Compiler<T> compiler);
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/main/java/org/gradle/language/swift/SwiftBinary.java

        boolean isTestable();
    
        /**
         * Returns the Swift source files of this binary.
         */
        FileCollection getSwiftSource();
    
        /**
         * Returns the modules to use to compile this binary. Includes the module file of this binary's dependencies.
         *
         * @since 4.4
         */
        FileCollection getCompileModules();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/transform/InputArtifactDependencies.java

     *     public abstract Provider&lt;FileSystemLocation&gt; getInputArtifact();
     *
     *     {@literal @}InputArtifactDependencies
     *     public abstract FileCollection getDependencies();
     *
     *     {@literal @}Override
     *     public void transform(TransformOutputs outputs) {
     *         FileCollection dependencies = getDependencies();
     *         // Do something with the dependencies
     *     }
     * }
     * </pre>
     *
     * @since 5.3
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 05 15:49:03 UTC 2019
    - 2.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/SharedAccessorsPackageAware.kt

        implicitImports: ImplicitImports,
        classpathFingerprinter: ClasspathFingerprinter,
        classPathFiles: FileCollection
    ): List<String> {
        return implicitImports.list + "${classpathFingerprinter.sharedAccessorsPackageFor(classPathFiles)}.*"
    }
    
    
    private
    fun ClasspathFingerprinter.sharedAccessorsPackageFor(classPathFiles: FileCollection): String =
        "$sharedAccessorsPackagePrefix${fingerprintHashFor(classPathFiles)}"
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AbstractFileCollection.java

        }
    
        private static class FileCollectionElementsFactory implements Factory<Set<FileSystemLocation>> {
    
            private final FileCollection fileCollection;
    
            private FileCollectionElementsFactory(FileCollection fileCollection) {
                this.fileCollection = fileCollection;
            }
    
            @Override
            public Set<FileSystemLocation> create() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:50 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/process/internal/JavaExecHandleBuilder.java

        }
    
        private void addModularJavaRunArgs(FileCollection classpath, List<String> allArgs) {
            if (javaModuleDetector == null) {
                throw new IllegalStateException("Running a Java module is not supported in this context.");
            }
            FileCollection rtModulePath = javaModuleDetector.inferModulePath(modularity.getInferModulePath().get(), classpath);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 27 09:47:37 UTC 2023
    - 14K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/CachingDependencyResolveContext.java

            return attributes;
        }
    
        public FileCollection resolve() {
            try {
                walker.add(queue);
                return new UnionFileCollection(taskDependencyFactory, walker.findValues());
            } finally {
                queue.clear();
            }
        }
    
        /**
         * Accepts either a {@link ResolvableDependency} or {@link org.gradle.api.file.FileCollection}
         */
        public void add(Object dependency) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top