Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 276 for properties (0.33 sec)

  1. maven-core/src/test/resources/projects/build.properties

    Jason van Zyl <******@****.***> 1172702970 +0000
    Properties
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Wed Feb 28 22:49:30 GMT 2007
    - 799 bytes
    - Viewed (0)
  2. maven-core/src/test/resources/org/apache/maven/execution/resume.properties

    Guillaume Nodet <******@****.***> 1612863438 +0100
    Properties
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sat Feb 13 10:32:34 GMT 2021
    - 35 bytes
    - Viewed (0)
  3. maven-core/src/test/resources/META-INF/maven/org.apache.maven/maven-core/pom.properties

    John Dennis Casey <******@****.***> 1174426859 +0000
    Properties
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Mar 20 21:40:59 GMT 2007
    - 20 bytes
    - Viewed (0)
  4. apache-maven/src/assembly/maven/conf/logging/simplelogger.properties

    Tamas Cservenak <******@****.***> 1650125963 +0200
    Properties
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sat Apr 16 16:19:23 GMT 2022
    - 1.3K bytes
    - Viewed (0)
  5. maven-core/src/main/resources/org/apache/maven/messages/build.properties

    Hervé Boutemy <******@****.***> 1569086242 +0200
    Properties
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Nov 07 12:35:52 GMT 2019
    - 956 bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultSettingsBuilder.java

                throw new SettingsBuilderException("Unable to build settings", e);
            }
        }
    
        private Properties toProperties(Map<String, String> map) {
            Properties properties = new Properties();
            properties.putAll(map);
            return properties;
        }
    
        private static class MappedSettingsSource implements SettingsSource {
            private final Source source;
    
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Tue Dec 05 08:11:33 GMT 2023
    - 5.6K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/project/ProjectBuildingRequest.java

        /**
         * Gets the system properties to use for interpolation and profile activation. The system properties are collected
         * from the runtime environment like {@link System#getProperties()} and environment variables.
         *
         * @return The system properties, never {@code null}.
         */
        Properties getSystemProperties();
    
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 7K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/properties/internal/EnvironmentUtils.java

         * variable lookup.
         *
         * @param props The properties to add the environment variables to, may be {@code null}.
         */
        public static void addEnvVars(Properties props) {
            if (props != null) {
                if (envVars == null) {
                    Properties tmp = new Properties();
                    boolean caseSensitive = !Os.IS_WINDOWS;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Sep 22 06:01:36 GMT 2023
    - 2.4K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ProfileActivationContext.java

        /**
         * Gets the system properties to use for interpolation and profile activation. The system properties are collected
         * from the runtime environment like {@link System#getProperties()} and environment variables.
         *
         * @return The execution properties, never {@code null}.
         */
        Map<String, String> getSystemProperties();
    
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2.8K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/execution/DefaultBuildResumptionDataRepository.java

            try {
                Files.deleteIfExists(resumeProperties);
            } catch (IOException e) {
                LOGGER.warn("Could not delete {} file. ", RESUME_PROPERTIES_FILENAME, e);
            }
        }
    
        private Properties loadResumptionFile(Path rootBuildDirectory) {
            Properties properties = new Properties();
            Path path = rootBuildDirectory.resolve(RESUME_PROPERTIES_FILENAME);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 06 08:51:18 GMT 2023
    - 4.9K bytes
    - Viewed (0)
Back to top