Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 126 for implementation (0.23 sec)

  1. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar

    as a servlet container), but still allow each web application to provide its own LogFactory implementation, if it so desires. An instance of this class will then be created, and cached per class loader. The Default LogFactory Implementation The Logging Package APIs include a default LogFactory implementation class ( org.apache.commons.logging.impl.LogFactoryImpl) that is selected if no other implementation class name can be discovered. Its primary purpose is to create (as necessary) and return Log...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 37.1K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/Language.java

     * This extensible enum has two defined values, {@link #NONE} and {@link #JAVA_FAMILY},
     * but can be extended by registering a {@code org.apache.maven.api.spi.LanguageProvider}.
     * <p>
     * Implementation must have {@code equals()} and {@code hashCode()} implemented, so implementations of this interface
     * can be used as keys.
     *
     * @since 4.0.0
     */
    @Experimental
    @Immutable
    @SuppressWarnings("checkstyle:InterfaceIsType")
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Feb 05 09:42:51 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  3. maven-compat/src/test/resources/org/apache/maven/artifact/resolver/ArtifactResolverTest.xml

    -->
    
    <plexus>
      <components>
        <component>
          <role>org.apache.maven.artifact.resolver.ArtifactResolver</role>
          <role-hint>default</role-hint>
          <implementation>org.apache.maven.artifact.resolver.DefaultArtifactResolver</implementation>
          <isolated-realm>false</isolated-realm>
          <requirements>
            <requirement>
              <role>org.codehaus.plexus.logging.Logger</role>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Dec 30 20:43:28 GMT 2011
    - 2.7K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/remote-repo-1/maven-test/jars/maven-test-b-1.0.jar

    org.apache.commons.* Build-Jdk: 1.4.1_01 Extension-Name: commons-codec Specification-Version: Specification-Vendor: Apache Software Foundation Specification-Title: A collection of simple and common encoders and de coders Implementation-Version: 1.1 Implementation-Vendor: Apache Software Foundation Implementation-Vendor-Id: org/apache/commons/codec/base64/Base64.class package org.apache.commons.codec.base64; public final synchronized class Base64 { protected static final String DEFAULT_CHAR_ENCODING = ISO-8859-1;...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Mon Aug 09 19:02:31 GMT 2004
    - 18.4K 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
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 252 bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/internal/transformation/TransformationFailedException.java

     * under the License.
     */
    package org.apache.maven.internal.transformation;
    
    /**
     * Exception that may be thrown by the {@link org.apache.maven.artifact.Artifact#getFile()}
     * implementation.
     */
    public class TransformationFailedException extends RuntimeException {
    
        public TransformationFailedException(Throwable cause) {
            super(cause);
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 28 17:17:10 GMT 2023
    - 1.1K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultDependencyProperties.java

    import java.util.Map;
    
    import org.apache.maven.api.DependencyProperties;
    import org.apache.maven.api.annotations.Nonnull;
    
    import static org.apache.maven.internal.impl.Utils.nonNull;
    
    /**
     * Default implementation of artifact properties.
     */
    public class DefaultDependencyProperties implements DependencyProperties {
        private final Map<String, String> properties;
    
        public DefaultDependencyProperties(String... flags) {
    Java
    - Registered: Sun Feb 04 03:35:10 GMT 2024
    - Last Modified: Thu Dec 07 20:05:02 GMT 2023
    - 2.2K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/execution/AbstractExecutionListener.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.execution;
    
    /**
     * Provides a skeleton implementation for execution listeners. The methods of this class are empty.
     *
     */
    public class AbstractExecutionListener implements ExecutionListener {
    
        public void projectDiscoveryStarted(ExecutionEvent event) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.6K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelVersionProcessor.java

    import org.apache.maven.api.di.Named;
    import org.apache.maven.api.di.Singleton;
    import org.apache.maven.api.services.ModelBuilderRequest;
    import org.apache.maven.api.services.model.*;
    
    /**
     * 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
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2.3K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/toolchain/java/JavaToolchainImpl.java

    import org.apache.maven.toolchain.DefaultToolchain;
    import org.apache.maven.toolchain.model.ToolchainModel;
    import org.apache.maven.utils.Os;
    import org.slf4j.Logger;
    
    /**
     * JDK toolchain implementation.
     *
     * @since 2.0.9, renamed from DefaultJavaToolChain in 3.2.4
     */
    public class JavaToolchainImpl extends DefaultToolchain implements JavaToolchain {
        private String javaHome;
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Sep 22 06:01:36 GMT 2023
    - 2.4K bytes
    - Viewed (0)
Back to top