Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 15 of 15 for getProxy (0.09 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultWagonManager.java

            proxyInfo.setHost(repository.getProxy().getHost());
            proxyInfo.setType(repository.getProxy().getProtocol());
            proxyInfo.setPort(repository.getProxy().getPort());
            proxyInfo.setNonProxyHosts(repository.getProxy().getNonProxyHosts());
            proxyInfo.setUserName(repository.getProxy().getUserName());
            proxyInfo.setPassword(repository.getProxy().getPassword());
            return proxyInfo;
        }
    
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Sat Apr 05 11:52:05 GMT 2025
    - 29.9K bytes
    - Click Count (0)
  2. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultUpdateCheckManager.java

        }
    
        String getRepositoryKey(ArtifactRepository repository) {
            StringBuilder buffer = new StringBuilder(256);
    
            Proxy proxy = repository.getProxy();
            if (proxy != null) {
                if (proxy.getUserName() != null) {
                    int hash = (proxy.getUserName() + proxy.getPassword()).hashCode();
                    buffer.append(hash).append('@');
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Dec 16 13:41:14 GMT 2025
    - 9.4K bytes
    - Click Count (0)
  3. impl/maven-core/src/main/java/org/apache/maven/RepositoryUtils.java

                builder.setReleasePolicy(toPolicy(repo.getReleases()));
                builder.setAuthentication(toAuthentication(repo.getAuthentication()));
                builder.setProxy(toProxy(repo.getProxy()));
                builder.setMirroredRepositories(toRepos(repo.getMirroredRepositories()));
                builder.setBlocked(repo.isBlocked());
                result = builder.build();
            }
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Thu Sep 04 18:33:16 GMT 2025
    - 15.8K bytes
    - Click Count (0)
  4. okhttp/api/jvm/okhttp.api

    	public abstract fun getFollowRedirects ()Z
    	public abstract fun getFollowSslRedirects ()Z
    	public abstract fun getHostnameVerifier ()Ljavax/net/ssl/HostnameVerifier;
    	public abstract fun getProxy ()Ljava/net/Proxy;
    	public abstract fun getProxyAuthenticator ()Lokhttp3/Authenticator;
    	public abstract fun getProxySelector ()Ljava/net/ProxySelector;
    	public abstract fun getRetryOnConnectionFailure ()Z
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Mar 10 21:47:20 GMT 2026
    - 72.3K bytes
    - Click Count (0)
  5. okhttp/api/android/okhttp.api

    	public abstract fun getFollowRedirects ()Z
    	public abstract fun getFollowSslRedirects ()Z
    	public abstract fun getHostnameVerifier ()Ljavax/net/ssl/HostnameVerifier;
    	public abstract fun getProxy ()Ljava/net/Proxy;
    	public abstract fun getProxyAuthenticator ()Lokhttp3/Authenticator;
    	public abstract fun getProxySelector ()Ljava/net/ProxySelector;
    	public abstract fun getRetryOnConnectionFailure ()Z
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Mar 10 21:47:20 GMT 2026
    - 72.3K bytes
    - Click Count (0)
Back to Top