Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 492 for litfiles (0.21 sec)

  1. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/build-logic/report-aggregation/src/main/groovy/com.example.report-aggregation.gradle

    def codeCoverageReport = tasks.register('codeCoverageReport', JacocoReport) {
        classDirectories.from(classesPath.getIncoming().getFiles())
        sourceDirectories.from(sourcesPath.getIncoming().artifactView { lenient(true) }.getFiles())
        executionData(coverageDataPath.getIncoming().artifactView { lenient(true) }.getFiles().filter { it.exists() })
    
        reports {
            html.required = true
            xml.required = true
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/RetryConditions.groovy

            if (specification.hasProperty("projectDir")) {
                specification.projectDir.listFiles().each {
                    if (!FILES_TO_PRESERVE.contains(it.name)) {
                        it.deleteDir()
                    }
                }
            } else if (specification.hasProperty("testDirectory")) {
                specification.testDirectory.listFiles().each {
                    if (!FILES_TO_PRESERVE.contains(it.name)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/GradleBuildScriptExecutionFromSubDirIntegTest.groovy

            settingsFile << "include 'tmp'"
    
            when:
            def subdir = file("tmp")
            subdir.mkdirs()
            executer.inDirectory(subdir)
            succeeds ':checkDir'
    
            then:
            subdir.listFiles().length == 0
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:22 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/DefaultVisualStudioProject.java

            return collect(getSourceFiles().getFiles(), File::getAbsolutePath);
        }
    
        @Internal
        public Set<File> getResourceFiles() {
            Set<File> allResources = new LinkedHashSet<File>();
            for (VisualStudioTargetBinary binary : configurations.keySet()) {
                allResources.addAll(binary.getResourceFiles().getFiles());
            }
            return allResources;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache-local/src/test/groovy/org/gradle/caching/local/internal/DirectoryBuildCacheTest.groovy

        def "does not store partial result"() {
            when:
            cache.store(key) { output ->
                // Check that partial result file is created inside the cache directory
                def cacheDirFiles = cacheDir.listFiles()
                assert cacheDirFiles.length == 1
    
                def partialCacheFile = cacheDirFiles[0]
                assert partialCacheFile.name.startsWith(hashCode)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 14:32:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle-task/groovy/build.gradle

        @TaskAction
        void run() {
            File bundleFile = projectLayout.buildDirectory.file("bundle.js").get().asFile
            File[] scriptsFiles = projectLayout.projectDirectory.dir("scripts").asFile.listFiles()
    
            bundleFile.withOutputStream { stream ->
                scriptsFiles.sort().each {
                    stream.write(it.bytes)
                }
            }
        }
    }
    
    // tag::bundle-task[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/dependencymanagement/SamplesDeclaringDependenciesIntegrationTest.groovy

            TestFile dslDir = sample.dir.file(dsl)
            executer.inDirectory(dslDir)
    
            when:
            succeeds('copyLibs')
    
            then:
            dslDir.file('build/libs').listFiles().any { it.name.startsWith('spring-web-5.') }
    
            where:
            dsl << ['groovy', 'kotlin']
        }
    
        @UsesSample("dependencyManagement/declaringDependencies-changingVersion")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedCustomTaskExecutionIntegrationTest.groovy

            file("build").listFiles().sort() as List == [file("build/output.txt"), file("build/secondary.txt")]
    
            when:
            cleanBuildDir()
            withBuildCache().run "customTask"
            then:
            skipped ":customTask"
            file("build/output.txt").text == "data"
            file("build/secondary.txt").text == "secondary"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformStepSubject.java

            return new Initial(artifact);
        }
    
        /**
         * The files which should be transformed.
         */
        public abstract ImmutableList<File> getFiles();
    
        /**
         * Component identifier of the initial subject.
         */
        public abstract ComponentIdentifier getInitialComponentIdentifier();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolvedConfigurationIntegrationTest.groovy

            } else if (expression == "getFiles { true }") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 26.1K bytes
    - Viewed (0)
Back to top