Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 83 for getValue (0.29 sec)

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

                        String key = "env."
                                + (caseSensitive ? entry.getKey() : entry.getKey().toUpperCase(Locale.ENGLISH));
                        tmp.setProperty(key, entry.getValue());
                    }
                    envVars = tmp;
                }
    
                props.putAll(envVars);
            }
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Sep 22 06:01:36 GMT 2023
    - 2.4K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/mapping/Lifecycle.java

                phases.put(e.getKey(), e.getValue().toString());
            }
            return phases;
        }
    
        @Deprecated
        public void setPhases(Map<String, String> phases) {
            Map<String, LifecyclePhase> lphases = new LinkedHashMap<>();
            for (Map.Entry<String, String> e : phases.entrySet()) {
                lphases.put(e.getKey(), new LifecyclePhase(e.getValue()));
            }
            setLifecyclePhases(lphases);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 2.6K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/profile/PropertyProfileActivator.java

            String sysValue = context.getUserProperties().get(name);
            if (sysValue == null) {
                sysValue = context.getSystemProperties().get(name);
            }
    
            String propValue = property.getValue();
            if (propValue != null && !propValue.isEmpty()) {
                boolean reverseValue = false;
                if (propValue.startsWith("!")) {
                    reverseValue = true;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 3.6K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/ProfileActivationFilePathInterpolator.java

            Path basedir = context.getProjectDirectory();
    
            if (basedir != null) {
                interpolator.addValueSource(new AbstractValueSource(false) {
                    @Override
                    public Object getValue(String expression) {
                        if ("basedir".equals(expression) || "project.basedir".equals(expression)) {
                            return basedir.toAbsolutePath().toString();
                        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  5. maven-api-impl/src/test/java/org/apache/maven/internal/impl/standalone/TestApiStandalone.java

            Map.Entry<Artifact, Path> res = session.resolveArtifact(coord);
            assertNotNull(res);
            assertNotNull(res.getValue());
            assertTrue(Files.exists(res.getValue()));
    
            Node node = session.collectDependencies(session.createDependencyCoordinate(coord));
            assertNotNull(node);
            assertEquals(8, node.getChildren().size());
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/SettingsUtilsV4.java

                if (modelProp != null) {
                    ActivationProperty prop = ActivationProperty.newBuilder()
                            .name(modelProp.getName())
                            .value(modelProp.getValue())
                            .build();
                    activation.property(prop);
                }
    
                org.apache.maven.api.model.ActivationOS modelOs = modelActivation.getOs();
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 13.4K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/settings/SettingsUtilsTest.java

    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 6.7K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    java.util.Properties envars; public void EnvarBasedValueSourc() throws java.io.IOException; public Object getValue(String); } org/codehaus/plexus/util/interpolation/MapBasedValueSource.class package org.codehaus.plexus.util.interpolation; public synchronized class MapBasedValueSource implements ValueSource { private final java.util.Map values; public void MapBasedValueSource(java.util.Map); public Object getValue(String); } org/codehaus/plexus/util/interpolation/ObjectBasedValueSour.class package org.codeh...
    Archive
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 164.6K bytes
    - Viewed (0)
  9. maven-core/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    java.util.Properties envars; public void EnvarBasedValueSourc() throws java.io.IOException; public Object getValue(String); } org/codehaus/plexus/util/interpolation/MapBasedValueSource.class package org.codehaus.plexus.util.interpolation; public synchronized class MapBasedValueSource implements ValueSource { private final java.util.Map values; public void MapBasedValueSource(java.util.Map); public Object getValue(String); } org/codehaus/plexus/util/interpolation/ObjectBasedValueSour.class package org.codeh...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Oct 23 23:48:02 GMT 2009
    - 164.6K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/project/interpolation/AbstractStringBasedModelInterpolator.java

            ValueSource basedirValueSource = new PrefixedValueSourceWrapper(
                    new AbstractValueSource(false) {
    
                        public Object getValue(String expression) {
                            if (projectDir != null && "basedir".equals(expression)) {
                                return projectDir.getAbsolutePath();
                            }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 13.5K bytes
    - Viewed (0)
Back to top