Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Value (6.04 sec)

  1. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

        }
    
        /**
         * Sets the value of the context value of this project identified by the given key. If the supplied value is
         * <code>null</code>, the context value is removed from this project. Context values are intended to allow core
         * extensions to associate derived state with project instances.
         */
        public void setContextValue(String key, Object value) {
            if (context == null) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 56.6K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            a = a.substring(a.length() - expected.length()).replace('\\', '/');
            assertEquals(expected, a);
        }
    
        private void assertPathWithNormalizedFileSeparators(Object value) {
            assertEquals(new File(value.toString()).getPath(), value.toString());
        }
    
        private PomTestWrapper buildPom(String pomPath, String... profileIds) throws Exception {
            return buildPom(pomPath, null, null, profileIds);
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                // the defined parallism, while making sure the pool will not
                // be exhausted
                //
                return new ThreadPoolExecutor(
                        parallelism, Integer.MAX_VALUE, 0L, TimeUnit.MILLISECONDS, new LinkedBlockingQueue<>()) {
                    final AtomicInteger parked = new AtomicInteger();
    
                    @Override
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 56.9K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                }
            }
    
            return true;
        }
    
        private boolean hasExpression(String value) {
            return value != null && value.contains("${");
        }
    
        private boolean hasProjectExpression(String value) {
            return value != null && value.contains("${project.");
        }
    
        private boolean validateStringNotEmpty(
                String fieldName,
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 13:13:07 GMT 2024
    - 73.1K bytes
    - Viewed (0)
Back to top