Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 80 for Device (0.4 sec)

  1. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    static String addAndDeHump(String); } org/codehaus/plexus/util/SweeperPool$Sweeper.class package org.codehaus.plexus.util; synchronized class SweeperPool$Sweeper implements Runnable { private final transient SweeperPool pool; private transient boolean service; private final transient int sweepInterval; public void SweeperPool$Sweeper(SweeperPool, int); public void run(); public synchronized void start(); public synchronized void stop(); private final void debug(String); private void runSweep(); } org/...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 164.6K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainsBuilder.java

    import org.apache.maven.api.Service;
    import org.apache.maven.api.Session;
    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.annotations.Nonnull;
    
    /**
     * Builds the effective toolchains from a user toolchains file and/or a global toolchains file.
     *
     * @since 4.0.0
     */
    @Experimental
    public interface ToolchainsBuilder extends Service {
    
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 23:54:53 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyCoordinateFactory.java

     * under the License.
     */
    package org.apache.maven.api.services;
    
    import org.apache.maven.api.ArtifactCoordinate;
    import org.apache.maven.api.DependencyCoordinate;
    import org.apache.maven.api.Service;
    import org.apache.maven.api.Session;
    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.annotations.Nonnull;
    import org.apache.maven.api.model.Dependency;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 3.4K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactInstaller.java

     * under the License.
     */
    package org.apache.maven.api.services;
    
    import java.util.Collection;
    import java.util.Collections;
    
    import org.apache.maven.api.Artifact;
    import org.apache.maven.api.Service;
    import org.apache.maven.api.Session;
    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.annotations.Nonnull;
    
    /**
     * Installs {@link Artifact}s to the local repository.
     *
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Nov 17 15:52:15 GMT 2023
    - 2.9K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/services/SettingsBuilder.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.api.services;
    
    import java.nio.file.Path;
    import java.util.List;
    
    import org.apache.maven.api.Service;
    import org.apache.maven.api.Session;
    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.annotations.Nonnull;
    import org.apache.maven.api.settings.Settings;
    
    /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/plugin/internal/MavenPluginDependenciesValidator.java

     */
    package org.apache.maven.plugin.internal;
    
    import org.eclipse.aether.RepositorySystemSession;
    import org.eclipse.aether.artifact.Artifact;
    import org.eclipse.aether.resolution.ArtifactDescriptorResult;
    
    /**
     * Service responsible for validating plugin dependencies.
     *
     * @since 3.9.3
     */
    interface MavenPluginDependenciesValidator {
        /**
         * Checks mojo dependency issues.
         */
        void validate(
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed May 24 06:50:28 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/plugin/internal/MavenPluginConfigurationValidator.java

    import org.apache.maven.plugin.descriptor.MojoDescriptor;
    import org.codehaus.plexus.component.configurator.expression.ExpressionEvaluator;
    import org.codehaus.plexus.configuration.PlexusConfiguration;
    
    /**
     * Service responsible for validating plugin configuration.
     *
     */
    public interface MavenPluginConfigurationValidator {
        /**
         * Checks mojo configuration issues.
         */
        void validate(
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 18 11:03:17 GMT 2023
    - 1.5K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/Project.java

    /**
     * Interface representing a Maven project which can be created using the
     * {@link org.apache.maven.api.services.ProjectBuilder} service.
     * Such objects are immutable and plugin that wish to modify such objects
     * need to do so using the {@link org.apache.maven.api.services.ProjectManager}
     * service.
     * <p>
     * Projects are created using the {@code ProjectBuilder} from a POM file
     * (usually named {@code pom.xml}) on the file system.
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Feb 05 09:42:51 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultArtifactDeployer.java

    import org.eclipse.aether.deployment.DeployResult;
    import org.eclipse.aether.deployment.DeploymentException;
    
    import static org.apache.maven.internal.impl.Utils.nonNull;
    
    /**
     * Implementation of {@link ArtifactDeployer} service.
     */
    @Named
    @Singleton
    public class DefaultArtifactDeployer implements ArtifactDeployer {
    
        @Override
        public void deploy(@Nonnull ArtifactDeployerRequest request) {
            nonNull(request, "request");
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 2.4K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/api/services/model/RootLocator.java

     * One notable exception is the computation of the early {@code session.rootDirectory}
     * property which happens very early.  The implementation used in this case
     * will be discovered using the JDK service mechanism.
     *
     * The default implementation will look for a {@code .mvn} child directory
     * or a {@code pom.xml} containing the {@code root="true"} attribute.
     */
    public interface RootLocator {
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2.4K bytes
    - Viewed (0)
Back to top