Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 38 for GetProxy (0.19 sec)

  1. maven-settings-builder/src/main/java/org/apache/maven/settings/crypto/DefaultSettingsDecryptionResult.java

            return servers.isEmpty() ? null : servers.get(0);
        }
    
        @Override
        public List<Server> getServers() {
            return servers;
        }
    
        @Override
        public Proxy getProxy() {
            return proxies.isEmpty() ? null : proxies.get(0);
        }
    
        @Override
        public List<Proxy> getProxies() {
            return proxies;
        }
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/bridge/MavenRepositorySystem.java

            }
        }
    
        private Proxy getProxy(RepositorySystemSession session, ArtifactRepository repository) {
            if (session != null) {
                ProxySelector selector = session.getProxySelector();
                if (selector != null) {
                    RemoteRepository repo = RepositoryUtils.toRepo(repository);
                    org.eclipse.aether.repository.Proxy proxy = selector.getProxy(repo);
                    if (proxy != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Feb 17 18:40:11 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  3. platforms/software/resources-s3/src/main/java/org/gradle/internal/resource/transport/aws/s3/S3Client.java

            ClientConfiguration clientConfiguration = new ClientConfiguration();
            Optional<HttpProxySettings.HttpProxy> proxyOptional = s3ConnectionProperties.getProxy();
            if (proxyOptional.isPresent()) {
                HttpProxySettings.HttpProxy proxy = s3ConnectionProperties.getProxy().get();
                clientConfiguration.setProxyHost(proxy.host);
                clientConfiguration.setProxyPort(proxy.port);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/artifact/deployer/DefaultArtifactDeployer.java

                RemoteRepository.Builder builder = new RemoteRepository.Builder(remoteRepo);
                builder.setAuthentication(session.getAuthenticationSelector().getAuthentication(remoteRepo));
                builder.setProxy(session.getProxySelector().getProxy(remoteRepo));
                remoteRepo = builder.build();
            }
            request.setRepository(remoteRepo);
    
            DeployResult result;
            try {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/artifact/repository/DefaultArtifactRepository.java

        }
    
        public void setAuthentication(Authentication authentication) {
            this.authentication = authentication;
        }
    
        public Proxy getProxy() {
            return proxy;
        }
    
        public void setProxy(Proxy proxy) {
            this.proxy = proxy;
        }
    
        public boolean isUniqueVersion() {
            return true;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  6. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/HttpClientConfigurer.java

            HttpProxySettings.HttpProxy httpProxy = httpSettings.getProxySettings().getProxy();
            HttpProxySettings.HttpProxy httpsProxy = httpSettings.getSecureProxySettings().getProxy();
    
            for (HttpProxySettings.HttpProxy proxy : Lists.newArrayList(httpProxy, httpsProxy)) {
                if (proxy != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/envoyfilter/envoyfilter.go

    			relativeOperationMsg(r, c, index, ef.Priority, patchFilterNames, instanceName)
    		}
    		// append the patchValueStr to the slice for next iteration if the proxyVersion is set
    		if patch.GetMatch() != nil {
    			if patch.Match.GetProxy() != nil {
    				if len(patch.Match.Proxy.ProxyVersion) != 0 {
    					patchFilterNames = append(patchFilterNames, instanceName)
    				}
    			}
    		}
    
    	}
    	return patchFilterNames
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/artifact/repository/LegacyLocalRepositoryManager.java

            public void setAuthentication(Authentication authentication) {}
    
            public Authentication getAuthentication() {
                return null;
            }
    
            public void setProxy(Proxy proxy) {}
    
            public Proxy getProxy() {
                return null;
            }
    
            public List<ArtifactRepository> getMirroredRepositories() {
                return Collections.emptyList();
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. pkg/kube/inject/inject.go

    		tag = fmt.Sprintf("%v", global.GetTag().AsInterface())
    	}
    
    	imageType := global.GetVariant()
    	if image != nil {
    		imageType = image.ImageType
    	}
    
    	if global.GetProxy() != nil && global.GetProxy().GetImage() != "" {
    		imageName = global.GetProxy().GetImage()
    	}
    
    	if it, ok := annotations[annotation.SidecarProxyImageType.Name]; ok {
    		imageType = it
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  10. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/S3ClientIntegrationTest.groovy

            server.stubPutFile(file, "/${bucketName}/maven/release/$FILE_NAME")
    
            S3ConnectionProperties s3SystemProperties = Mock {
                getEndpoint() >> Optional.of(server.uri)
                getProxy() >> Optional.fromNullable(null)
                getMaxErrorRetryCount() >> Optional.absent()
                getPartSize() >> 512
                getMultipartThreshold() >> 1024
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 9.8K bytes
    - Viewed (0)
Back to top