Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of about 10,000 for FILE (0.36 sec)

  1. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/artifact/IvyArtifactNotationParserFactoryTest.groovy

            ivyArtifact.file == publishArtifact.file
            ivyArtifact.buildDependencies.getDependencies(task) == dependencies
        }
    
        def "creates IvyArtifact for source map notation with file"() {
            given:
            File file = new File('some-file-1.2.zip')
    
            when:
            def ivyArtifact = parser.parseNotation(source: 'some-file')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  2. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoAggregationIntegrationTest.groovy

            then:
            file("transitive/build/jacoco/test.exec").assertExists()
            file("transitive/build/jacoco/integTest.exec").assertExists()
            file("direct/build/jacoco/test.exec").assertExists()
            file("direct/build/jacoco/integTest.exec").assertDoesNotExist()
            file("application/build/jacoco/test.exec").assertExists()
            file("application/build/jacoco/integTest.exec").assertExists()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 26.3K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/file/ProjectLayoutIntegrationTest.groovy

            run()
    
            then:
            outputContains("src file 1: " + testDirectory.file("src/child"))
            outputContains("output file 1: " + testDirectory.file("build/child"))
            outputContains("src file 2: " + testDirectory.file("src/other-child"))
            outputContains("output file 2: " + testDirectory.file("output/some-dir/other-child"))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 18:31:24 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/jvm/JvmTest.groovy

            jvm.jdk
            jvm.toolsJar == software.file('jdk/lib/tools.jar')
            jvm.javaExecutable == software.file('jdk/bin/java.exe')
            jvm.javacExecutable == software.file('jdk/bin/javac.exe')
            jvm.javadocExecutable == software.file('jdk/bin/javadoc.exe')
            jvm.jre == software.file('jdk/jre')
            jvm.embeddedJre == software.file("jdk/jre")
            jvm.standaloneJre == null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/tutorial/antLoadfileWithMethod/kotlin/build.gradle.kts

                }
                println("I'm fond of ${file.name}")
            }
        }
    }
    
    fun fileList(dir: String): List<File> =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 723 bytes
    - Viewed (0)
  6. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/idea/model/PathFactoryTest.groovy

            factory.path(childFile) != factory.path("file://${relpath(childFile)}")
        }
    
        private String relpath(File file) {
            return file.absolutePath.replace(File.separator, '/')
        }
    
        def findFileSystemRoots() {
            File.listRoots().inject([]) {List result, File root ->
                try {
                    new File(root, 'file').canonicalFile
                    result << root
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInBuildScriptIntegrationTest.groovy

            runtimeExec().kotlin        | "buildSrc/settings.gradle.kts" | "Settings file 'buildSrc/settings.gradle.kts'"
        }
    
        def "using #snippetsFactory.summary in settings file #file is a problem"() {
            given:
            def snippets = snippetsFactory.newSnippets(execOperationsFixture)
            testDirectory.file(file) << """
                ${snippets.imports}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/file/FileTreeElement.java

        void copyTo(OutputStream output);
    
        /**
         * Copies this file to the given target file. Does not copy the file if the target is already a copy of this file.
         *
         * @param target the target file.
         * @return true if this file was copied, false if it was up-to-date
         */
        boolean copyTo(File target);
    
        /**
         * Returns the base name of this file.
         *
         * @return The name. Never returns null.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 13:43:13 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileTreeTest.groovy

            File included1 = new File(testDir, 'subDir/included1')
            File included2 = new File(testDir, 'subDir2/included2')
            File excluded1 = new File(testDir, 'subDir/notincluded')
            File ignored1 = new File(testDir, 'ignored')
            [included1, included2, excluded1, ignored1].each { File file ->
                file.parentFile.mkdirs()
                file.text = 'some text'
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/internal/project/taskfactory/TaskPropertyNamingIntegrationTest.groovy

            file("input.txt").createNewFile()
            file("input-nested.txt").createNewFile()
            file("input1.txt").createNewFile()
            file("input2.txt").createNewFile()
            file("inputs").createDir()
            file("inputs/inputA.txt").createNewFile()
            file("inputs/inputB.txt").createNewFile()
            file("inputs1").createDir()
            file("inputs2").createDir()
    
            buildFile """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 21 19:38:50 UTC 2022
    - 16.8K bytes
    - Viewed (0)
Back to top