Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 118 for destinationFile (0.35 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/outputorigin/IncrementalBuildOutputOriginIntegrationTest.groovy

            given:
            buildScript """
                def w1 = tasks.create("w1", WriteProperties) {
                    destinationFile = file("w1.properties")
                    properties = [v: 1]
                }
                def w2 = tasks.create("w2", WriteProperties) {
                    destinationFile = file("w2.properties")
                    properties = [v: 1]
                }
    
                tasks.create("w").dependsOn w1, w2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 08:27:17 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/plugins/JacocoTaskExtension.java

        public File getDestinationFile() {
            return destinationFile.getOrNull();
        }
    
        /**
         * Set the provider for calculating the destination file.
         *
         * @param destinationFile Destination file provider
         * @since 4.0
         */
        public void setDestinationFile(Provider<File> destinationFile) {
            this.destinationFile.set(destinationFile);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoPluginMultiVersionIntegrationTest.groovy

                    implementation project()
                }
            }
        }
    
        task mergedReport(type: JacocoReport) {
            dependsOn test, otherTest
            executionData.from(test.jacoco.destinationFile, otherTest.jacoco.destinationFile)
            sourceDirectories.from(sourceSets.main.java.sourceDirectories)
            classDirectories.from(sourceSets.main.output)
        }
    """
            when:
            succeeds  'mergedReport'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:19:29 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTestKitIntegrationTest.groovy

                }
    
                test {
                    test.extensions.getByType(JacocoTaskExtension).destinationFile = new File("$jacocoDestinationFile")
                    systemProperty "jacocoAgentJar", configurations.jacocoRuntime.singleFile.absolutePath
                    systemProperty "jacocoDestFile", test.extensions.getByType(JacocoTaskExtension).destinationFile.absolutePath
                }
    
                gradlePlugin {
                    plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/classpath/ClasspathBuilder.java

     */
    public interface ClasspathBuilder {
    
        /**
         * Creates a Jar file using the given action to add entries to the file. If the file already exists it will be replaced.
         */
        void jar(File destinationFile, Action action);
    
        /**
         * Creates a directory using the given action to add entries to it. If the directory already exists, it will be cleared first.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 14:05:09 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/internal/install/DefaultJdkCacheDirectory.java

            }
            return operations.tarTree(operations.getResources().gzip(jdkArchive));
        }
    
        public FileLock acquireWriteLock(File destinationFile, String operationName) {
            return lockManager.lock(destinationFile, DefaultLockOptions.mode(FileLockManager.LockMode.Exclusive), destinationFile.getName(), operationName);
        }
    
        public File getDownloadLocation() {
            return jdkDirectory;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 23:47:49 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. build-logic/kotlin-dsl/src/main/kotlin/gradlebuild.kotlin-dsl-dependencies-embedded.gradle.kts

            from(apiExtensionsFileCollection)
        }
    
    // -- Version manifest properties --------------------------------------
        val writeVersionsManifest by registering(WriteProperties::class) {
            destinationFile = layout.buildDirectory.file("versionsManifest/gradle-kotlin-dsl-versions.properties")
            property("kotlin", libs.kotlinVersion)
        }
    
        processResources {
            from(writeVersionsManifest)
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. testing/architecture-test/src/changes/archunit-store/public-api-symmetrical-accessors-nullability.txt

    Accessors for org.gradle.plugins.ide.eclipse.model.ResourceFilterMatcher.id don't use symmetrical @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/outputorigin/BuildCacheOutputOriginIntegrationTest.groovy

        def "exposes origin build id when reusing cached outputs"() {
            given:
            buildScript """
                apply plugin: "base"
                def write = tasks.create("write", WriteProperties) {
                    destinationFile = file("build/out.properties")
                    properties = [v: 1]
                }
            """
    
            when:
            succeeds "write"
    
            then:
            executedAndNotSkipped ":write"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 14:10:19 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/ExtractDslMetaDataTask.groovy

            TypeNameResolver resolver = new TypeNameResolver(repository)
            repository.each { name, metaData ->
                fullyQualifyAllTypeNames(metaData, resolver)
            }
            repository.store(destinationFile.get().asFile)
    
            Date stop = new Date()
            TimeDuration elapsedTime = TimeCategory.minus(stop, start)
            Logging.getLogger(this.getClass()).lifecycle( "Parsed $counter classes in ${elapsedTime}")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 08 12:45:57 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top