Home
last modified time | relevance | path

Searched refs:hostName (Results 1 – 25 of 3862) sorted by relevance

12345678910>>...155

/dports/java/bouncycastle15/crypto-169/tls/src/main/java/org/bouncycastle/jsse/
H A DBCSNIHostName.java22 private final String hostName; field in BCSNIHostName
24 public BCSNIHostName(String hostName) in BCSNIHostName() argument
26 …er(BCStandardConstants.SNI_HOST_NAME, Strings.toByteArray(hostName = normalizeHostName(hostName))); in BCSNIHostName()
28 this.hostName = hostName; in BCSNIHostName()
40 return hostName; in getAsciiName()
55 return hostName.equalsIgnoreCase(other.hostName); in equals()
72 if (null == hostName) in normalizeHostName()
77 hostName = IDNUtil.toASCII(hostName, IDNUtil.USE_STD3_ASCII_RULES); in normalizeHostName()
79 if (hostName.length() < 1) in normalizeHostName()
83 if (hostName.endsWith(".")) in normalizeHostName()
[all …]
/dports/devel/kf5-kio/kio-5.89.0/src/core/
H A Dhostinfo.cpp91 void start(const QString &hostName) in start() argument
93 m_hostName = hostName; in start()
97 QString hostName() const in hostName() function in KIO::HostInfoAgentPrivate::Query
118 : m_hostName(hostName) in NameLookupThreadRequest()
137 QString hostName() const in hostName() function in KIO::NameLookupThreadRequest
171 const QString hostName = request->hostName(); in lookupHost() local
251 QHostAddress address(hostName); in lookupHost()
342 dnsCache.remove(hostName); in lookupHost()
353 openQueries.insert(hostName, query); in lookupHost()
360 query->start(hostName); in lookupHost()
[all …]
/dports/java/berkeley-db/je-6.2.31/src/com/sleepycat/je/rep/impl/
H A DRepNodeImpl.java50 private String hostName; field in RepNodeImpl
95 if (hostName == null) { in RepNodeImpl()
109 this.hostName = hostName; in RepNodeImpl()
245 return hostName; in getHostName()
249 this.hostName = hostName; in setHostName()
356 if (hostName == null) { in equivalent()
357 if (mi.hostName != null) { in equivalent()
360 } else if (!hostName.equals(mi.hostName)) { in equivalent()
386 + ((hostName == null) ? 0 : hostName.hashCode()); in hashCode()
407 if (hostName == null) { in equals()
[all …]
/dports/net/jcifs/jcifs_1.3.19/src/jcifs/netbios/
H A DNbtAddress.java158 Name hostName; field in NbtAddress.CacheEntry
163 this.hostName = hostName; in CacheEntry()
364 return localhost.hostName; in getLocalName()
548 Name hostName;
560 this.hostName = hostName;
566 NbtAddress( Name hostName,
580 this.hostName = hostName;
598 calledName = hostName.name;
619 switch (hostName.hexCode) {
800 return hostName.name;
[all …]
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/docker/machine/machine-7b7a141da844/commands/
H A Drm.go31 for _, hostName := range c.Args() {
32 err := removeRemoteMachine(hostName, api)
38 removeErr := removeLocalMachine(hostName, api)
40 errorOccured = collectError(fmt.Sprintf("Can't remove \"%s\"", hostName), force, errorOccured)
42 log.Infof("Successfully removed %s", hostName)
67 func removeRemoteMachine(hostName string, api libmachine.API) error {
68 currentHost, loaderr := api.Load(hostName)
76 func removeLocalMachine(hostName string, api libmachine.API) error {
77 exist, _ := api.Exists(hostName)
79 return errors.New(hostName + " does not exist.")
[all …]
/dports/sysutils/docker-machine/machine-0.16.2/commands/
H A Drm.go31 for _, hostName := range c.Args() {
32 err := removeRemoteMachine(hostName, api)
38 removeErr := removeLocalMachine(hostName, api)
40 errorOccurred = collectError(fmt.Sprintf("Can't remove \"%s\"", hostName), force, errorOccurred)
42 log.Infof("Successfully removed %s", hostName)
67 func removeRemoteMachine(hostName string, api libmachine.API) error {
68 currentHost, loaderr := api.Load(hostName)
76 func removeLocalMachine(hostName string, api libmachine.API) error {
77 exist, _ := api.Exists(hostName)
79 return errors.New(hostName + " does not exist.")
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.NameResolution/src/System/Net/
H A DDNS.cs26 public static IPHostEntry GetHostByName(string hostName) in GetHostByName() argument
30 if (hostName == null) in GetHostByName()
37 if (IPAddress.TryParse(hostName, out address)) in GetHostByName()
41 return InternalGetHostByName(hostName, false); in GetHostByName()
50 || hostName.Length == MaxHostName && hostName[MaxHostName - 1] != '.') in InternalGetHostByName()
219 public static IPHostEntry Resolve(string hostName) in Resolve() argument
225 if (hostName == null) in Resolve()
261 this.hostName = hostName; in ResolveAsyncResult()
273 internal readonly string hostName; field in System.Net.Dns.ResolveAsyncResult
310 if (hostName == null) in HostResolutionBeginHelper()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/System.Net/
H A DDns.cs136 if (hostName == null) in BeginGetHostByName()
155 if (hostName == null) in BeginResolve()
431 if (!string.IsNullOrEmpty (hostName)) in GetHostByName()
434 if (hostName == null) in GetHostByName()
441 Error_11001 (hostName); in GetHostByName()
448 string hostName; in GetHostName()
453 Error_11001 (hostName); in GetHostName()
455 return hostName; in GetHostName()
464 if (hostName == null) in Resolve()
470 ret = GetHostByAddress(hostName); in Resolve()
[all …]
/dports/devel/libzookeeper/apache-zookeeper-3.7.0/zookeeper-recipes/zookeeper-recipes-election/src/main/java/org/apache/zookeeper/recipes/leader/
H A DLeaderOffer.java31 private String hostName; field in LeaderOffer
37 public LeaderOffer(Integer id, String nodePath, String hostName) { in LeaderOffer() argument
40 this.hostName = hostName; in LeaderOffer()
48 + " hostName:" + hostName in toString()
69 return hostName; in getHostName()
72 public void setHostName(String hostName) { in setHostName() argument
73 this.hostName = hostName; in setHostName()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/net/System/Net/
H A DDNS.cs185 if (hostName == null) { in NativeToHostEntry()
195 if (IPAddress.TryParse(hostName, out address)) in NativeToHostEntry()
205 return InternalGetHostByName(hostName,true); in NativeToHostEntry()
215 || hostName.Length == MaxHostName && hostName[MaxHostName-1] != '.') { in NativeToHostEntry()
240 ipHostEntry = Dns.GetAddrInfo(hostName); in NativeToHostEntry()
248 hostName); in NativeToHostEntry()
504 if (hostName == null) { in NativeToHostEntry()
557 if (string.IsNullOrEmpty(hostName) || hostName.Length > MaxHostName) in NativeToHostEntry()
652 this.hostName = hostName; in NativeToHostEntry()
664 internal readonly string hostName; in NativeToHostEntry() field in System.Net.Dns.ResolveAsyncResult
[all …]
/dports/sysutils/kubectl/kubernetes-1.22.2/cmd/kubeadm/app/util/
H A Dnet.go29 hostName := hostnameOverride
30 if len(hostName) == 0 {
35 hostName = nodeName
40 hostName = strings.TrimSpace(hostName)
41 if len(hostName) == 0 {
45 return strings.ToLower(hostName), nil
/dports/devel/poco/poco-1.10.1-all/NetSSL_OpenSSL/src/
H A DX509Certificate.cpp104 bool X509Certificate::verify(const std::string& hostName) const in verify()
106 return verify(*this, hostName); in verify()
117 bool ok = (dnsNames.find(hostName) != dnsNames.end()); in verify()
129 ok = matchWildcard(*it, hostName); in verify()
135 if (IPAddress::tryParse(hostName, ip)) in verify()
149 ok = Poco::icompare(*it, hostName) == 0; in verify()
163 …if (X509_check_host(const_cast<X509*>(certificate.certificate()), hostName.c_str(), hostName.lengt… in verify()
170 if (IPAddress::tryParse(hostName, ip)) in verify()
172 …return (X509_check_ip_asc(const_cast<X509*>(certificate.certificate()), hostName.c_str(), 0) == 1); in verify()
186 bool X509Certificate::matchWildcard(const std::string& wildcard, const std::string& hostName) in matchWildcard() argument
[all …]
/dports/games/xblast/xblast-2.10.4/
H A Dnet_socket.c68 Net_ConnectInet (const char *hostName, unsigned short port) in Net_ConnectInet() argument
78 if (!Socket_SetAddressInet (pSocket, XBTrue, hostName, port)) { in Net_ConnectInet()
212 if (!Socket_SetAddressInet (pSocket, XBTrue, hostName, port)) { in Net_ConnectUdp()
229 static char hostName[32]; in Net_LocalName() local
235 assert (sizeof (hostName) > strlen (name)); in Net_LocalName()
236 strcpy (hostName, name); in Net_LocalName()
237 return hostName; in Net_LocalName()
247 static char hostName[32]; in Net_RemoteName() local
253 assert (sizeof (hostName) > strlen (name)); in Net_RemoteName()
254 strcpy (hostName, name); in Net_RemoteName()
[all …]
/dports/devel/py-twisted/Twisted-22.1.0/src/twisted/internet/
H A D_resolver.py113 hostName, argument
142 hostName, portNumber, addressFamily, socketType
148 resolution = HostResolution(hostName)
180 hostName, argument
202 hostName = hostName.encode("ascii")
208 hostName = _idnaBytes(hostName)
211 hostName = nativeString(hostName)
213 resolution = HostResolution(hostName)
215 onAddress = self._simpleResolver.getHostByName(hostName)
225 name=hostName,
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/java.base/share/classes/java/net/
H A DInet4Address.java103 holder().hostName = null; in Inet4Address()
108 Inet4Address(String hostName, byte addr[]) { in Inet4Address() argument
109 holder().hostName = hostName; in Inet4Address()
120 holder().originalHostName = hostName; in Inet4Address()
122 Inet4Address(String hostName, int address) { in Inet4Address() argument
123 holder().hostName = hostName; in Inet4Address()
126 holder().originalHostName = hostName; in Inet4Address()
140 inet.holder().hostName = holder().getHostName(); in writeReplace()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/java.base/share/classes/java/net/
H A DInet4Address.java103 holder().hostName = null; in Inet4Address()
108 Inet4Address(String hostName, byte addr[]) { in Inet4Address() argument
109 holder().hostName = hostName; in Inet4Address()
120 holder().originalHostName = hostName; in Inet4Address()
122 Inet4Address(String hostName, int address) { in Inet4Address() argument
123 holder().hostName = hostName; in Inet4Address()
126 holder().originalHostName = hostName; in Inet4Address()
140 inet.holder().hostName = holder().getHostName(); in writeReplace()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/java/net/
H A DInet4Address.java103 holder().hostName = null; in Inet4Address()
108 Inet4Address(String hostName, byte addr[]) { in Inet4Address() argument
109 holder().hostName = hostName; in Inet4Address()
120 holder().originalHostName = hostName; in Inet4Address()
122 Inet4Address(String hostName, int address) { in Inet4Address() argument
123 holder().hostName = hostName; in Inet4Address()
126 holder().originalHostName = hostName; in Inet4Address()
140 inet.holder().hostName = holder().getHostName(); in writeReplace()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/java.base/share/classes/java/net/
H A DInet4Address.java103 holder().hostName = null; in Inet4Address()
108 Inet4Address(String hostName, byte addr[]) { in Inet4Address() argument
109 holder().hostName = hostName; in Inet4Address()
120 holder().originalHostName = hostName; in Inet4Address()
122 Inet4Address(String hostName, int address) { in Inet4Address() argument
123 holder().hostName = hostName; in Inet4Address()
126 holder().originalHostName = hostName; in Inet4Address()
140 inet.holder().hostName = holder().getHostName(); in writeReplace()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/java.base/share/classes/java/net/
H A DInet4Address.java103 holder().hostName = null; in Inet4Address()
108 Inet4Address(String hostName, byte addr[]) { in Inet4Address() argument
109 holder().hostName = hostName; in Inet4Address()
120 holder().originalHostName = hostName; in Inet4Address()
122 Inet4Address(String hostName, int address) { in Inet4Address() argument
123 holder().hostName = hostName; in Inet4Address()
126 holder().originalHostName = hostName; in Inet4Address()
140 inet.holder().hostName = holder().getHostName(); in writeReplace()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/java/net/
H A DInet4Address.java103 holder().hostName = null; in Inet4Address()
108 Inet4Address(String hostName, byte addr[]) { in Inet4Address() argument
109 holder().hostName = hostName; in Inet4Address()
120 holder().originalHostName = hostName; in Inet4Address()
122 Inet4Address(String hostName, int address) { in Inet4Address() argument
123 holder().hostName = hostName; in Inet4Address()
126 holder().originalHostName = hostName; in Inet4Address()
140 inet.holder().hostName = holder().getHostName(); in writeReplace()
/dports/devel/hadoop2/hadoop-2.7.2-src/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/java/org/apache/hadoop/yarn/api/records/
H A DResourceRequest.java64 public static ResourceRequest newInstance(Priority priority, String hostName, in newInstance() argument
66 return newInstance(priority, hostName, capability, numContainers, true); in newInstance()
73 return newInstance(priority, hostName, capability, numContainers, in newInstance()
84 request.setResourceName(hostName); in newInstance()
133 public static boolean isAnyLocation(String hostName) { in isAnyLocation() argument
134 return ANY.equals(hostName); in isAnyLocation()
286 String hostName = getResourceName(); in hashCode() local
290 result = prime * result + ((hostName == null) ? 0 : hostName.hashCode()); in hashCode()
311 String hostName = getResourceName(); in equals()
312 if (hostName == null) { in equals()
[all …]
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/tools/
H A Dbridge_commands.cpp56 std::string hostName; in run() local
57 auto status = bsonExtractStringField(cmdObj, kHostFieldName, &hostName); in run()
71 HostAndPort host(hostName); in run()
88 std::string hostName; in run() local
89 auto status = bsonExtractStringField(cmdObj, kHostFieldName, &hostName); in run()
94 HostAndPort host(hostName); in run()
110 std::string hostName; in run() local
111 auto status = bsonExtractStringField(cmdObj, kHostFieldName, &hostName); in run()
116 HostAndPort host(hostName); in run()
132 std::string hostName; in run() local
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/RabbitMQ.Client/src/client/api/
H A DAmqpTcpEndpoint.cs119 … public AmqpTcpEndpoint(IProtocol protocol, string hostName, int portOrMinusOne, SslOption ssl) in AmqpTcpEndpoint() argument
122 m_hostName = hostName; in AmqpTcpEndpoint()
131 public AmqpTcpEndpoint(IProtocol protocol, string hostName, int portOrMinusOne) : in AmqpTcpEndpoint() argument
132 this(protocol, hostName, portOrMinusOne, new SslOption()) in AmqpTcpEndpoint()
139 public AmqpTcpEndpoint(IProtocol protocol, string hostName) : in AmqpTcpEndpoint() argument
140 this(protocol, hostName, -1) in AmqpTcpEndpoint()
157 public AmqpTcpEndpoint(string hostName, int portOrMinusOne) : in AmqpTcpEndpoint() argument
158 this(Protocols.FromEnvironment(), hostName, portOrMinusOne) in AmqpTcpEndpoint()
166 public AmqpTcpEndpoint(string hostName) : in AmqpTcpEndpoint() argument
167 this(Protocols.FromEnvironment(), hostName) in AmqpTcpEndpoint()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/java.base/share/classes/java/net/
H A DInet4Address.java104 holder().hostName = null; in Inet4Address()
109 Inet4Address(String hostName, byte addr[]) { in Inet4Address() argument
110 holder().hostName = hostName; in Inet4Address()
121 holder().originalHostName = hostName; in Inet4Address()
123 Inet4Address(String hostName, int address) { in Inet4Address() argument
124 holder().hostName = hostName; in Inet4Address()
127 holder().originalHostName = hostName; in Inet4Address()
142 inet.holder().hostName = holder().getHostName(); in writeReplace()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/java.base/share/classes/java/net/
H A DInet4Address.java104 holder().hostName = null; in Inet4Address()
109 Inet4Address(String hostName, byte addr[]) { in Inet4Address() argument
110 holder().hostName = hostName; in Inet4Address()
121 holder().originalHostName = hostName; in Inet4Address()
123 Inet4Address(String hostName, int address) { in Inet4Address() argument
124 holder().hostName = hostName; in Inet4Address()
127 holder().originalHostName = hostName; in Inet4Address()
142 inet.holder().hostName = holder().getHostName(); in writeReplace()

12345678910>>...155