Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 253 for domein (0.04 sec)

  1. src/main/resources/fess_label_nl.properties

    labels.advance_search_occt=Zoeken in
    labels.advance_search_occt_default=Hele pagina
    labels.advance_search_occt_allintitle=Paginatitel
    labels.advance_search_occt_allinurl=Pagina-URL
    labels.advance_search_sitesearch=Site of domein
    labels.advance_search_timestamp=Bijgewerkt op
    labels.advance_search_timestamp_default=Elke datum
    labels.advance_search_timestamp_pastday=Afgelopen 24 uur
    labels.advance_search_timestamp_pastweek=Afgelopen week
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 42.8K bytes
    - Viewed (1)
  2. src/main/java/jcifs/smb1/smb1/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
    - 31.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SIDCacheImpl.java

         *            The hostname of the server that should be queried. For maximum efficiency this should be the hostname
         *            of a domain controller however a member server will work as well and a domain controller may not
         *            return names for SIDs corresponding to local accounts for which the domain controller is not an
         *            authority.
         * @param tc
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Mon Aug 25 14:34:10 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/Dfs.java

            if (domains == null) {
                return false;
            }
            domain = domain.toLowerCase();
            return domains.get(domain) != null;
        }
    
        /**
         * Gets a domain controller transport for the specified domain
         * @param domain the domain name
         * @param auth the authentication credentials
         * @return an SMB transport to the domain controller
    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/dcerpc/msrpc/lsarpc.java

                // Default constructor
            }
    
            /** Domain NetBIOS name. */
            public rpc.unicode_string name;
            /** DNS domain name. */
            public rpc.unicode_string dns_domain;
            /** DNS forest name. */
            public rpc.unicode_string dns_forest;
            /** Domain GUID. */
            public rpc.uuid_t domain_guid;
            /** Domain security identifier. */
            public rpc.sid_t sid;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 44.5K bytes
    - Viewed (0)
  6. src/test/java/jcifs/smb/SIDCacheImplTest.java

                // Domains: single domain named TESTDOM
                lsarpc.LsarRefDomainList domains = new lsarpc.LsarRefDomainList();
                domains.count = 1;
                domains.max_count = 1;
                domains.domains = new lsarpc.LsarTrustInformation[1];
                domains.domains[0] = new lsarpc.LsarTrustInformation();
                domains.domains[0].name = new UnicodeString("TESTDOM", false);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SID.java

        /**
         * Construct a relative SID
         *
         * @param domsid the domain SID
         * @param id the SID to append to the domain SID
         */
        public SID(final SID domsid, final SID id) {
            this.revision = domsid.revision;
            this.identifier_authority = domsid.identifier_authority;
            this.sub_authority_count = (byte) (domsid.sub_authority_count + id.sub_authority_count);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 16K bytes
    - Viewed (0)
  8. 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)
  9. src/main/java/jcifs/smb/DfsImpl.java

            synchronized (this.domainsLock) {
                final 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 Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 29.7K bytes
    - Viewed (0)
  10. 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)
Back to top