Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 95 of 95 for toPaths (0.3 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/DefaultVersionCatalogBuilder.java

            }
    
            Instrumented.fileOpened(modelFile, getClass().getName());
            try {
                TomlCatalogFileParser.parse(modelFile.toPath(), this, this::getProblemsService);
            } catch (IOException e) {
                throw new UncheckedIOException(e);
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIntegrationTest.groovy

                }
    
                abstract class ReadFileWithinJarTask : DefaultTask() {
                    @TaskAction
                    fun run() {
                        val path = File("${TextUtil.escapeString(testFile.path)}").toPath()
                        val uri = URI("jar:" + path.toUri())
                        FileSystems.newFileSystem(uri, mapOf<String, Any?>()).use { fs ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 36K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart2IntegrationTest.groovy

                        return getProject().files();
                    }
    
                    @Input
                    public Path getFilePath() {
                        return new File("some-file").toPath();
                    }
    
                    @Input
                    public FileTree getFileTree() {
                        return getProject().files().getAsFileTree();
                    }
    
                    @TaskAction
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

            // the 'java.io.tmpdir' system property directly
            TestFile tmpDir = new TestFile(System.getProperty("java.io.tmpdir"))
            def undefinedBuildDirectory = Files.createTempDirectory(tmpDir.toPath(), "gradle").toFile()
            testDirOverride = new TestFile(undefinedBuildDirectory)
            assertNoDefinedBuild(testDirectory)
            executer.beforeExecute {
                executer.inDirectory(testDirectory)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

                    if (pluginXml.isFile()) {
                        pluginDescriptor = parsePluginDescriptor(
                                () -> Files.newInputStream(pluginXml.toPath()), plugin, pluginXml.getAbsolutePath());
                    }
                }
    
                if (pluginDescriptor == null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 46.5K bytes
    - Viewed (0)
Back to top