- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 428 for sdomain (0.14 sec)
-
src/test/java/jcifs/tests/TestProperties.java
static final String TEST_USER_DOMAIN_SHORT = "test.user.sdomain"; static final String TEST_SERVER = "test.server"; static final String TEST_DOMAIN = "test.domain"; static final String TEST_DOMAIN_SHORT = "test.domain.netbios"; static final String TEST_DOMAIN_SID = "test.domain.sid"; static final String TEST_DOMAIN_DC = "test.domain.dc";
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Feb 29 16:38:58 UTC 2020 - 2.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Dfs.java
} public boolean isTrustedDomain(String domain, NtlmPasswordAuthentication auth) throws SmbAuthException { HashMap domains = getTrustedDomains(auth); if (domains == null) return false; domain = domain.toLowerCase(); return domains.get(domain) != null; } public SmbTransport getDc(String domain,
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 11.7K bytes - Viewed (0) -
apache-maven/src/main/appended-resources/licenses/Public-Domain.txt
Public Domain...
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri May 17 19:14:22 UTC 2024 - 13 bytes - Viewed (0) -
src/main/java/jcifs/smb/DfsImpl.java
public boolean isTrustedDomain ( CIFSContext tf, String domain ) throws SmbAuthException { synchronized ( this.domainsLock ) { 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 Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:07:29 UTC 2023 - 29.1K bytes - Viewed (0) -
istioctl/pkg/writer/envoy/configdump/route.go
} } return w.Flush() } func describeRouteDomains(domains []string) string { if len(domains) == 0 { return "" } if len(domains) == 1 { return domains[0] } // Return the shortest non-numeric domain. Count of domains seems uninteresting. maximum := 2 withoutPort := make([]string, 0, len(domains)) for _, d := range domains { if !strings.Contains(d, ":") {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 08 20:44:50 UTC 2024 - 7.2K 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 Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Feb 05 20:47:23 UTC 2024 - 28K bytes - Viewed (0) -
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 Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Feb 05 20:47:23 UTC 2024 - 28K bytes - Viewed (0) -
src/main/java/jcifs/smb1/ntlmssp/Type3Message.java
} /** * Returns the domain in which the user has an account. * * @return A <code>String</code> containing the domain for the user. */ public String getDomain() { return domain; } /** * Sets the domain for this message. * * @param domain The domain. */ public void setDomain(String domain) { this.domain = domain; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 22.9K bytes - Viewed (0) -
istioctl/pkg/writer/envoy/configdump/route_test.go
tests := []struct { desc string domains []string expected string }{ { desc: "test zero domain", domains: []string{}, expected: "", }, { desc: "test only one domain", domains: []string{"example.com"}, expected: "example.com", }, { desc: "test domains with port", domains: []string{"example.com", "example.com:8080"},
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Nov 29 12:37:14 UTC 2023 - 2.8K 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 Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 12K bytes - Viewed (0)