Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 205 for url (0.01 sec)

  1. compat/maven-builder-support/src/main/java/org/apache/maven/building/UrlSource.java

            this.url = Objects.requireNonNull(url, "url cannot be null");
            this.hashCode = Objects.hashCode(url);
        }
    
        @Override
        public InputStream getInputStream() throws IOException {
            return url.openStream();
        }
    
        @Override
        public String getLocation() {
            return url.toString();
        }
    
        /**
         * Gets the URL of this source.
         *
    Registered: 2024-11-03 03:35
    - Last Modified: 2024-10-25 12:31
    - 2.3K bytes
    - Viewed (0)
  2. module.xml

    		<get dest="${target.dir}">
    			<url url="${repo.url}/${module.groupId}/${module.name.prefix}${module.name}/${module.version}/${module.name.prefix}${module.name}-${module.zip.version}.zip" />
    		</get>
    		<unzip dest="${modules.dir}/${module.name}" src="${target.dir}/${module.name.prefix}${module.name}-${module.zip.version}.zip">
    			<patternset>
    				<include name="**" />
    			</patternset>
    			<cutdirsmapper dirs="1" />
    		</unzip>
    	</target>
    
    Registered: 2024-10-31 13:40
    - Last Modified: 2024-10-25 12:43
    - 4.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

                    return new URL(protocol + ":" + url);
                }
                if (url.startsWith("/") || url.indexOf(':') == -1) {
                    return new URL(new URL(currentUrl), url);
                }
                return new URL(url);
            }
            return null;
        }
    
        public void addFieldRule(final String name, final String xpath, final boolean isPruned) {
            addFieldRule(name, xpath);
    Registered: 2024-10-31 13:40
    - Last Modified: 2024-10-24 13:01
    - 42.9K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/artifact/repository/MavenArtifactRepository.java

         * Decodes the specified (portion of a) URL. <strong>Note:</strong> This decoder assumes that ISO-8859-1 is used to
         * convert URL-encoded bytes to characters.
         *
         * @param url The URL to decode, may be <code>null</code>.
         * @return The decoded URL or <code>null</code> if the input was <code>null</code>.
         */
        private static String decode(String url) {
            String decoded = url;
            if (url != null) {
    Registered: 2024-11-03 03:35
    - Last Modified: 2024-10-25 12:31
    - 11K bytes
    - Viewed (0)
  5. plugin.xml

    			<param name="plugin.groupId" value="org/codelibs/opensearch" />
    			<param name="plugin.name.prefix" value="opensearch-" />
    			<param name="plugin.name" value="minhash" />
    			<param name="plugin.version" value="2.17.1" />
    			<param name="plugin.zip.version" value="2.17.1" />
    		</antcall>
    
    		<antcall target="remove.jars" />
    	</target>
    
    	<target name="install.plugin">
    		<get dest="${target.dir}">
    Registered: 2024-10-31 13:40
    - Last Modified: 2024-10-25 23:33
    - 3.5K bytes
    - Viewed (0)
  6. compat/maven-compat/src/main/java/org/apache/maven/repository/DefaultMirrorSelector.java

            try {
                URL url = new URL(originalRepository.getUrl());
                return ("http".equalsIgnoreCase(url.getProtocol())
                                || "dav".equalsIgnoreCase(url.getProtocol())
                                || "dav:http".equalsIgnoreCase(url.getProtocol())
                                || "dav+http".equalsIgnoreCase(url.getProtocol()))
                        && !isLocal(url.getHost());
    Registered: 2024-11-03 03:35
    - Last Modified: 2024-10-25 12:31
    - 8K bytes
    - Viewed (0)
  7. compat/maven-model-builder/src/test/resources/poms/inheritance/no-append-urls-expected.xml

        <developerConnection>scm:my-scm:https://domain.org/base/</developerConnection>
        <url>https://domain.org/base</url>
      </scm>
      <distributionManagement>
        <site child.site.url.inherit.append.path="false">
          <url>scp://scp.domain.org/base/</url>
        </site>
      </distributionManagement>
    Registered: 2024-11-03 03:35
    - Last Modified: 2024-10-25 12:31
    - 2.1K bytes
    - Viewed (0)
  8. compat/maven-model-builder/src/test/resources/poms/inheritance/no-append-urls-parent.xml

      <url>http://www.apache.org/path/to/parent/</url>
      <scm child.scm.connection.inherit.append.path="false"
           child.scm.developerConnection.inherit.append.path="false"
           child.scm.url.inherit.append.path="false">
        <connection>scm:my-scm:http://domain.org/base</connection>
        <developerConnection>scm:my-scm:https://domain.org/base/</developerConnection>
        <url>https://domain.org/base</url>
      </scm>
    Registered: 2024-11-03 03:35
    - Last Modified: 2024-10-25 12:31
    - 2.1K bytes
    - Viewed (0)
  9. fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/entity/OpenSearchUrlFilter.java

        }
    
        public void setFilterType(final String filterType) {
            this.filterType = filterType;
        }
    
        public String getUrl() {
            return url;
        }
    
        public void setUrl(final String url) {
            this.url = url;
        }
    
        @Override
        public XContentBuilder toXContent(final XContentBuilder builder, final Params params) throws IOException {
            builder.startObject();
    Registered: 2024-11-10 03:50
    - Last Modified: 2024-11-07 04:44
    - 2.1K bytes
    - Viewed (0)
  10. compat/maven-model-builder/src/test/resources/poms/validation/bad-repository-id.xml

        <repository>
          <id>this/is\bad</id>
          <url>http://localhost</url>
        </repository>
      </repositories>
      <pluginRepositories>
        <pluginRepository>
          <id>this/is\bad</id>
          <url>http://localhost</url>
        </pluginRepository>
      </pluginRepositories>
    
      <distributionManagement>
        <repository>
          <id>this/is\bad</id>
          <url>http://localhost</url>
        </repository>
        <snapshotRepository>
    Registered: 2024-11-03 03:35
    - Last Modified: 2024-10-25 12:31
    - 1.4K bytes
    - Viewed (0)
Back to top