Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for backend (0.2 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/Source.java

     */
    @Experimental
    public interface Source {
    
        /**
         * Provides access the file to be parsed, if this source is backed by a file.
         *
         * @return the underlying {@code Path}, or {@code null} if this source is not backed by a file
         */
        @Nullable
        Path getPath();
    
        /**
         * Creates a new byte stream to the source contents.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  2. maven-builder-support/src/main/java/org/apache/maven/building/FileSource.java

        /**
         * Creates a new source backed by the specified file.
         *
         * @param file The file, must not be {@code null}.
         * @deprecated Use {@link #FileSource(Path)} instead.
         */
        @Deprecated
        public FileSource(File file) {
            this(Objects.requireNonNull(file, "file cannot be null").toPath());
        }
    
        /**
         * Creates a new source backed by the specified file.
         *
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Feb 26 17:04:44 GMT 2024
    - 2.9K bytes
    - Viewed (0)
  3. maven-artifact/src/main/java/org/apache/maven/artifact/repository/ArtifactRepository.java

         */
        List<String> findVersions(Artifact artifact);
    
        /**
         * Indicates whether this repository is backed by actual projects. For instance, the build reactor or IDE workspace
         * are examples of such repositories.
         *
         * @return {@code true} if the repository is backed by actual projects, {@code false} otherwise.
         * @since 3.0-beta-1
         */
        boolean isProjectAware();
    
        /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Feb 23 17:14:45 GMT 2023
    - 4.2K bytes
    - Viewed (0)
  4. maven-builder-support/src/main/java/org/apache/maven/building/UrlSource.java

    /**
     * Wraps an ordinary {@link URL} as a source.
     *
     */
    public class UrlSource implements Source {
    
        private final URL url;
    
        private final int hashCode;
    
        /**
         * Creates a new source backed by the specified URL.
         *
         * @param url The file, must not be {@code null}.
         */
        public UrlSource(URL url) {
            this.url = Objects.requireNonNull(url, "url cannot be null");
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Feb 26 17:04:44 GMT 2024
    - 2.3K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-active-collections/1.0-beta-1/plexus-active-collections-1.0-beta-1.jar

    subList(int, int); public Object[] toArray(); public Object[] toArray(Object[]); } META-INF/maven/org.codehaus.plexus/plexus-active-collections/pom.xml 4.0.0 plexus-components org.codehaus.plexus 1.1.6 plexus-active-collections 1.0-beta-1 Plexus Container-Backed Active Collections org.codehaus.plexus plexus-component-api 1.0-alpha-16 org.codehaus.plexus plexus-container-default 1.0-alpha-16 junit junit 3.8.1 test maven-surefire-plugin **/TestComponent.java **/TestBadComponent.java **/*TCK.java scm:svn:ht...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 15.6K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-active-collections/1.0-beta-1/plexus-active-collections-1.0-beta-1.jar

    subList(int, int); public Object[] toArray(); public Object[] toArray(Object[]); } META-INF/maven/org.codehaus.plexus/plexus-active-collections/pom.xml 4.0.0 plexus-components org.codehaus.plexus 1.1.6 plexus-active-collections 1.0-beta-1 Plexus Container-Backed Active Collections org.codehaus.plexus plexus-component-api 1.0-alpha-16 org.codehaus.plexus plexus-container-default 1.0-alpha-16 junit junit 3.8.1 test maven-surefire-plugin **/TestComponent.java **/TestBadComponent.java **/*TCK.java scm:svn:ht...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 15.6K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/Project.java

            return getPackaging().language();
        }
    
        /**
         * Returns the project POM artifact, which is the artifact of the POM of this project. Every project have a POM
         * artifact, even if the existence of backing POM file is NOT a requirement (i.e. for some transient projects).
         *
         * @see org.apache.maven.api.services.ArtifactManager#getPath(Artifact)
         */
        @Nonnull
        default Artifact getPomArtifact() {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Feb 05 09:42:51 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  8. maven-core/plugin-manager.txt

     * For a particular application plugin there will be a declarative descriptor for that plugin type.
     *
     * - nexus - the plugin class - UI to contribute - what JS to hook into the UI - what resources to
     * load into the UI - having packed or unpacked plugins, and positioning resources if necessary -
     * maven can work out of the classloader, nexus plugins probably couldn't give the js and image
     * resources
     *
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jul 18 22:45:13 GMT 2022
    - 12.9K bytes
    - Viewed (0)
  9. maven-builder-support/src/main/java/org/apache/maven/building/StringSource.java

        private final int hashCode;
    
        /**
         * Creates a new source backed by the specified string.
         *
         * @param content The String representation, may be empty or {@code null}.
         */
        public StringSource(CharSequence content) {
            this(content, null);
        }
    
        /**
         * Creates a new source backed by the specified string.
         *
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.9K bytes
    - Viewed (0)
  10. maven-builder-support/src/main/java/org/apache/maven/building/Source.java

     * under the License.
     */
    package org.apache.maven.building;
    
    import java.io.IOException;
    import java.io.InputStream;
    
    /**
     * Provides access to the contents of a source independently of the backing store (e.g. file system, database, memory).
     *
     */
    public interface Source {
    
        /**
         * Gets a byte stream to the source contents. Closing the returned stream is the responsibility of the caller.
         *
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.7K bytes
    - Viewed (0)
Back to top