- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 255 for domaines (0.35 sec)
-
src/main/java/jcifs/smb1/smb1/Dfs.java
if (domains == null) { return false; } domain = domain.toLowerCase(); return domains.get(domain) != null; } /** * Gets a domain controller transport for the specified domain * @param domain the domain name * @param auth the authentication credentials * @return an SMB transport to the domain controller
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 14.2K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/lsarpc.java
this.domains = new LsarTrustInformation[_domainss]; } _src = _src.derive(_domainsi); for (int _i = 0; _i < _domainss; _i++) { if (this.domains[_i] == null) { this.domains[_i] = new LsarTrustInformation(); } this.domains[_i].decode(_src); } } } }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 44.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/DfsImpl.java
synchronized (this.domainsLock) { final Map<String, Map<String, CacheEntry<DfsReferralDataInternal>>> domains = getTrustedDomains(tf); if (domains == null) { return false; } domain = domain.toLowerCase(Locale.ROOT); return domains.get(domain) != null; } }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 29.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.java
domains = new LsarTrustInformation[_domainss]; } _src = _src.derive(_domainsi); for (int _i = 0; _i < _domainss; _i++) { if (domains[_i] == null) { domains[_i] = new LsarTrustInformation(); } domains[_i].decode(_src); } } } } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 42.5K bytes - Viewed (0) -
src/test/java/jcifs/smb/SIDCacheImplTest.java
} rpc.domains = new lsarpc.LsarRefDomainList(); rpc.domains.count = 1; rpc.domains.max_count = 1; rpc.domains.domains = new lsarpc.LsarTrustInformation[1]; rpc.domains.domains[0] = new lsarpc.LsarTrustInformation(); rpc.domains.domains[0].name = new UnicodeString("", false); rpc.domains.domains[0].sid = new jcifs.dcerpc.rpc.sid_t();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14K bytes - Viewed (0) -
cmd/common-main.go
} for _, addr := range addrs { domainIPs.Add(addr) } } domainIPs.Add(endpoint) } updateDomainIPs(domainIPs) } else { // Add found interfaces IP address to global domain IPS, // loopback addresses will be naturally dropped. domainIPs := mustGetLocalIP4() for _, host := range globalEndpoints.Hostnames() { domainIPs.Add(host) } updateDomainIPs(domainIPs) }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 32.5K bytes - Viewed (0) -
docs/en/docs/deployment/https.md
* **TCP doesn't know about "domains"**. Only about IP addresses. * The information about the **specific domain** requested goes in the **HTTP data**. * The **HTTPS certificates** "certify" a **certain domain**, but the protocol and encryption happen at the TCP level, **before knowing** which domain is being dealt with.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 19:34:08 UTC 2025 - 14.3K bytes - Viewed (0) -
src/test/java/jcifs/smb/CredentialsInternalTest.java
} @ParameterizedTest @MethodSource("domains") @DisplayName("getUserDomain handles null and empty") void getUserDomain_edges(String domain) { TestCredentials creds = new TestCredentials(domain, false, false, new Subject(), false); assertEquals(domain, creds.getUserDomain()); } static Stream<String> domains() { return Stream.of(null, "", "SALES"); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacLogonInfo.java
this.domainName = domainNameString.check(pacStream.readString()); // ID for domain (used with relative IDs to get SIDs) SID domainId = null; if (domainIdPointer != 0) { domainId = pacStream.readSid(); } // Extra SIDs data PacSidAttributes[] extraSidAtts = {};
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 14.3K bytes - Viewed (0) -
android/guava/src/com/google/common/net/InternetDomainName.java
* </ul> * * @param domain A domain name (not IP address) * @throws IllegalArgumentException if {@code domain} is not syntactically valid according to * {@link #isValid} * @since 10.0 (previously named {@code fromLenient}) */ @CanIgnoreReturnValue // TODO(b/219820829): consider removing public static InternetDomainName from(String domain) { return new InternetDomainName(checkNotNull(domain));
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 27.9K bytes - Viewed (0)