Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 108 for txt (0.02 sec)

  1. platforms/core-runtime/base-services/src/test/resources/org/gradle/util/ClassLoaderTest.txt

    Lóránt Pintér <******@****.***> 1695372482 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 10 bytes
    - Viewed (0)
  2. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/required-header.txt

    Jendrik Johannes <******@****.***> 1607501645 +0100
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 682 bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileTreeIntegrationTest.groovy

                'one.txt',
                'two.txt',
                'add-one.txt',
                'a/add-two.txt'
            )
    
            when:
            file('files/b/other.txt').createFile() // not an input
            run 'copy'
    
            then:
            result.assertTaskSkipped(':copy')
            file('dest').assertHasDescendants(
                'one.txt',
                'two.txt',
                'add-one.txt',
                'a/add-two.txt'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/ConfigurableFileTreeIntegrationTest.groovy

            outputContains("checking a.txt")
            outputContains("checking d/e/f.txt")
            file("out.txt").text == "a.txt,c.txt,f.txt"
        }
    
        def "can filter the elements of a tree using a closure that receives pattern set"() {
            given:
            file('files/one.txt').createFile()
            file('files/a/one.txt').createFile()
            file('files/b/ignore.txt').createFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/GeneratedSingletonFileTreeTest.java

            assertEquals(0, callCounter.get());
        }
    
        @Test
        public void doesNotOverwriteFileWhenGeneratedContentRemainsTheSame() {
            Action<OutputStream> action = getAction();
            MinimalFileTree tree = tree("file.txt", action);
    
            assertVisits(tree, toList("file.txt"), Collections.<String>emptyList());
    
            TestFile file = rootDir.file("file.txt");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/impl/FileSystemSnapshotSerializerTest.groovy

            when:
            def out = serialize(snapshots, serializer)
    
            then:
            assertEqualSnapshots(out, snapshots)
        }
    
        def "reads and writes directory snapshot hierarchies"() {
            def snapshots = directory("/home/lptr/dev", [
                regularFile("/home/lptr/dev/one.txt"),
                regularFile("/home/lptr/dev/two.txt"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/OutputsCleanerTest.groovy

            def outputDir = temporaryFolder.createDir("rootDir")
            outputFiles << outputDir.file("some-output.txt")
    
            def subDir = outputDir.createDir("subDir")
            outputFiles << subDir.file("in-subdir.txt")
    
            def outputFile = temporaryFolder.createFile("output.txt")
            outputFiles << outputFile
    
            outputFiles.each {
                it << "output ${it.name}"
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/ChangesByGradleFileWatchingIntegrationTest.groovy

                    inputDirectory = sourceTask.outputDir
                    outputFile = file("build/consumer.txt")
                }
            """
    
            def sourcesDir = file("sources")
            def sourceFile = sourcesDir.file("source.txt").createFile()
            def outputFile = file("build/output/output.txt")
    
            when:
            withWatchFs().run ":consumer"
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classloader/CachingClassLoaderTest.groovy

            when:
            def res = classLoader.getResource("foo.txt")
    
            then:
            res == new URL("file:foo.txt")
    
            and:
            1 * parent.getResource("foo.txt") >> new URL("file:foo.txt")
            0 * parent._
    
            when:
            res = classLoader.getResource("foo.txt")
    
            then:
            res == new URL("file:foo.txt")
    
            and:
            0 * parent._
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/SymlinkFileSystemWatchingIntegrationTest.groovy

            "symlinked directory"           | "symlinkedDir"                 | "actualDir"      | 'dir("symlinkedDir")'   | "actualDir/file.txt"
            "symlink in a directory"        | "dirWithSymlink/symlinkInside" | "fileInside.txt" | 'dir("dirWithSymlink")' | "fileInside.txt"
        }
    
        @Issue("https://github.com/gradle/gradle/issues/26201")
        def "changes are detected when parent of input is symlinked"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top