- Sort Score
- Result 10 results
- Languages All
Results 191 - 200 of 577 for remain (0.07 sec)
-
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/tls/OkHostnameVerifier.kt
/** Returns true if the [String] is ASCII encoded (0-127). */ private fun String.isAscii() = length == utf8Size().toInt() /** * Returns true if [hostname] matches the domain name [pattern]. * * @param hostname lower-case host name. * @param pattern domain name pattern from certificate. May be a wildcard pattern such as * `*.android.com`. */ private fun verifyHostname( hostname: String?,
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 7.6K bytes - Viewed (0) -
src/test/java/jcifs/smb/CredentialsInternalTest.java
private final String domain; private final boolean anonymous; private final boolean guest; private final Subject subject; private final boolean failOnRefresh; TestCredentials(String domain, boolean anonymous, boolean guest, Subject subject, boolean failOnRefresh) { this.domain = domain; this.anonymous = anonymous;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.9K bytes - Viewed (0) -
android/guava/src/com/google/common/net/HostSpecifier.java
} // It is not any kind of IP address; must be a domain name or invalid. // TODO(user): different versions of this for different factories? InternetDomainName domain = InternetDomainName.from(host); if (domain.hasPublicSuffix()) { return new HostSpecifier(domain.toString()); } throw new IllegalArgumentException( "Domain name does not have a recognized public suffix: " + host); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 6K bytes - Viewed (0) -
src/main/java/jcifs/SID.java
* <p> * Specifically, if the SID has * been resolved and it is not a domain SID or builtin account, * the full DOMAIN\name form of the account will be * returned (e.g. MYDOM\alice or MYDOM\Domain Users). * If the SID has been resolved but it is is a domain SID, * only the domain name will be returned (e.g. MYDOM). * If the SID has been resolved but it is a builtin account,
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java
/** * Create username/password credentials with specified domain * * @param domain the domain for authentication * @param username the username for authentication * @param password the password for authentication */ public NtlmPasswordAuthenticator(String domain, String username, String password) { this(domain, username, password, (AuthenticationType) null); } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 30.3K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/Type1Message.java
/** * Returns the supplied authentication domain. * * @return A <code>String</code> containing the supplied domain. */ public String getSuppliedDomain() { return this.suppliedDomain; } /** * Sets the supplied authentication domain for this message. * * @param suppliedDomain * The supplied domain for this message. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 7.8K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.8.md
it is likely that that selectors will remain immutable after the move to v1. You can continue to use code that depends on mutable selectors by calling the apps/v1beta1 API in this release, but you should start planning for code that does not depend on mutable selectors. - Extended Resources are fully-qualified resource names outside the `kubernetes.io` domain. Extended Resource quantities must be integers.
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Tue Feb 20 15:45:02 UTC 2024 - 312.2K bytes - Viewed (0) -
src/main/java/jcifs/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 this.domain; } /** * Sets the domain for this message. * * @param domain * The domain. */ public void setDomain(final String domain) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 32.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/SambaHelperTest.java
// Test User SID (type 1) assertEquals("1Test User", sambaHelper.getAccountId(createMockSID(1, "Test User"))); // Test Domain Group SID (type 2) assertEquals("2Domain Group", sambaHelper.getAccountId(createMockSID(2, "Domain Group"))); // Test Alias SID (type 4, mapped to 2) assertEquals("2Local Group", sambaHelper.getAccountId(createMockSID(4, "Local Group")));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 14.7K bytes - Viewed (0) -
src/test/java/jcifs/config/PropertyConfigurationTest.java
// System properties should take precedence (if implemented) String domain = testConfig.getDefaultDomain(); assertTrue(domain.equals("systemdomain") || domain.equals("propsdomain")); } finally { // Cleanup if (originalValue != null) { System.setProperty("jcifs.smb.client.domain", originalValue); } else {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.3K bytes - Viewed (0)