Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 203 for value (0.14 sec)

  1. maven-core/src/test/resources-project-builder/plugin-exec-config-order/wo-plugin-mgmt/pom.xml

                  </stringParams>
                  <propertiesParam>
                    <property>
                      <name>key1</name>
                      <value>value1</value>
                    </property>
                    <property>
                      <name>key2</name>
                      <value>value2</value>
                    </property>
                  </propertiesParam>
                </configuration>
              </execution>
            </executions>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.2K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/session/scope/internal/SessionScope.java

            return values.get(0);
        }
    
        public void exit() {
            if (values.isEmpty()) {
                throw new IllegalStateException();
            }
            values.remove(0);
        }
    
        public <T> void seed(Class<T> clazz, Provider<T> value) {
            getScopeState().seed(clazz, value);
        }
    
        public <T> void seed(Class<T> clazz, final T value) {
            seed(clazz, (Provider<T>) () -> value);
        }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Apr 23 12:52:20 GMT 2024
    - 6.8K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4.java

                            value = ReflectionValueExtractor.evaluate(pathExpression, ctx.getValue());
                            if (pathSeparator < expression.length() - 1) {
                                if (value instanceof Path) {
                                    value = ((Path) value).resolve(expression.substring(pathSeparator + 1));
                                } else {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 30 23:39:19 GMT 2024
    - 9.8K bytes
    - Viewed (0)
  4. maven-core/src/test/resources-project-builder/foo/sub/pom.xml

                    <property name="test.projects.name" value="basic" />
                    <property name="test.projects.version" value="1.0" />
                    <property name="test.projects.archetype" value="${test.projects.name}-${test.projects.version}" />
                    <property name="test.projects.source.directory" value="${test.projects.archetype}" />
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Sep 22 08:59:31 GMT 2023
    - 15.6K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/configuration/DefaultBeanConfiguratorTest.java

            Xpp3Dom config = toConfig("<file>${test}</file>");
    
            BeanConfigurationValuePreprocessor preprocessor = (value, type) -> {
                if (value != null && value.startsWith("${") && value.endsWith("}")) {
                    return value.substring(2, value.length() - 1);
                }
                return value;
            };
    
            BeanConfigurationPathTranslator translator = path -> new File("base", path.getPath()).getAbsoluteFile();
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  6. maven-builder-support/src/test/java/org/apache/maven/building/DefaultProblemTest.java

            problem = new DefaultProblem(null, null, null, Integer.MAX_VALUE, -1, null);
            assertEquals(Integer.MAX_VALUE, problem.getLineNumber());
    
            // this case is not specified, might also return -1
            problem = new DefaultProblem(null, null, null, Integer.MIN_VALUE, -1, null);
            assertEquals(Integer.MIN_VALUE, problem.getLineNumber());
        }
    
        @Test
        void testGetColumnNumber() {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 4.9K bytes
    - Viewed (0)
  7. maven-compat/src/test/java/org/apache/maven/project/inheritance/t02/ProjectInheritanceTest.java

     * A test which demonstrates maven's recursive inheritance where
     * a distinct value is taken from each parent contributing to
     * the final model of the project being assembled. There is no
     * overriding going on amongst the models being used in this test:
     * each model in the lineage is providing a value that is not present
     * anywhere else in the lineage. We are just making sure that values
     * down in the lineage are bubbling up where they should.
     *
     */
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 6.2K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExceptionTest.java

                            + LS + "  <toAddresses>"
                            + LS + "    <property>"
                            + LS + "      <name>KEY</name>"
                            + LS + "      <value>VALUE</value>"
                            + LS + "    </property>"
                            + LS + "  </toAddresses>"
                            + LS + "</configuration>."
                            + LS,
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 6.7K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/configuration/BeanConfigurationValuePreprocessor.java

         * unmarshalled into that type. The preprocessor is not required to perform any type conversion but should rather
         * filter out incompatible values from its result.
         *
         * @param value The configuration value to preprocess, must not be {@code null}.
         * @param type The target type of the value, may be {@code null}.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.9K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/project/interpolation/PathTranslatingPostProcessor.java

        }
    
        public Object execute(String expression, Object value) {
            expression = ValueSourceUtils.trimPrefix(expression, expressionPrefixes, true);
    
            if (projectDir != null && value != null && unprefixedPathKeys.contains(expression)) {
                return pathTranslator.alignToBaseDirectory(String.valueOf(value), projectDir);
            }
    
            return value;
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 2.1K bytes
    - Viewed (0)
Back to top