Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 130 for white (0.22 sec)

  1. maven-bom/src/site/site.xml

        <src>https://maven.apache.org/images/apache-maven-project.png</src>
        <href>https://maven.apache.org/</href>
      </bannerLeft>
    
      <bannerRight>
        <src>https://maven.apache.org/images/maven-logo-black-on-white.png</src>
        <href>https://maven.apache.org/</href>
      </bannerRight>
    
      <skin>
        <groupId>org.apache.maven.skins</groupId>
        <artifactId>maven-fluido-skin</artifactId>
        <version>1.11.2</version>
      </skin>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 24 21:16:47 GMT 2024
    - 2.4K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    font-size: 145% } /* Table colors */ .TableHeadingColor { background: #CCCCFF; color:#000000 } /* Dark mauve */ .TableSubHeadingColor { background: #EEEEFF; color:#000000 } /* Light mauve */ .TableRowColor { background: #FFFFFF; color:#000000 } /* White */ /* Font used in left-hand frame lists */ .FrameTitleFont { font-size: 100%; font-family: Helvetica, Arial, sans-serif; color:#000000 } .FrameHeadingFont { font-size: 90%; font-family: Helvetica, Arial, sans-serif; color:#000000 } .FrameItemFont...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 236.8K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/DependencyResolutionResult.java

        List<Dependency> getUnresolvedDependencies();
    
        /**
         * Gets the errors that occurred while building the dependency graph.
         *
         * @return The errors that occurred while building the dependency graph, never {@code null}.
         */
        List<Exception> getCollectionErrors();
    
        /**
         * Gets the errors that occurred while resolving the specified dependency.
         *
    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)
  4. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/DefaultRepositoryMetadataManager.java

                try (OutputStream out = Files.newOutputStream(metadataFile.toPath())) {
                    new MetadataStaxWriter().write(out, metadata.getDelegate());
                } catch (IOException | XMLStreamException e) {
                    String msg = "Could not write fixed metadata to " + metadataFile + ": " + e.getMessage();
                    if (getLogger().isDebugEnabled()) {
                        getLogger().warn(msg, e);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 18.9K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomArtifactTransformer.java

                throws ModelBuildingException, XMLStreamException, IOException {
            Model model = builder.build(session, project, src);
            write(model, tgt);
        }
    
        private void deferDeleteFile(Path generatedFile) {
            toDelete.add(generatedFile.toAbsolutePath());
        }
    
        @PreDestroy
        private void doDeleteFiles() {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 8K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/execution/BuildResumptionPersistenceException.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.execution;
    
    /**
     * This exception will be thrown when something fails while persisting build resumption data.
     * @see BuildResumptionDataRepository#persistResumptionData
     */
    public class BuildResumptionPersistenceException extends Exception {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 1.2K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ModelBuildingListener.java

     * under the License.
     */
    package org.apache.maven.api.services.model;
    
    /**
     * Defines events that the model builder fires during construction of the effective model. When a listener encounters
     * errors while processing the event, it can report these problems via {@link ModelBuildingEvent#problems()}.
     */
    public interface ModelBuildingListener {
    
        /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/ProjectBuildFailureException.java

     */
    package org.apache.maven;
    
    import org.apache.maven.plugin.MojoFailureException;
    
    /**
     * Exception which occurs when a normal (i.e. non-aggregator) mojo fails to
     * execute. In this case, the mojo failed while executing against a particular
     * project instance, so we can wrap the {@link MojoFailureException} with context
     * information including projectId that caused the failure.
     *
     *
     */
    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)
  9. maven-api-impl/src/main/java/org/apache/maven/api/services/model/RootLocator.java

                throw new IllegalStateException(getNoRootMessage());
            }
            return rootDirectory;
        }
    
        @Nullable
        default Path findRoot(Path basedir) {
            Path rootDirectory = basedir;
            while (rootDirectory != null && !isRootDirectory(rootDirectory)) {
                rootDirectory = rootDirectory.getParent();
            }
            return rootDirectory;
        }
    
        @Nonnull
        default String getNoRootMessage() {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2.4K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/project/ProjectBuildingException.java

            this.projectId = projectId;
            this.pomFile = pomFile;
        }
    
        public ProjectBuildingException(List<ProjectBuildingResult> results) {
            super("Some problems were encountered while processing the POMs");
            this.projectId = "";
            this.results = results;
        }
    
        public File getPomFile() {
            return pomFile;
        }
    
        /**
         * @deprecated use {@link #getPomFile()}
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3K bytes
    - Viewed (0)
Back to top