Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for evaluation (0.16 sec)

  1. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

                            value = config.getAttribute("default-value", null);
                        }
                    } catch (ExpressionEvaluationException e) {
                        String msg = "Error evaluating the expression '" + expression + "' for configuration value '"
                                + configuration.getName() + "'";
                        throw new ComponentConfigurationException(configuration, msg, e);
                    }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 42.5K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4Test.java

            mavenSession.getRequest().setRootDirectory(path);
            DefaultModelBuildingRequest mbr = new DefaultModelBuildingRequest();
    
            PluginParameterExpressionEvaluatorV4 evaluator =
                    new PluginParameterExpressionEvaluatorV4(mavenSession.getSession(), null);
    
            DefaultPlexusConfiguration configuration = new DefaultPlexusConfiguration("config");
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 19.2K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/session/scope/internal/SessionScope.java

        }
    
        public <T> void seed(Class<T> clazz, final T value) {
            seed(clazz, (Provider<T>) () -> value);
        }
    
        public <T> Provider<T> scope(final Key<T> key, final Provider<T> unscoped) {
            // Lazy evaluating provider
            return () -> {
                if (values.isEmpty()) {
                    return createProxy(key, unscoped);
                } else {
                    return getScopeState().scope(key, unscoped).get();
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Apr 23 12:52:20 GMT 2024
    - 6.8K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/configuration/internal/EnhancedConfigurationConverter.java

                    } else {
                        result = evaluator.evaluate(value);
                    }
                }
                if (null == result && configuration.getChildCount() == 0) {
                    value = configuration.getAttribute("default-value");
                    if (null != value && !value.isEmpty()) {
                        if (evaluator instanceof TypeAwareExpressionEvaluator) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 07:40:37 GMT 2024
    - 4.6K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverRequest.java

             * because it can resolve ambiguities when a path could be of many types.
             *
             * @param pathTypeFilter predicate evaluating whether a path type should be included in the result
             * @return {@code this} for method call chaining
             */
            @Nonnull
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 9.1K bytes
    - Viewed (0)
Back to top