- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 77 for Protocol (0.16 sec)
-
compat/maven-artifact/src/main/java/org/apache/maven/repository/Proxy.java
} /** * Get the protocol of the proxy server. * * @return the protocol of the proxy server */ public String getProtocol() { return protocol; } /** * @param protocol the protocol of the proxy server like <i>SOCKSv4</i> */ public void setProtocol(String protocol) { this.protocol = protocol; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/repository/MavenArtifactRepository.java
public String getProtocol() { return protocol; } public void setId(String id) { this.id = id; } public void setUrl(String url) { this.url = url; this.protocol = protocol(url); this.basedir = basedir(url); } // Path Utils /** * Return the protocol name. * <br> * E.g: for input
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 11K bytes - Viewed (0) -
istioctl/pkg/describe/describe.go
for _, container := range pod.Spec.Containers { for _, port := range container.Ports { var protocol string // Suppress /<protocol> for TCP, print it for everything else if port.Protocol != "TCP" { protocol = fmt.Sprintf("/%s", port.Protocol) } ports = append(ports, fmt.Sprintf("%d%s (%s)", port.ContainerPort, protocol, container.Name)) }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 24 17:36:49 UTC 2024 - 50.6K bytes - Viewed (0) -
okhttp-dnsoverhttps/src/main/kotlin/okhttp3/dnsoverhttps/DnsOverHttps.kt
private fun readResponse( hostname: String, response: Response, ): List<InetAddress> { if (response.cacheResponse == null && response.protocol !== Protocol.HTTP_2 && response.protocol !== Protocol.QUIC) { Platform.get().log("Incorrect protocol: ${response.protocol}", Platform.WARN) } response.use { if (!response.isSuccessful) {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Thu Oct 31 09:27:31 UTC 2024 - 9.8K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/DefaultWagonManagerTest.java
String protocol = "perlookup"; Wagon one = wagonManager.getWagon(protocol); Wagon two = wagonManager.getWagon(protocol); assertNotSame(one, two); } private void assertWagon(String protocol) throws Exception { Wagon wagon = wagonManager.getWagon(protocol); assertNotNull(wagon, "Check wagon, protocol=" + protocol); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.4K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultWagonManager.java
throws TransferFailedException, ResourceDoesNotExistException { String protocol = repository.getProtocol(); Wagon wagon; try { wagon = getWagon(protocol); } catch (UnsupportedProtocolException e) { throw new TransferFailedException("Unsupported Protocol: '" + protocol + "': " + e.getMessage(), e); } if (downloadMonitor != null) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 29.9K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/manager/DefaultWagonManager.java
} } // empty one to prevent NPE return new AuthenticationInfo(); } public ProxyInfo getProxy(String protocol) { MavenSession session = legacySupport.getSession(); if (session != null && protocol != null) { MavenExecutionRequest request = session.getRequest(); if (request != null) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ViewHelper.java
} else { url = url.replaceFirst("file:/+", systemProperties.getProperty("file.protocol.ie", "file://")); } break; case FIREFOX: if (isLocalFile) { url = url.replaceFirst("file:/+", systemProperties.getProperty("file.protocol.winlocal.firefox", "file://")); } else {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 40.2K bytes - Viewed (0) -
doc/next/6-stdlib/99-minor/net/http/67813.md
[Transport] and [Server] now have an HTTP2 field which permits
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Aug 29 17:38:46 UTC 2024 - 101 bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/configuration/SettingsXmlConfigurationProcessor.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 12.1K bytes - Viewed (0)