Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 362 for Source (0.4 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelProblem.java

                Severity severity,
                Version version,
                String source,
                int lineNumber,
                int columnNumber,
                String modelId,
                Exception exception) {
            this.message = message;
            this.severity = (severity != null) ? severity : Severity.ERROR;
            this.source = (source != null) ? source : "";
            this.lineNumber = lineNumber;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Feb 01 16:25:04 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraphEdge.java

        }
    
        @Override
        public String toString() {
            return "[ " + "FROM:("
                    + (source == null ? "no source" : (source.md == null ? "no source MD" : source.md.toString())) + ") "
                    + "TO:(" + (target == null ? "no target" : (target.md == null ? "no target MD" : target.md.toString()))
                    + ") " + "version=" + version + ", scope=" + (scope == null ? "null" : scope.getScope()) + ", depth="
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultModelCache.java

            }
        }
    
        private static final class SourceCacheKey {
            private final Source source;
    
            private final String tag;
    
            private final int hash;
    
            SourceCacheKey(Source source, String tag) {
                this.source = source;
                this.tag = tag;
                this.hash = Objects.hash(source, tag);
            }
    
            @Override
            public String toString() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 22 17:27:48 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/plugin/MojoExecution.java

            this.configuration = null;
        }
    
        public MojoExecution(MojoDescriptor mojoDescriptor, String executionId, Source source) {
            this.mojoDescriptor = mojoDescriptor;
            this.executionId = executionId;
            this.configuration = null;
            this.source = source;
        }
    
        public MojoExecution(MojoDescriptor mojoDescriptor, String executionId) {
            this.mojoDescriptor = mojoDescriptor;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 03 15:52:23 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  5. maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/building/DefaultToolchainsBuildingRequest.java

    import org.apache.maven.building.Source;
    
    /**
     * Collects toolchains that control building of effective toolchains.
     *
     * @since 3.3.0
     */
    public class DefaultToolchainsBuildingRequest implements ToolchainsBuildingRequest {
        private Source globalToolchainsSource;
    
        private Source userToolchainsSource;
    
        @Override
        public Source getGlobalToolchainsSource() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. maven-settings-builder/src/main/java/org/apache/maven/settings/building/SettingsBuildingRequest.java

        /**
         * Gets the global settings source.
         *
         * @return The global settings source or {@code null} if none.
         */
        SettingsSource getGlobalSettingsSource();
    
        /**
         * Sets the global settings source. If both user settings and a global settings are given, the user settings take
         * precedence.
         *
         * @param globalSettingsSource The global settings source, may be {@code null} to disable global settings.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/inheritance/DefaultInheritanceAssembler.java

                mergePlugin_Version(builder, target, source, sourceDominant, context);
                mergePlugin_Extensions(builder, target, source, sourceDominant, context);
                mergePlugin_Executions(builder, target, source, sourceDominant, context);
                mergePlugin_Dependencies(builder, target, source, sourceDominant, context);
                return builder.build();
            }
    
            @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/management/DefaultPluginManagementInjector.java

                    }
                }
                return model;
            }
    
            private Build mergePluginContainerPlugins(Build target, PluginContainer source) {
                List<Plugin> src = source.getPlugins();
                if (!src.isEmpty()) {
                    Map<Object, Plugin> managedPlugins = new LinkedHashMap<>(src.size() * 2);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  9. maven-settings-builder/src/main/java/org/apache/maven/settings/building/SettingsProblem.java

     * that exhibits the problem.
     *
     */
    public interface SettingsProblem {
    
        /**
         * The different severity levels for a problem, in decreasing order.
         */
        enum Severity {
            FATAL, //
            ERROR, //
            WARNING //
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. maven-compat/src/test/java/org/apache/maven/repository/legacy/resolver/DefaultArtifactCollectorTest.java

        @Inject
        private ArtifactFactory artifactFactory;
    
        private ArtifactSpec projectArtifact;
    
        private Source source;
    
        private static final String GROUP_ID = "test";
    
        @BeforeEach
        void setUp() throws Exception {
            source = new Source();
    
            projectArtifact = createArtifactSpec("project", "1.0", null);
        }
    
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 42.5K bytes
    - Viewed (0)
Back to top