Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 5,546 for FILE (0.41 sec)

  1. subprojects/core-api/src/test/groovy/org/gradle/api/tasks/util/PatternSetTest.groovy

            excluded file('1')
            excluded file('c')
            excluded file('3')
            excluded file('acb')
            excluded file('acd')
            excluded file('132')
            excluded file('132')
    
            when:
            patternSet = new PatternSet().copyFrom(patternSet)
            then:
            included file('ac')
            included file('13')
            excluded file('a')
            excluded file('1')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 12:37:12 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/incremental/transaction/CompileTransactionTest.groovy

        }
    
        private File fileInTransactionDir(String path) {
            return new File(checkNotNull(transactionDir), path)
        }
    
        private File file(String path) {
            return new File(checkNotNull(temporaryFolder) as File, path)
        }
    
        private File createNewDirectory(File file) {
            file.parentFile.mkdirs()
            file.mkdir()
            return file
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 18K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildIntegrationTest.groovy

        private File inputDir
        private File outputDir
    
        @InputDirectory
        public File getInputDir() {
            return inputDir
        }
    
        public void setInputDir(File inputDir) {
            this.inputDir = inputDir
        }
    
        @OutputDirectory
        public File getOutputDir() {
            return outputDir
        }
    
        public void setOutputDir(File outputDir) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/AbstractFileCollectionTest.groovy

            File file = new File("f1")
            TestFileCollection collection = new TestFileCollection(file)
    
            expect:
            collection as Collection == toList(file)
            collection as Set == toLinkedSet(file)
            collection as List == toList(file)
        }
    
        void toFileTreeReturnsSingletonTreeForEachFileInCollection() {
            File file = testDir.createFile("f1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/io/Files.java

       *
       * <p><b>Warning:</b> If {@code to} represents an existing file, that file will be overwritten
       * with the contents of {@code from}. If {@code to} and {@code from} refer to the <i>same</i>
       * file, the contents of that file will be deleted.
       *
       * <p><b>{@link java.nio.file.Path} equivalent:</b> {@link
       * java.nio.file.Files#copy(java.nio.file.Path, java.nio.file.Path, java.nio.file.CopyOption...)}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/parsing/RejectedLanguageFeaturesParsingTest.kt

                    erroneousSource = indexes: 13..14, line/column: 1/14..1/15, file: test
                )
                UnsupportedConstruct(
                    languageFeature = StarImport,
                    potentialElementSource = indexes: 15..25, line/column: 2/1..2/11, file: test,
                    erroneousSource = indexes: 24..25, line/column: 2/10..2/11, file: test
                )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:53:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/io/FilesTest.java

      }
    
      public void testCreateParentDirs_noParentsNeeded() throws IOException {
        File file = file(getTempDir(), "nonexistent.file");
        assertTrue(file.getParentFile().exists());
        Files.createParentDirs(file);
      }
    
      public void testCreateParentDirs_oneParentNeeded() throws IOException {
        File file = file(getTempDir(), "parent", "nonexistent.file");
        File parent = file.getParentFile();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ArchiveIntegrationTest.groovy

            where:
            scenario | content
            "archive of other format"   | { td -> td.file('content/some-file.txt').text = "Content"; td.file('content').tarTo(td.file('compressedTarWithWrongExtension.zip')) }
            "random file"               | { td -> td.file('compressedZipWithWrongExtension.tar').text = "MamboJumbo" }
        }
    
        def "tarTreeFailsGracefully when #scenario"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top