- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 333 for Hostname (0.11 sec)
-
src/main/java/org/codelibs/fess/es/config/bsentity/BsWebAuthentication.java
this.createdTime = value; } public String getHostname() { checkSpecifiedProperty("hostname"); return convertEmptyToNull(hostname); } public void setHostname(String value) { registerModifiedProperty("hostname"); this.hostname = value; } public String getParameters() { checkSpecifiedProperty("parameters");
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9K bytes - Viewed (0) -
src/main/java/jcifs/NameServiceClient.java
/** * Lookup addresses for the given <tt>hostname</tt>. * * @param hostname * @param possibleNTDomainOrWorkgroup * @return found addresses * @throws UnknownHostException */ Address[] getAllByName ( String hostname, boolean possibleNTDomainOrWorkgroup ) throws UnknownHostException; /** * Lookup <tt>hostname</tt> and return it's <tt>UniAddress</tt>. If the
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 7.9K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/CertificatePinner.kt
fun check( hostname: String, vararg peerCertificates: Certificate, ) { check(hostname, peerCertificates.toList()) } /** * Returns list of matching certificates' pins for the hostname. Returns an empty list if the * hostname does not have pinned certificates. */ fun findMatchingPins(hostname: String): List<Pin> = pins.filterList { matchesHostname(hostname) }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 14.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsentity/BsFileAuthentication.java
this.fileConfigId = value; } public String getHostname() { checkSpecifiedProperty("hostname"); return convertEmptyToNull(hostname); } public void setHostname(String value) { registerModifiedProperty("hostname"); this.hostname = value; } public String getParameters() { checkSpecifiedProperty("parameters");
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 8.5K bytes - Viewed (0) -
cmd/endpoint.go
} } } return "" } // Hostnames - returns list of unique hostnames func (l EndpointServerPools) Hostnames() []string { foundSet := set.NewStringSet() for _, ep := range l { for _, endpoint := range ep.Endpoints { if foundSet.Contains(endpoint.Hostname()) { continue } foundSet.Add(endpoint.Hostname()) } } return foundSet.ToSlice() }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Jun 21 22:22:24 UTC 2024 - 34.2K bytes - Viewed (0) -
.github/workflows/multipart/docker-compose-site2.yaml
services: site2-minio1: <<: *minio-common hostname: site2-minio1 volumes: - site2-data1-1:/data1 - site2-data1-2:/data2 site2-minio2: <<: *minio-common hostname: site2-minio2 volumes: - site2-data2-1:/data1 - site2-data2-2:/data2 site2-minio3: <<: *minio-common hostname: site2-minio3 volumes: - site2-data3-1:/data1
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Sep 30 10:13:56 UTC 2023 - 1.5K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/FakeDns.kt
/** Sets the results for `hostname`. */ operator fun set( hostname: String, addresses: List<InetAddress>, ): FakeDns { hostAddresses[hostname] = addresses return this } /** Clears the results for `hostname`. */ fun clear(hostname: String): FakeDns { hostAddresses.remove(hostname) return this } @Throws(UnknownHostException::class)
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 2.6K bytes - Viewed (0) -
mockwebserver-deprecated/src/main/kotlin/okhttp3/mockwebserver/RecordedRequest.kt
val inetAddress = socket.localAddress var hostname = inetAddress.hostName if (inetAddress is Inet6Address && hostname.contains(':')) { // hostname is likely some form representing the IPv6 bytes // 2001:0db8:85a3:0000:0000:8a2e:0370:7334 // 2001:db8:85a3::8a2e:370:7334 // ::1 hostname = "[$hostname]" } val localPort = socket.localPort
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 4.1K bytes - Viewed (0) -
src/test/java/jcifs/tests/DelegatingNameServiceClient.java
} @Override public Address getByName ( String hostname ) throws UnknownHostException { return this.nscl.getByName(hostname); } @Override public Address getByName ( String hostname, boolean possibleNTDomainOrWorkgroup ) throws UnknownHostException { return this.nscl.getByName(hostname, possibleNTDomainOrWorkgroup); } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.6K bytes - Viewed (0) -
buildscripts/upgrade-tests/compose.yml
services: minio1: <<: *minio-common hostname: minio1 volumes: - data1-1:/data1 - data1-2:/data2 - data1-3:/data3 minio2: <<: *minio-common hostname: minio2 volumes: - data2-1:/data1 - data2-2:/data2 - data2-3:/data3 minio3: <<: *minio-common hostname: minio3 volumes: - data3-1:/data1
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jun 13 05:08:11 UTC 2024 - 1.4K bytes - Viewed (0)