Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,103 for _this3 (0.19 sec)

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

                this.session = request.getSession();
                this.validationLevel = request.getValidationLevel();
                this.locationTracking = request.isLocationTracking();
                this.twoPhaseBuilding = request.isTwoPhaseBuilding();
                this.source = request.getSource();
                this.projectBuild = request.isProjectBuild();
                this.processPlugins = request.isProcessPlugins();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverRequest.java

                    super(session);
                    this.requestType = nonNull(requestType, "requestType cannot be null");
                    this.project = project;
                    this.rootArtifact = rootArtifact;
                    this.root = root;
                    this.dependencies = unmodifiable(nonNull(dependencies, "dependencies cannot be null"));
                    this.managedDependencies =
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/XmlWriterRequest.java

                this.path = path;
                return this;
            }
    
            public XmlWriterRequestBuilder<T> outputStream(OutputStream outputStream) {
                this.outputStream = outputStream;
                return this;
            }
    
            public XmlWriterRequestBuilder<T> writer(Writer writer) {
                this.writer = writer;
                return this;
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Nov 17 15:52:15 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/Node.java

    @Immutable
    @Provider
    public interface Node {
    
        /**
         * @return artifact for this node
         */
        @Nullable
        Artifact getArtifact();
    
        /**
         * @return dependency for this node
         */
        @Nullable
        Dependency getDependency();
    
        /**
         * Gets the child nodes of this node.
         *
         * @return the child nodes of this node, never {@code null}
         */
        @Nonnull
        List<Node> getChildren();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/Log.java

         * The error's stacktrace will be output when this error level is enabled.
         *
         * @param content the message to log
         * @param error the error that caused this log
         */
        void debug(CharSequence content, Throwable error);
    
        /**
         * Sends an exception to the user in the <b>debug</b> error level.
         * The stack trace for this exception will be output when this error level is enabled.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/PathType.java

                return new String[0];
            }
        };
    
        /**
         * Returns the unique name of this path type, including the module to patch if any.
         * For example, if this type is {@link JavaPathType#MODULES}, then this method returns {@code "MODULES"}.
         * But if this type was created by {@code JavaPathType.patchModule("foo.bar")}, then this method returns
         * {@code "PATCH_MODULE:foo.bar"}.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderRequest.java

                this.session = session;
                return this;
            }
    
            public ProjectBuilderRequestBuilder path(Path path) {
                this.path = path;
                return this;
            }
    
            public ProjectBuilderRequestBuilder source(Source source) {
                this.source = source;
                return this;
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 30 23:39:19 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingResult.java

            this.projectId = (project != null)
                    ? project.getGroupId() + ':' + project.getArtifactId() + ':' + project.getVersion()
                    : "";
            this.pomFile = (project != null) ? project.getFile() : null;
            this.project = project;
            this.problems = problems != null ? problems : Collections.emptyList();
            this.dependencyResolutionResult = dependencyResolutionResult;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/project/DuplicateProjectException.java

            this(null, null, null, message);
        }
    
        /**
         * @deprecated use {@link #DuplicateProjectException(String, File, File, String)}
         */
        @Deprecated
        public DuplicateProjectException(String message, Exception e) {
            super(message, e);
            this.projectId = null;
            this.existingProjectFile = null;
            this.conflictingProjectFile = null;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultModelCache.java

            private final int hash;
    
            GavCacheKey(String groupId, String artifactId, String version, String tag) {
                this(gav(groupId, artifactId, version), tag);
            }
    
            GavCacheKey(String gav, String tag) {
                this.gav = gav;
                this.tag = tag;
                this.hash = Objects.hash(gav, tag);
            }
    
            private static String gav(String groupId, String artifactId, String version) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top