Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for propertiesFile (0.05 sec)

  1. src/main/java/org/codelibs/core/misc/DynamicProperties.java

            // check path
            if (file == null) {
                throw new FileAccessException("ECL0108");
            }
    
            this.propertiesFile = file;
            if (!this.propertiesFile.exists()) {
                final File parentDir = this.propertiesFile.getParentFile();
                if (!parentDir.exists()) {
                    if (!parentDir.mkdir()) {
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/BaseParser.java

                    systemProperties::getProperty);
            Path propertiesFile = mavenConf.resolve("maven-system.properties");
            try {
                MavenPropertiesLoader.loadProperties(systemProperties, propertiesFile, callback, false);
            } catch (IOException e) {
                throw new IllegalStateException("Error loading properties from " + propertiesFile, e);
            }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 10 07:39:11 UTC 2025
    - 25.5K bytes
    - Viewed (0)
  3. gradle/wrapper/gradle-wrapper.jar

    getValidateDistribut(); public final void setValidateDistribut(boolean); } org/gradle/wrapper/WrapperExecutor.class package org.gradle.wrapper; public final class WrapperExecutor { public final java.util.Properties properties; public final java.io.File propertiesFile; public final WrapperConfiguration config; public void WrapperExecutor(java.io.File, java.util.Properties); public static void loadProperties(java.io.File, java.util.Properties); public final String readDistroUrl(); public final String getProperty(String,...
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Thu Oct 30 01:56:29 UTC 2025
    - 44.6K bytes
    - Viewed (1)
  4. impl/maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            PomTestWrapper pom = buildPom("plugin-config-merging/child");
    
            String prefix = "build/plugins[1]/configuration/";
            assertEquals("PASSED", pom.getValue(prefix + "propertiesFile"));
            assertEquals("PASSED", pom.getValue(prefix + "parent"));
            assertEquals("PASSED-1", pom.getValue(prefix + "stringParams/stringParam[1]"));
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 94.8K bytes
    - Viewed (0)
Back to top