Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 142 for toPath (0.11 sec)

  1. maven-embedder/src/main/java/org/apache/maven/cli/event/ExecutionEventLogger.java

                // path to pom.xml
                File currentPom = project.getFile();
                if (currentPom != null) {
                    MavenSession session = event.getSession();
                    Path current = currentPom.toPath().toAbsolutePath().normalize();
                    Path topDirectory = session.getTopDirectory();
                    if (topDirectory != null && current.startsWith(topDirectory)) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

            systemHelper = new SystemHelper() {
                @Override
                protected void parseProjectProperties(final Path propPath) {
                    super.parseProjectProperties(propFile.toPath());
                }
    
                @Override
                public void updateSystemProperties() {
                }
    
                @Override
                protected Map<String, String> getEnvMap() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/cgo/internal/testshared/shared_test.go

    	// of use-cases where -buildmode=shared still works today.
    	// For now, run the tests in GOPATH mode only.
    	os.Setenv("GO111MODULE", "off")
    
    	// Some tests need to edit the source in GOPATH, so copy this directory to a
    	// temporary directory and chdir to that.
    	gopath := filepath.Join(workDir, "gopath")
    	modRoot, err := cloneTestdataModule(gopath)
    	if err != nil {
    		return 0, err
    	}
    	if testing.Verbose() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 26 01:54:41 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  7. src/main/resources/fess_indices/fess/ro/stopwords.txt

    printr
    sa
    să
    săi
    sale
    sau
    său
    se
    şi
    sînt
    sîntem
    sînteţi
    spre
    sub
    sunt
    suntem
    sunteţi
    ta
    tăi
    tale
    tău
    te
    ţi
    ţie
    tine
    toată
    toate
    tot
    toţi
    totuşi
    tu
    un
    una
    unde
    undeva
    unei
    unele
    uneori
    unor
    vă
    vi
    voastră
    voastre
    voi
    voştri
    vostru
    vouă
    vreo
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  8. api/maven-api-model/src/main/mdo/maven.mdo

        }
    
        @Deprecated
        public void setPomFile(java.io.File pomFile) {
            update( getDelegate().withPomFile(pomFile != null ? pomFile.toPath() : null));
        }
    
        /**
         * Gets the POM file for the corresponding project (if any).
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/core/convert/TimeConversionUtilTest.java

        /**
         * @throws Exception
         */
        @Test
        public void testToDate_Null() throws Exception {
            assertThat(toDate(null), is(nullValue()));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testToDate_EmptyString() throws Exception {
            assertThat(toDate(""), is(nullValue()));
        }
    
        /**
         * @throws Exception
         */
        @Test
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/teststdio/stdio_test.go

    	os.Exit(testMain(m))
    }
    
    func testMain(m *testing.M) int {
    	GOPATH, err := os.MkdirTemp("", "cgostdio")
    	if err != nil {
    		log.Panic(err)
    	}
    	defer os.RemoveAll(GOPATH)
    	os.Setenv("GOPATH", GOPATH)
    
    	// Copy testdata into GOPATH/src/cgostdio, along with a go.mod file
    	// declaring the same path.
    	modRoot := filepath.Join(GOPATH, "src", "cgostdio")
    	if err := cgotest.OverlayDir(modRoot, "testdata"); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 20:56:09 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top