Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 714 for _this3 (0.04 sec)

  1. maven-artifact/src/main/java/org/apache/maven/artifact/InvalidArtifactRTException.java

            this.groupId = groupId;
            this.artifactId = artifactId;
            this.version = version;
            this.type = type;
            this.baseMessage = message;
        }
    
        public InvalidArtifactRTException(
                String groupId, String artifactId, String version, String type, String message, Throwable cause) {
            super(cause);
    
            this.groupId = groupId;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraphEdge.java

                String version, boolean resolved, ArtifactScopeEnum scope, String artifactUri, int depth, int pomOrder) {
            super();
            this.version = version;
            this.scope = scope;
            this.artifactUri = artifactUri;
            this.depth = depth;
            this.resolved = resolved;
            this.pomOrder = pomOrder;
        }
        // ----------------------------------------------------------------------------
        /**
    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-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultMessageBuilder.java

        public DefaultMessageBuilder() {
            this(new StringBuilder());
        }
    
        public DefaultMessageBuilder(StringBuilder buffer) {
            this.buffer = buffer;
        }
    
        @Override
        public MessageBuilder style(String style) {
            return this;
        }
    
        @Override
        public MessageBuilder resetStyle() {
            return this;
        }
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. api/maven-api-model/src/main/java/org/apache/maven/api/model/InputLocation.java

        private final Map<Object, InputLocation> locations;
    
        public InputLocation(InputSource source) {
            this.lineNumber = -1;
            this.columnNumber = -1;
            this.source = source;
            this.locations = Collections.singletonMap(0, this);
        }
    
        public InputLocation(int lineNumber, int columnNumber) {
            this(lineNumber, columnNumber, null, null);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Sep 05 16:06:44 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactDeployerRequest.java

                this.session = session;
                return this;
            }
    
            @Nonnull
            public ArtifactDeployerRequestBuilder repository(RemoteRepository repository) {
                this.repository = repository;
                return this;
            }
    
            public ArtifactDeployerRequestBuilder artifacts(Collection<Artifact> artifacts) {
                this.artifacts = artifacts;
                return this;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Mar 23 05:29:39 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. api/maven-api-model/src/main/java/org/apache/maven/api/model/InputSource.java

        private final List<InputSource> inputs;
    
        public InputSource(String modelId, String location) {
            this.modelId = modelId;
            this.location = location;
            this.inputs = null;
        }
    
        public InputSource(Collection<InputSource> inputs) {
            this.modelId = null;
            this.location = null;
            this.inputs = ImmutableCollections.copy(inputs);
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Sep 05 16:06:44 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolutionResult.java

     * Licensed to the Apache Software Foundation (ASF) under one
     * or more contributor license agreements.  See the NOTICE file
     * distributed with this work for additional information
     * regarding copyright ownership.  The ASF licenses this file
     * to you under the Apache License, Version 2.0 (the
     * "License"); you may not use this file except in compliance
     * with the License.  You may obtain a copy of the License at
     *
     *   http://www.apache.org/licenses/LICENSE-2.0
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/repository/MetadataResolutionResult.java

     * Licensed to the Apache Software Foundation (ASF) under one
     * or more contributor license agreements.  See the NOTICE file
     * distributed with this work for additional information
     * regarding copyright ownership.  The ASF licenses this file
     * to you under the Apache License, Version 2.0 (the
     * "License"); you may not use this file except in compliance
     * with the License.  You may obtain a copy of the License at
     *
     *   http://www.apache.org/licenses/LICENSE-2.0
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionRangeResolverRequest.java

            public VersionResolverRequestBuilder session(Session session) {
                this.session = session;
                return this;
            }
    
            public VersionResolverRequestBuilder artifactCoordinate(ArtifactCoordinate artifactCoordinate) {
                this.artifactCoordinate = artifactCoordinate;
                return this;
            }
    
            public VersionRangeResolverRequest build() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:54:53 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionResolverRequest.java

            public VersionResolverRequestBuilder session(Session session) {
                this.session = session;
                return this;
            }
    
            public VersionResolverRequestBuilder artifactCoordinate(ArtifactCoordinate artifactCoordinate) {
                this.artifactCoordinate = artifactCoordinate;
                return this;
            }
    
            public VersionResolverRequest build() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:54:53 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top