Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for toPatch (0.06 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

        @Override
        public ProjectBuildingResult build(File pomFile, ProjectBuildingRequest request) throws ProjectBuildingException {
            try (BuildSession bs = new BuildSession(request)) {
                Path path = pomFile.toPath();
                return bs.build(false, path, Sources.buildSource(path));
            }
        }
    
        @Deprecated
        @Override
        public ProjectBuildingResult build(
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 17:20:31 UTC 2025
    - 51.8K bytes
    - Viewed (0)
  2. okhttp/src/jvmTest/kotlin/okhttp3/internal/cache/DiskLruCacheTest.kt

      private val windows = subject.windows
    
      @TempDir
      lateinit var cacheDirFile: File
      private val cacheDir: Path
        get() =
          when (baseFilesystem) {
            is FakeFileSystem -> "/cache".toPath()
            else -> cacheDirFile.path.toPath()
          }
      private val appVersion = 100
      private lateinit var journalFile: Path
      private lateinit var journalBkpFile: Path
      private val taskFaker = TaskFaker()
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sat Nov 01 12:18:11 UTC 2025
    - 59.4K bytes
    - Viewed (0)
  3. impl/maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            PomTestWrapper pom = buildPom("baseuri-interpolation/pom.xml");
            String prop1 = pom.getValue("properties/prop1").toString();
            assertEquals(pom.getBasedir().toPath().toUri().toASCIIString(), prop1);
            assertTrue(prop1.startsWith("file:///"), "Expected " + prop1 + " to start with " + "file:///");
        }
    
        /* MNG-3811*/
        @Test
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 94.8K bytes
    - Viewed (0)
  4. okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/HttpOverHttp2Test.kt

    import okhttp3.testing.Flaky
    import okhttp3.testing.PlatformRule
    import okhttp3.tls.HandshakeCertificates
    import okio.Buffer
    import okio.BufferedSink
    import okio.GzipSink
    import okio.Path.Companion.toPath
    import okio.buffer
    import okio.fakefilesystem.FakeFileSystem
    import org.junit.jupiter.api.AfterEach
    import org.junit.jupiter.api.Assertions.assertArrayEquals
    import org.junit.jupiter.api.Assumptions.assumeTrue
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sat Nov 01 12:18:11 UTC 2025
    - 67.4K bytes
    - Viewed (0)
  5. compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            try {
                File configFile = new File(cliRequest.multiModuleProjectDirectory, MVN_MAVEN_CONFIG);
    
                if (configFile.isFile()) {
                    try (Stream<String> lines = Files.lines(configFile.toPath(), StandardCharsets.UTF_8)) {
                        String[] args = lines.filter(arg -> !arg.isEmpty() && !arg.startsWith("#"))
                                .toArray(String[]::new);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Oct 27 13:24:03 UTC 2025
    - 78.1K bytes
    - Viewed (0)
  6. impl/maven-core/src/main/java/org/apache/maven/project/MavenProject.java

         * All source files are relative to this directory, unless they were specified as absolute paths.
         *
         * @since 4.0.0
         */
        public Path getBaseDirectory() {
            return getBasedir().toPath();
        }
    
        public void setDependencies(List<Dependency> dependencies) {
            getModel().setDependencies(dependencies);
        }
    
        public List<Dependency> getDependencies() {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Aug 29 12:47:20 UTC 2025
    - 67K bytes
    - Viewed (0)
Back to top