- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 24 for _domainsp (0.05 sec)
-
src/main/java/jcifs/dcerpc/msrpc/lsarpc.java
final int _domainss = _src.dec_ndr_long(); final int _domainsi = _src.index; _src.advance(12 * _domainss); if (this.domains == null) { if (_domainss < 0 || _domainss > 0xFFFF) { throw new NdrException(NdrException.INVALID_CONFORMANCE); } this.domains = new LsarTrustInformation[_domainss];
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/smb1/dcerpc/msrpc/lsarpc.java
final int _domainss = _src.dec_ndr_long(); final int _domainsi = _src.index; _src.advance(12 * _domainss); if (domains == null) { if (_domainss < 0 || _domainss > 0xFFFF) { throw new NdrException(NdrException.INVALID_CONFORMANCE); } domains = new LsarTrustInformation[_domainss]; }
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/main/java/jcifs/smb1/smb1/Dfs.java
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/smb/DfsImpl.java
|| tf.getCredentials().getUserDomain().isEmpty()) { return null; } if (this._domains != null && System.currentTimeMillis() > this._domains.expiration) { this._domains = null; } if (this._domains != null) { return this._domains.map; } try { final String authDomain = tf.getCredentials().getUserDomain();
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/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) -
docs/en/docs/deployment/https.md
* The encryption of the connection happens at the **TCP level**. * That's one layer **below HTTP**. * So, the **certificate and encryption** handling is done **before HTTP**. * **TCP doesn't know about "domains"**. Only about IP addresses. * The information about the **specific domain** requested goes in the **HTTP data**.
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) -
docs/de/docs/deployment/https.md
* Das ist eine Schicht **unter HTTP**. * Die Handhabung von **Zertifikaten und Verschlüsselung** erfolgt also **vor HTTP**. * **TCP weiß nichts über „<abbr title="Domäne, Bereich, Wirkungsraum">Domains</abbr>“**. Nur über IP-Adressen. * Die Informationen über die angeforderte **spezifische Domain** befinden sich in den **HTTP-Daten**.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun May 11 13:37:26 UTC 2025 - 13.6K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/DiscreteDomain.java
* * <p>A discrete domain always represents the <i>entire</i> set of values of its type; it cannot * represent partial domains such as "prime integers" or "strings of length 5." * * <p>See the Guava User Guide section on <a href= * "https://github.com/google/guava/wiki/RangesExplained#discrete-domains">{@code * DiscreteDomain}</a>. * * @author Kevin Bourrillion * @since 10.0 */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 10.4K bytes - Viewed (0) -
cmd/handler-utils.go
func getResource(path string, host string, domains []string) (string, error) { if len(domains) == 0 { return path, nil } // If virtual-host-style is enabled construct the "resource" properly. xhost, err := xnet.ParseHost(host) if err != nil { return "", err } for _, domain := range domains { if xhost.Name == minioReservedBucket+"."+domain { continue }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 16.3K bytes - Viewed (1)