Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 220 for Properties (0.43 sec)

  1. apache-maven/src/assembly/maven/conf/logging/simplelogger.properties

    Tamas Cservenak <******@****.***> 1650125963 +0200
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 16 16:19:23 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  2. maven-embedder/src/main/resources/META-INF/maven/slf4j-configuration.properties

    Guillaume Nodet <******@****.***> 1704782218 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 06:36:58 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. 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) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 2K bytes
    - Viewed (0)
  4. maven-embedder/src/main/java/org/apache/maven/cli/CliRequest.java

        Path rootDirectory;
    
        Path topDirectory;
    
        boolean verbose;
    
        boolean quiet;
    
        boolean showErrors = true;
    
        Properties userProperties = new Properties();
    
        Properties systemProperties = new Properties();
    
        MavenExecutionRequest request;
    
        CliRequest(String[] args, ClassWorld classWorld) {
            this.args = args;
            this.classWorld = classWorld;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 10:32:14 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. 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;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 06:01:36 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/MavenBuildTimestamp.java

         */
        @Deprecated
        public MavenBuildTimestamp(Instant time, Properties properties) {
            this(time, properties != null ? properties.getProperty(BUILD_TIMESTAMP_FORMAT_PROPERTY) : null);
        }
    
        public MavenBuildTimestamp(Instant time, String timestampFormat) {
            if (timestampFormat == null) {
                timestampFormat = DEFAULT_BUILD_TIMESTAMP_FORMAT;
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. maven-embedder/src/main/java/org/apache/maven/cli/logging/Slf4jConfigurationFactory.java

                        InputStream is = resource.openStream();
                        final Properties properties = new Properties();
                        if (is != null) {
                            try (InputStream in = is) {
                                properties.load(in);
                            }
                        }
                        String impl = properties.getProperty(slf4jBinding);
                        if (impl != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/MavenBuildTimestamp.java

         */
        @Deprecated
        public MavenBuildTimestamp(Date time, Properties properties) {
            this(time, properties != null ? properties.getProperty(BUILD_TIMESTAMP_FORMAT_PROPERTY) : null);
        }
    
        public MavenBuildTimestamp(Date time, String timestampFormat) {
            if (timestampFormat == null) {
                timestampFormat = DEFAULT_BUILD_TIMESTAMP_FORMAT;
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorTest.java

            Object value = ee.evaluate(expr);
    
            assertEquals(expr, value);
        }
    
        @Test
        void testPOMPropertyExtractionWithMissingProject_WithDotNotation() throws Exception {
            String key = "m2.name";
            String checkValue = "value";
    
            Properties properties = new Properties();
            properties.setProperty(key, checkValue);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/project/DefaultProjectBuilderConfiguration.java

        }
    
        public ProjectBuilderConfiguration setUserProperties(Properties userProperties) {
            this.userProperties = userProperties;
            return this;
        }
    
        public Properties getUserProperties() {
            if (userProperties == null) {
                userProperties = new Properties();
            }
    
            return userProperties;
        }
    
        public Properties getExecutionProperties() {
            return executionProperties;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 2.8K bytes
    - Viewed (0)
Back to top