Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for _domainsp (0.07 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/main/java/jcifs/smb1/smb1/Dfs.java

            if (DISABLED || auth.domain == "?") {
                return null;
            }
    
            if (_domains != null && System.currentTimeMillis() > _domains.expiration) {
                _domains = null;
            }
            if (_domains != null) {
                return _domains.map;
            }
            try {
                final UniAddress addr = UniAddress.getByName(auth.domain, true);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/main/java/jcifs/dcerpc/msrpc/lsarpc.idl

    	} LsarTransSidArray;
    
    	typedef struct {
    		unicode_string name;
    		sid_t *sid;
    	} LsarTrustInformation;
    
    	typedef struct {
    		[range(0,1000)] uint32_t count;
    		[size_is(count)] LsarTrustInformation *domains;
    		uint32_t max_count;
    	} LsarRefDomainList;
    
    	typedef struct {
    		uint16_t sid_type;
    		unicode_string name;
    		uint32_t sid_index;
    	} LsarTranslatedName;
    
    	typedef struct {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.1K bytes
    - Viewed (3)
Back to top