Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of about 10,000 for FILE (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/internal/FileReferenceFactoryTest.groovy

        }
    
        def "creates a reference to a file which is not under any root directory"() {
            TestFile file = tmpDir.file("file.txt")
    
            expect:
            def reference = factory.fromFile(file)
            reference.file == file
            reference.path == relpath(file)
            !reference.relativeToPathVariable
        }
    
        def "creates a reference for a file under a root directory"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/util/mime.map

    application/zip                zip jar          # ZIP Compressed File
    audio/basic                    au snd           # Audio Sound File
    audio/x-aiff                   aif aiff aifc    # AIFF Sound File
    audio/x-midi                   mid              # MIDI Sound File
    audio/x-pn-realaudio           ra ram rm rpm    # REALAUDIO Sound File
    audio/x-wav                    wav              # WAV Sound File
    audio/x-mpegurl                mp3              # MP3 Sound File
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 5.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/GeneratedSingletonFileTreeTest.java

            MinimalFileTree tree = tree("file.txt", action);
    
            assertVisits(tree, toList("file.txt"), Collections.<String>emptyList());
    
            TestFile file = rootDir.file("file.txt");
    
            file.assertContents(equalTo("content"));
            file.makeOlder();
            TestFile.Snapshot snapshot = file.snapshot();
    
            assertVisits(tree, toList("file.txt"), Collections.<String>emptyList());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/initialization/BuildLayoutParameters.java

            );
        }
    
        public BuildLayoutParameters(
            @Nullable File gradleInstallationHomeDir,
            File gradleUserHomeDir,
            @Nullable File projectDir,
            File currentDir,
            @Nullable File settingsFile,
            @Nullable File buildFile
        ) {
            this.gradleUserHomeDir = gradleUserHomeDir;
            this.gradleInstallationHomeDir = gradleInstallationHomeDir;
            this.projectDir = projectDir;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 26 20:57:11 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ArchivesContinuousIntegrationTest.groovy

        def "creating zips"() {
            given:
            def sourceDir = file("src")
            def subDir = sourceDir.file("subdir")
            def outputFile = file("build/distributions/zip.zip")
            def unpackDir = file("build/unpack")
    
            when:
            subDir.mkdirs()
            unpackDir.mkdirs()
            sourceDir.file("README").text = "README"
            subDir.file("A").text = "A"
            buildFile << """
                apply plugin: 'base'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/tasks/internal/RelativeFileNameTransformerTest.groovy

            new File(rootDir, "subdir/../../current/outside") | new File(rootDir, "file/inside")
        }
    
        def "returns relative path where file inside of root"() {
            when:
            def file = new File(rootDir, filePath)
            def current = new File(rootDir, "current/dir")
    
            then:
            transform(current, file) == relativePath
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/ArtifactFileTest.groovy

            "some-file.zip"     | "some-file"       | "zip"     | "1.2"
            "some-file.zip.zip" | "some-file.zip"   | "zip"     | "1.2"
            ".zip"              | ""                | "zip"     | "1.2"
            "some-file"         | "some-file"       | ""        | "1.2"
    
            "some-file.zip"     | "some-file"       | "zip"     | null
            "some-file.zip.zip" | "some-file.zip"   | "zip"     | null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top