Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of about 10,000 for FILE (0.46 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/NativeCompileSpec.java

        void include(File... includeRoots);
    
        List<File> getSystemIncludeRoots();
    
        void systemInclude(Iterable<File> systemIncludeRoots);
    
        List<File> getSourceFiles();
    
        void setSourceFiles(Collection<File> sources);
    
        void source(Iterable<File> sources);
    
        List<File> getRemovedSourceFiles();
    
        void setRemovedSourceFiles(Collection<File> sources);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. .idea/scopes/IDE.xml

      <scope name="IDE" pattern="file[idea_main]:*/||file[idea]:testData/*/||file[idea-formatter_main]:*/||file[ide-common_main]:*/||file[idea-android_main]:*/||file[idea-android-output-parser_main]:*/||file[idea]:idea-completion/testData/*/||file[idea-core_main]:*/||file[idea-gradle_main]:*/||file[idea-jps-common_main]:*/||file[idea-jvm_main]:*/||file[idea]:idea-live-templates/src/*/||file[idea]:idea-live-templates/testData/*/||file[idea-maven_main]:*/||file[idea-repl]:*/||file[i...
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Oct 24 16:22:04 UTC 2017
    - 609 bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/AbstractFileSystemAccessTest.groovy

            assert snapshot.absolutePath == file.absolutePath
            assert snapshot.name == file.name
            assert snapshot.type == FileType.RegularFile
            assert snapshot.hash == hashFile(file)
        }
    
        void assertIsMissingFileSnapshot(FileSystemLocationSnapshot snapshot, File file) {
            assert snapshot.absolutePath == file.absolutePath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:55 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/DefaultFileTreeElement.java

        private final File file;
        private final RelativePath relativePath;
        private final Stat stat;
    
        public DefaultFileTreeElement(File file, RelativePath relativePath, Chmod chmod, Stat stat) {
            super(chmod);
            this.file = file;
            this.relativePath = relativePath;
            this.stat = stat;
        }
    
        public static DefaultFileTreeElement of(File file, FileSystem fileSystem) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/file/DefaultFileOperationsTest.groovy

            when:
            TestFile file = expectPathResolved('path')
    
            then:
            fileOperations.file('path') == file
        }
    
        def resolvesFileWithValidation() {
            TestFile file = tmpDir.file('path')
            resolver.resolve('path', PathValidation.EXISTS) >> file
    
            expect:
            fileOperations.file('path', PathValidation.EXISTS) == file
        }
    
        def resolvesURI() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileTreeIntegrationTest.groovy

            )
        }
    
        def "can filter the elements of a tree using a closure that receives a File"() {
            given:
            file('files/one.txt').createFile()
            file('files/a/two.txt').createFile()
            file('files/b/ignore.txt').createFile()
            file('other/other-one.txt').createFile()
            file('other/a/other-ignore.txt').createFile()
            buildFile """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/internal/cleanup/DefaultBuildOutputCleanupRegistryTest.groovy

            registry.isOutputOwnedByBuild(file('build/outputs/other/even-an-other-dir'))
            registry.isOutputOwnedByBuild(file('outputs/even-an-other-dir'))
            !registry.isOutputOwnedByBuild(file('build'))
            !registry.isOutputOwnedByBuild(file('output'))
            !registry.isOutputOwnedByBuild(file('build/output'))
            !registry.isOutputOwnedByBuild(file('different-file/build/outputs'))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 29 20:47:06 UTC 2021
    - 3K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/generate_invalid.txt

    // Go generate should ignore this file.
    
    //go:generate echo Fail b
    
    // +build b
    
    package excluded
    
    
    -- nopkg/a.go --
    // Go file with package clause after comment.
    // Go generate should process this file.
    
    /* Pre-comment */ package nopkg
    //go:generate echo Success a
    
    -- nopkg/b.go --
    // Go file with commented package clause.
    // Go generate should ignore this file.
    
    //package nopkg
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 09 01:48:44 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/ChmodBenchmark.java

            File file = new File(tempDirFile, "file-" + counter.incrementAndGet());
            boolean created = file.createNewFile();
            blackhole.consume(created);
        }
    
        @Benchmark
        public void createFileJava7(Blackhole blackhole) throws IOException {
            Path file = Files.createFile(tempDirPath.resolve("file-" + counter.incrementAndGet()));
            blackhole.consume(file);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 12:13:32 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/src/testFixtures/groovy/org/gradle/api/internal/file/collections/AbstractDirectoryWalkerTest.groovy

            def dir = rootDir.createDir("a/b")
            def file = dir.file("c.txt").createFile()
            file << "Hello world"
            def link = rootDir.file("a/d").createDir().file("e.txt")
            link.createLink(file)
    
            when:
            def visited = walkDirForPaths(walkerInstance, rootDir, new PatternSet())
    
            then:
            visited.contains(file.canonicalPath)
            visited.contains(link.canonicalPath)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7K bytes
    - Viewed (0)
Back to top