Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for uri (0.19 sec)

  1. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultTransportProvider.java

            this.transporterProvider = requireNonNull(transporterProvider);
        }
    
        @Override
        public Transport transport(Session session, RemoteRepository repository) {
            try {
                URI baseURI = new URI(repository.getUrl());
                return new DefaultTransport(
                        baseURI,
                        transporterProvider.newTransporter(
                                InternalSession.from(session).getSession(),
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Tue Dec 05 08:11:33 GMT 2023
    - 2.5K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4Test.java

            configuration.addChild("uri", "${session.rootDirectory.uri}");
            configuration.addChild("path", "${session.rootDirectory}");
            configuration.addChild("uriString", "${session.rootDirectory.uri.string}");
            configuration.addChild("uriAsciiString", "${session.rootDirectory.uri.ASCIIString}");
            configuration.addChild("pathString", "${session.rootDirectory.string}");
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 19.2K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultTransportProvider.java

            this.transporterProvider = requireNonNull(transporterProvider);
        }
    
        @Override
        public Transport transport(Session session, RemoteRepository repository) {
            try {
                URI baseURI = new URI(repository.getUrl());
                return new DefaultTransport(
                        baseURI,
                        transporterProvider.newTransporter(
                                InternalSession.from(session).getSession(),
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorTest.java

            configuration.addChild("uri", "${session.rootDirectory.uri}");
            configuration.addChild("path", "${session.rootDirectory}");
            configuration.addChild("uriString", "${session.rootDirectory.uri.string}");
            configuration.addChild("uriAsciiString", "${session.rootDirectory.uri.ASCIIString}");
            configuration.addChild("pathString", "${session.rootDirectory.string}");
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 05 08:11:33 GMT 2023
    - 18.6K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectBuilder.java

                Source rel = source.resolve(relPath);
                return rel != null ? new SourceWrapper(rel) : null;
            }
    
            @Override
            public URI getLocationURI() {
                Path path = source.getPath();
                return path != null ? path.toUri() : URI.create(source.getLocation());
            }
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 8.3K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelInterpolator.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.internal.impl.model;
    
    import java.net.URI;
    import java.nio.file.Path;
    import java.time.Instant;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Collection;
    import java.util.Collections;
    import java.util.HashMap;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 20K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/Source.java

         */
        @Nonnull
        InputStream openStream() throws IOException;
    
        /**
         * Provides a user-friendly hint about the location of the source.
         * This could be a local file path, a URI or just an empty string.
         * The intention is to assist users during error reporting.
         *
         * @return a user-friendly hint about the location of the source, never {@code null}
         */
        @Nonnull
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultTransport.java

    public class DefaultTransport implements Transport {
        private final URI baseURI;
        private final Transporter transporter;
    
        public DefaultTransport(URI baseURI, Transporter transporter) {
            this.baseURI = requireNonNull(baseURI);
            this.transporter = requireNonNull(transporter);
        }
    
        @Override
        public boolean get(URI relativeSource, Path target) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 16:33:18 GMT 2024
    - 5.3K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/BuildModelTransformer.java

            handleReactorDependencies(context, model, path, builder);
            handleCiFriendlyVersion(context, model, path, builder);
            return builder.build();
        }
    
        //
        // Infer modelVersion from namespace URI
        //
        void handleModelVersion(ModelTransformerContext context, Model model, Path pomFile, Model.Builder builder) {
            String namespace = model.getNamespaceUri();
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 7.1K bytes
    - Viewed (0)
  10. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    writeDocumentHeaders(); } org/codehaus/plexus/util/xml/pull/MXParser.class package org.codehaus.plexus.util.xml.pull; public synchronized class MXParser implements XmlPullParser { protected static final String XML_URI = http://www.w3.org/XML/1998/namespace; protected static final String XMLNS_URI = http://www.w3.org/2000/xmlns/; protected static final String FEATURE_XML_ROUNDTRIP = http://xmlpull.org/v1/doc/features.html#xml-roundtrip; protected static final String FEATURE_NAMES_INTERNED = http://xmlp...
    Archive
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 164.6K bytes
    - Viewed (0)
Back to top