Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 6,891 for FILE (0.05 sec)

  1. platforms/core-execution/build-cache-packaging/src/main/java/org/gradle/caching/internal/packaging/impl/TarBuildCacheEntryPacker.java

                    break;
                }
                entries.incrementAndGet();
    
                File file = new File(treeRoot, parser.getRelativePath());
                if (isDir) {
                    FileUtils.forceMkdir(file);
                    chmodUnpackedFile(entry, file);
                    String internedAbsolutePath = stringInterner.intern(file.getAbsolutePath());
                    String internedName = stringInterner.intern(parser.getName());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:19 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  2. fess-crawler-lasta/src/test/java/org/codelibs/fess/crawler/CrawlerTest.java

            try {
                final int maxCount = 50;
                final int numOfThread = 10;
    
                final File file = File.createTempFile("crawler-", "");
                file.delete();
                file.mkdirs();
                file.deleteOnExit();
                fileTransformer.setPath(file.getAbsolutePath());
                crawler.addUrl(url);
                crawler.crawlerContext.setMaxAccessCount(maxCount);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/file/FileCollectionSymlinkIntegrationTest.groovy

        def "#desc can handle symlinks"() {
            def buildScript = file("build.gradle")
            def baseDir = file('build')
            baseDir.file('file').text = 'some contents'
            def symlinked = baseDir.file('symlinked')
            symlinked.text = 'target of symlink'
            baseDir.file('symlink').createLink(symlinked)
    
            buildScript << """
                def baseDir = new File("${escapeString(baseDir)}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalCompileIntegrationTest.groovy

            sourceFile = app.mainSource.writeToDir(file("src/main"))
            sharedHeaderFile = app.libraryHeader.writeToDir(file("src/main"))
            commonHeaderFile = app.commonHeader.writeToDir(file("src/main"))
            app.librarySources.each {
                otherSourceFiles << it.writeToDir(file("src/main"))
            }
            otherHeaderFile = file("src/main/headers/other.h") << """
                // Dummy header file
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeMultipleSwiftProjectIntegrationTest.groovy

                project(':cppGreeter') {
                    apply plugin: 'cpp-library'
                }
            """
            swiftGreeter.writeToProject(file("hello"))
            cppGreeter.asLib().writeToProject(file("cppGreeter"))
            sumLibrary.writeToProject(file("app"))
            app.writeToProject(file("app"))
    
            when:
            succeeds("xcode")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ParallelDownloadsIntegrationTest.groovy

                blockingServer.get(m1.pom.path).sendFile(m1.pom.file),
                blockingServer.get(m2.pom.path).sendFile(m2.pom.file),
                blockingServer.get(m3.pom.path).sendFile(m3.pom.file),
                blockingServer.get(m4.pom.path).sendFile(m4.pom.file))
            blockingServer.expectConcurrent(
                blockingServer.get(m1.artifact.path).sendFile(m1.artifact.file),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorServicesIntegrationTest.groovy

                        if (!expectedWorkingDir.getCanonicalFile().equals(actualWorkingDir)) {
                            throw new RuntimeException(String.format("Unexpected working directory '%s', expected '%s'.", actualWorkingDir, expectedWorkingDir));
                        }
                        File file = new File(args[1]);
                        file.getParentFile().mkdirs();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/plugin/ScriptPluginClassLoadingIntegrationTest.groovy

                }
            """
    
            file("plugin1.gradle") << """
                task sayMessageFrom1 { doLast { println new pkg.Thing().getMessage() } }
                apply from: 'plugin2.gradle'
            """
    
            file("plugin2.gradle") << """
                task sayMessageFrom2 { doLast { println new pkg.Thing().getMessage() } }
                apply from: 'plugin3.gradle'
            """
    
            file("plugin3.gradle") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:34 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. platforms/jvm/code-quality/src/test/groovy/org/gradle/api/plugins/quality/CheckstylePluginTest.groovy

            task.configDirectory.get().getAsFile() == project.file("custom")
            task.config.inputFiles.singleFile == project.file("checkstyle-config")
            task.configProperties == [foo: "foo"]
            task.reports.xml.outputLocation.asFile.get() == project.file("checkstyle-reports/custom.xml")
            task.reports.html.outputLocation.asFile.get() == project.file("checkstyle-reports/custom.html")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  10. platforms/jvm/scala/src/integTest/groovy/org/gradle/integtests/ScalaAnnotationProcessingIntegrationTest.groovy

            }
    
            File getRepoDir() {
                file("$name/build/repo")
            }
    
            File getPublishedJarFile() {
                new File(getArtifactPublishDir(), "${name}-${version}.jar")
            }
    
            File getPublishedPomFile() {
                new File(getArtifactPublishDir(), "${name}-${version}.pom")
            }
    
            private File getArtifactPublishDir() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 11.3K bytes
    - Viewed (0)
Back to top