Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of about 10,000 for FILE (0.07 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/AbstractModule.groovy

            hashFile(file, Hashing.sha1())
        }
    
        TestFile getSha256File(TestFile file) {
            getHashFile(file, Hashing.sha256())
        }
    
        TestFile sha256File(TestFile file) {
            hashFile(file, Hashing.sha256())
        }
    
        TestFile getSha512File(TestFile file) {
            getHashFile(file, Hashing.sha512())
        }
    
        TestFile sha512File(TestFile file) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/files/SamplesCopyIntegrationTest.groovy

            outputDir.file('index-staging.html').assertDoesNotExist()
            outputDir.file('index.html.tmp').assertDoesNotExist()
            outputDir.file('home.html').isFile()
            outputDir.file('logo.png').isFile()
            outputDir.file('products/collaboration.jpg').isFile()
            outputDir.file('WEB-INF/classes/Hello.class').isFile()
            outputDir.file('WEB-INF/lib/commons-io-2.6.jar').isFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/mutator/ClearArtifactTransformCacheWithoutInstrumentedJarsMutatorTest.groovy

            createFile(new File(cachesDir, "8.7-rc-4/transforms/first/metadata.bin"))
            createFile(new File(cachesDir, "8.7-rc-4/transforms/first/transformed/instrumented/file"))
            createFile(new File(cachesDir, "8.7-rc-4/transforms/second/transformed/original/file"))
            createFile(new File(cachesDir, "8.8/transforms/first/transformed/instrumented/file"))
            createFile(new File(cachesDir, "8.8/transforms/first/transformed/original/file"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 12:30:06 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalInputsIntegrationTest.groovy

                    inputDir = file("inputs")
                    nonIncrementalInput = file("nonIncremental")
                }
            """
            file("nonIncremental").text = "input"
            run("withNonIncrementalInput")
    
            when:
            file("inputs/new-input-file.txt") << "new file"
            file("nonIncremental").text = 'changed'
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 23 12:52:29 UTC 2022
    - 27.8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top