- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 47 for _domainsp (0.11 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/test/java/jcifs/dcerpc/msrpc/lsarpcTest.java
when(mockDeferredNdrBuffer.dec_ndr_long()).thenReturn(2); // _domainss refDomainList.decode(mockNdrBuffer); assertEquals(2, refDomainList.count); assertEquals(5, refDomainList.max_count); assertNotNull(refDomainList.domains); assertEquals(2, refDomainList.domains.length);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 60.8K 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) -
okhttp/src/jvmTest/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat
gc.ca // cat : https://www.iana.org/domains/root/db/cat.html cat // cc : https://www.iana.org/domains/root/db/cc.html cc // cd : https://www.iana.org/domains/root/db/cd.html // see also: https://www.nic.cd/domain/insertDomain_2.jsp?act=1 cd gov.cd // cf : https://www.iana.org/domains/root/db/cf.html cf // cg : https://www.iana.org/domains/root/db/cg.html cg
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 309.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) -
src/test/java/jcifs/smb1/smb1/DfsTest.java
cacheEntry.map = trustedDomains; dfs._domains = cacheEntry; assertEquals(trustedDomains, dfs.getTrustedDomains(auth)); } @Test void testGetTrustedDomains_ExpiredCache() throws IOException, SmbAuthException { // Set up an expired cache entry Dfs.CacheEntry expiredEntry = new Dfs.CacheEntry(-1); // Expired testDfs._domains = expiredEntry;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.6K bytes - Viewed (0) -
cmd/api-response_test.go
}, }, domains: []string{"mys3.bucket.org"}, bucket: "mybucket", object: "test/1.txt", expectedLocation: "https://mybucket.mys3.bucket.org/test/1.txt", }, } for _, testCase := range testCases { t.Run("", func(t *testing.T) { gotLocation := getObjectLocation(testCase.request, testCase.domains, testCase.bucket, testCase.object)
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 3.5K 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)