Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for topbtn (0.2 sec)

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

                        rootLocator.findRoot(pomFile.getParentFile().toPath()));
    
                DefaultModelBuildingListener listener =
                        new DefaultModelBuildingListener(project, projectBuildingHelper, request);
    
                ModelBuilderRequest modelBuildingRequest = getModelBuildingRequest()
                        .source(ModelSource.fromPath(pomFile.toPath()))
                        .projectBuild(true)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            """
    
            expect: "success"
            fails 'copy'
    
            and: "with a clear failure message"
            failure.assertHasCause("Cannot copy file '$unzippedFile2' to '${file('after/sub/new.txt').toPath()}' because file '$unzippedFile' has already been copied there.")
            failure.assertHasDescription("Execution failed for task ':copy'.")
        }
    
        // region duplicates in compressed files
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

            }
        }
    
        @Deprecated
        @Override
        public Result<? extends Model> buildRawModel(File pomFile, int validationLevel, boolean locationTracking) {
            return buildRawModel(pomFile.toPath(), validationLevel, locationTracking, null);
        }
    
        @Override
        public Result<? extends Model> buildRawModel(Path pomFile, int validationLevel, boolean locationTracking) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        synchronized(cache) { cache.initialize() }
      }
    
      fun setUp(
        baseFilesystem: FileSystem,
        windows: Boolean,
      ) {
        this.cacheDir =
          if (baseFilesystem is FakeFileSystem) "/cache".toPath() else cacheDirFile.path.toPath()
        this.filesystem = FaultyFileSystem(baseFilesystem)
        this.windows = windows
    
        if (filesystem.exists(cacheDir)) {
          filesystem.deleteRecursively(cacheDir)
        }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  5. 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(), Charset.defaultCharset())) {
                        String[] args = lines.filter(arg -> !arg.isEmpty() && !arg.startsWith("#"))
                                .toArray(String[]::new);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  6. platforms/software/security/src/test/resources/keyrings/valid-with-extra-metadata.keys

    K7Bn0UXbA8Lz8kWtHo4Zp7NVCDQFdlLE17H6hYKhwpPcY1w78FWkUbnO1f1C5ldn
    o2qsIxnEjuiJHBLGwRRb0TSinna1u4FrR2lslO2RkgC1wr+Exz9Vfa4EgrMpvR1l
    2ye6XS0MPIUeo6hQo/hSOaCbrYII5IYZO1hMLiX/AGnOqyaCibu78fSdEthLLAO3
    K4vUbX0DfCGnyw0kWQFSM2xcmamkjdZ7qGWA12/8J/UOpBt/KlnMnLdM/k0D3W0Y
    nNOf0R5EheSb53Qvtl7f/wC3UsjXyPaGivtWWDhe6QSBpC0bpGKVsXExfbhFCttz
    S0Hp/DMbJJjWp522UUOG+ZwjjbY7/S0OOGwRNj07AVQHCMMXJ2GWSiqI5opgwuDW
    vFb/AEs5kZjmwvidswg7eFpZ5w0ExgkDlY71FK2H5scP+Q1VeV3LRxvZF6ab7bMm
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 65.5K bytes
    - Viewed (0)
  7. okhttp/src/test/java/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: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

                    GFileUtils.parentMkdirs(leakDetectorJar);
                    GFileUtils.touch(leakDetectorJar);
                    try (OutputStream out = Files.newOutputStream(leakDetectorJar.toPath());
                         InputStream in = new URL(leakDetectorUrl).openStream()) {
                        ByteStreams.copy(in, out);
                    } catch (IOException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. 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);
            assertThat(prop1, startsWith("file:///"));
        }
    
        /* MNG-3811*/
        @Test
        void testReportingPluginConfig() throws Exception {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/css/manual.css

    table.grid-rows tfoot>tr>td.tableblock {
    	border-width: 1px 0 0 0;
    }
    
    table.frame-all {
    	border-width: 1px;
    }
    
    table.frame-sides {
    	border-width: 0 1px;
    }
    
    table.frame-topbot {
    	border-width: 1px 0;
    }
    
    th.halign-left,
    td.halign-left {
    	text-align: left;
    }
    
    th.halign-right,
    td.halign-right {
    	text-align: right;
    }
    
    th.halign-center,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
Back to top