Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for copyProperties (0.21 sec)

  1. maven-core/src/main/java/org/apache/maven/properties/internal/SystemProperties.java

        public static Properties getSystemProperties() {
            return copyProperties(System.getProperties());
        }
    
        /**
         * Copies the given {@link Properties} object into a new {@link Properties} object, in a thread-safe manner.
         * @param properties Properties to copy.
         * @return Copy of the given properties.
         */
        public static Properties copyProperties(Properties properties) {
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 2K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingRequest.java

            return systemProperties;
        }
    
        public ProjectBuildingRequest setSystemProperties(Properties systemProperties) {
            if (systemProperties != null) {
                this.systemProperties = SystemProperties.copyProperties(systemProperties);
            } else {
                this.systemProperties.clear();
            }
    
            return this;
        }
    
        public Properties getUserProperties() {
            return userProperties;
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 8.9K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

            return this;
        }
    
        @Override
        public MavenExecutionRequest setSystemProperties(Properties properties) {
            if (properties != null) {
                this.systemProperties = SystemProperties.copyProperties(properties);
            } else {
                this.systemProperties = null;
            }
    
            return this;
        }
    
        @Override
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 31K bytes
    - Viewed (0)
Back to top