Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for FileResolver (0.18 sec)

  1. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            0 * closure._
            0 * fileResolver._
    
            when:
            def files = collection.files
    
            then:
            files as List == [file1, file2]
    
            and:
            1 * closure.call() >> ['a', 'b']
            0 * closure._
            1 * fileResolver.resolve('a') >> file1
            1 * fileResolver.resolve('b') >> file2
            0 * fileResolver._
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

    import org.gradle.api.internal.file.DefaultProjectLayout;
    import org.gradle.api.internal.file.FileCollectionFactory;
    import org.gradle.api.internal.file.FileOperations;
    import org.gradle.api.internal.file.FileResolver;
    import org.gradle.api.internal.initialization.ClassLoaderScope;
    import org.gradle.api.internal.initialization.ScriptHandlerFactory;
    import org.gradle.api.internal.initialization.ScriptHandlerInternal;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    [[lazypublishartifact_fileresolver]]
    ==== Using LazyPublishArtifact without a FileResolver is deprecated
    
    When using a LazyPublishArtifact without a FileResolver, a different file resolution strategy is used, which duplicates some logic in the FileResolver.
    
    To improve consistency, LazyPublishArtifact should be used with a FileResolver, and will require it in the future.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top