Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 112 for Implementation (0.16 sec)

  1. maven-model/src/main/java/org/apache/maven/model/io/xpp3/MavenXpp3Reader.java

            /**
             * Interpolate the value read from the xpp3 document
             * @param source The source value
             * @param fieldName A description of the field being interpolated. The implementation may use this to
             *                           log stuff.
             * @return The interpolated value.
             */
            String transform(String source, String fieldName);
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Oct 20 07:14:01 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/package-info.java

    // CHECKSTYLE_OFF: RegexpHeader
    /**
     * Contains implementation of the {@link org.apache.maven.api.xml.XmlNode} interface and related classes.
     */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 03 15:52:23 UTC 2023
    - 185 bytes
    - Viewed (0)
  3. maven-plugin-api/src/test/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilderTest.java

            assertEquals("${jar.finalName}", pc.getValue());
            assertEquals("${project.build.finalName}", pc.getAttribute("default-value"));
            assertEquals("java.lang.String", pc.getAttribute("implementation"));
    
            Parameter mp = md.getParameters().get(0);
    
            assertEquals("finalName", mp.getName());
            assertEquals("jarName", mp.getAlias());
            assertEquals("java.lang.String", mp.getType());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Nov 17 15:51:47 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/AboutTheStubs.html

    There will be three items in the task list for this dataset.
    
    The stubs also exist at different "levels", where one test might wire stubs into a specific live implementation.
    In the next test that same "live implementation" will be used in a stub version instead.
    
    Not all live services have stubs, but can be added as needed.
    </body>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jul 02 16:47:10 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4-javadoc-resources.jar.lastUpdated

    #NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
    #Thu Sep 24 16:40:08 CEST 2020
    https\://repo.maven.apache.org/maven2/.lastUpdated=1600958408640
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 252 bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/PathScope.java

     * {@link #TEST_COMPILE} and {@link #TEST_RUNTIME}, but can be extended by registering a
     * {@code org.apache.maven.api.spi.PathScopeProvider}.
     * <p>
     * Implementation must have {@code equals()} and {@code hashCode()} implemented, so implementations of this interface
     * can be used as keys.
     *
     * @since 4.0.0
     * @see org.apache.maven.api.services.DependencyResolver
     * @see DependencyScope
     */
    @Experimental
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/LifecycleProvider.java

     * leveraged using the {@link org.apache.maven.api.plugin.annotations.Execute}
     * annotation.  If a {@code META-INF/maven/lifecycle.xml} file is packaged
     * in the plugin, Maven will provide a default implementation that will parse
     * the file and return the contained lifecycle definitions.
     *
     * @since 4.0.0
     */
    @Experimental
    @Consumer
    public interface LifecycleProvider {
    
        List<Lifecycle> getLifecycles();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:54:53 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. maven-slf4j-provider/src/main/java/org/apache/maven/slf4j/MavenServiceProvider.java

    import org.slf4j.spi.MDCAdapter;
    import org.slf4j.spi.SLF4JServiceProvider;
    
    public class MavenServiceProvider implements SLF4JServiceProvider {
    
        /**
         * Declare the version of the SLF4J API this implementation is compiled against.
         * The value of this field is modified with each major release.
         */
        // to avoid constant folding by the compiler, this field must *not* be final
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 06:36:58 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/properties/internal/SystemProperties.java

     */
    package org.apache.maven.properties.internal;
    
    import java.util.Properties;
    
    /**
     * @since 3.2.3
     */
    public class SystemProperties {
        /**
         * Thread-safe System.properties copy implementation.
         */
        public static void addSystemProperties(Properties props) {
            props.putAll(getSystemProperties());
        }
    
        /**
         * Returns a copy of {@link System#getProperties()} in a thread-safe manner.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 2K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/DefaultModelVersionProcessor.java

    import javax.inject.Named;
    import javax.inject.Singleton;
    
    import java.util.Properties;
    
    import org.apache.maven.model.building.ModelBuildingRequest;
    
    /**
     * Maven default implementation of the {@link ModelVersionProcessor} to support
     * <a href="https://maven.apache.org/maven-ci-friendly.html">CI Friendly Versions</a>
     */
    @Named
    @Singleton
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Jan 01 20:08:55 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top