Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 72 for host (0.15 sec)

  1. maven-artifact/src/main/java/org/apache/maven/repository/Proxy.java

        /**
         * Return proxy server host name.
         *
         * @return proxy server host name
         */
        public String getHost() {
            return host;
        }
    
        /**
         * Set proxy host name.
         *
         * @param host proxy server host name
         */
        public void setHost(String host) {
            this.host = host;
        }
    
        /**
         * Get user's password used to log in to proxy server.
         *
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 4K bytes
    - Viewed (0)
  2. maven-compat/src/test/resources/inheritance-repo/t12scm/maven/p0/1.0/p0-1.0.pom

      <groupId>maven</groupId>
      <artifactId>p0</artifactId>
      <packaging>pom</packaging>
      <version>1.0</version>
    
      <scm>
        <connection>scm:svn:http://host/p0</connection>
        <developerConnection>scm:svn:https://host/p0</developerConnection>
        <url>http://host/viewer?path=/p0</url>
      </scm>
    
      <modules>
        <module>modules/p1</module>
      </modules>
    
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Dec 24 18:09:10 GMT 2020
    - 412 bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/usability/plugin/ExpressionDocumenter.java

         * <origin><![CDATA[
         * <distributionManagement>
         * <repository>
         * <id>some-repo</id>
         * <url>scp://host/path</url>
         * </repository>
         * <snapshotRepository>
         * <id>some-snap-repo</id>
         * <url>scp://host/snapshot-path</url>
         * </snapshotRepository>
         * </distributionManagement>
         * ]]></origin>
         * <usage><![CDATA[
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 5.2K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/repository/DefaultMirrorSelector.java

                return false;
            }
        }
    
        private static boolean isLocal(String host) {
            return "localhost".equals(host) || "127.0.0.1".equals(host);
        }
    
        /**
         * Checks the URL to see if this repository refers to a non-localhost repository using HTTP.
         *
         * @param originalRepository
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Jun 15 14:24:56 GMT 2023
    - 8K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequestPopulator.java

                request.addServer(server);
            }
    
            //  <proxies>
            //    <proxy>
            //      <active>true</active>
            //      <protocol>http</protocol>
            //      <host>proxy.somewhere.com</host>
            //      <port>8080</port>
            //      <username>proxyuser</username>
            //      <password>somepassword</password>
            //      <nonProxyHosts>www.google.com|*.somewhere.com</nonProxyHosts>
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jun 19 15:04:04 GMT 2023
    - 8.1K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom

            </configuration>
          </notifier>
          <notifier>
            <type>irc</type>
            <configuration>
              <port>6667</port>
              <channel>#plexus</channel>
              <host>irc.codehaus.org</host>
            </configuration>
          </notifier>
        </notifiers>
      </ciManagement>
      <inceptionYear>2001</inceptionYear>
      <mailingLists>
        <mailingList>
          <name>Plexus Developer List</name>
    Plain Text
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 6.7K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom

            <configuration>
              <address>******@****.***</address>
            </configuration>
          </notifier>
          <notifier>
            <type>irc</type>
            <configuration>
              <host>irc.codehaus.org</host>
              <port>6667</port>
              <channel>#plexus</channel>
            </configuration>
          </notifier>
        </notifiers>
      </ciManagement>
      <inceptionYear>2001</inceptionYear>
      <mailingLists>
    Plain Text
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 7.1K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom

            <configuration>
              <address>******@****.***</address>
            </configuration>
          </notifier>
          <notifier>
            <type>irc</type>
            <configuration>
              <host>irc.codehaus.org</host>
              <port>6667</port>
              <channel>#plexus</channel>
            </configuration>
          </notifier>
        </notifiers>
      </ciManagement>
      <inceptionYear>2001</inceptionYear>
      <mailingLists>
    Plain Text
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 5.6K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/artifact/repository/MavenArtifactRepository.java

        /**
         * Return the protocol name.
         * <br>
         * E.g: for input
         * <code>http://www.codehaus.org</code> this method will return <code>http</code>
         *
         * @param url the url
         * @return the host name
         */
        private static String protocol(final String url) {
            final int pos = url.indexOf(':');
    
            if (pos == -1) {
                return "";
            }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 11K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java

            return artifactResolver.resolve(request);
        }
    
        //    public void addProxy( String protocol, String host, int port, String username, String password,
        //                          String nonProxyHosts )
        //    {
        //        ProxyInfo proxyInfo = new ProxyInfo();
        //        proxyInfo.setHost( host );
        //        proxyInfo.setType( protocol );
        //        proxyInfo.setPort( port );
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 31.6K bytes
    - Viewed (0)
Back to top