Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 544 for Domain (0.08 sec)

  1. src/test/java/jcifs/SmbTreeHandleTest.java

         * Verifies that the method returns the correct OEM domain name.
         * @throws CIFSException
         */
        @Test
        void testGetOEMDomainName() throws CIFSException {
            when(smbTreeHandle.getOEMDomainName()).thenReturn("TEST_DOMAIN");
            assertEquals("TEST_DOMAIN", smbTreeHandle.getOEMDomainName(), "OEM domain name should be TEST_DOMAIN");
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb/SmbTreeHandleImplTest.java

            // Set server timezone (in minutes) and domain
            nego.getServerData().serverTimeZone = 60; // 60 minutes
            nego.getServerData().oemDomainName = "DOMAIN";
    
            when(transport.getNegotiateResponse()).thenReturn(nego);
    
            assertEquals(60L * 1000L * 60L, handle.getServerTimeZoneOffset());
            assertEquals("DOMAIN", handle.getOEMDomainName());
            verify(session, times(2)).close();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.4K bytes
    - Viewed (0)
  3. src/test/java/jcifs/netbios/NbtAddressTest.java

            mockName = new Name(mockConfig, "DOMAIN", 0x1B, null); // Domain Master Browser
            NbtAddress nbtAddress = new NbtAddress(mockName, testAddressInt, false, NbtAddress.H_NODE);
            assertEquals(NbtAddress.SMBSERVER_NAME, nbtAddress.firstCalledName());
    
            mockName = new Name(mockConfig, "DOMAIN", 0x1C, null); // Domain Controller
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/Credentials.java

         * @return instance for type, null if the type cannot be unwrapped
         */
        <T extends Credentials> T unwrap(Class<T> type);
    
        /**
         * Get the domain of the user account.
         * @return the domain the user account is in
         */
        String getUserDomain();
    
        /**
         * Check if these are anonymous credentials.
         * @return whether these are anonymous credentials
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java

         */
        @Override
        public String getDomain() {
            return this.domain;
        }
    
        /**
         * @param fullName
         *            the fullName to set
         */
        @Override
        public void setFullUNCPath(final String domain, final String server, final String fullName) {
            this.domain = domain;
            this.server = server;
            this.fullName = fullName;
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 22.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

         */
        public void setCookieName(final String cookieName) {
            this.cookieName = cookieName;
        }
    
        /**
         * Sets the domain for the user identification cookie.
         *
         * @param cookieDomain the domain to use for the user identification cookie
         */
        public void setCookieDomain(final String cookieDomain) {
            this.cookieDomain = cookieDomain;
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  7. src/test/java/jcifs/http/NtlmServletTest.java

            // Mock ServletConfig to provide initialization parameters
            Map<String, String> initParams = new HashMap<>();
            initParams.put("jcifs.smb.client.domain", "TEST_DOMAIN");
            initParams.put("jcifs.http.domainController", "dc.test.domain");
            initParams.put("jcifs.http.enableBasic", "true");
            initParams.put("jcifs.http.insecureBasic", "true");
            initParams.put("jcifs.http.basicRealm", "TestRealm");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/http/NtlmHttpFilter.java

                    if (index == -1) {
                        index = user.indexOf('/');
                    }
                    final String domain = index != -1 ? user.substring(0, index) : defaultDomain;
                    user = index != -1 ? user.substring(index + 1) : user;
                    ntlm = new NtlmPasswordAuthentication(domain, user, password);
                    dc = UniAddress.getByName(domainController, true);
                }
                try {
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  9. guava/src/com/google/common/net/package-info.java

     * or implied. See the License for the specific language governing permissions and limitations under
     * the License.
     */
    
    /**
     * Utility methods and classes for networking (such as IP addresses and domain names).
     *
     * <p>This package is a part of the open-source <a href="https://github.com/google/guava">Guava</a>
     * library.
     *
     * @author Craig Berry
     */
    @CheckReturnValue
    @NullMarked
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 14:50:24 UTC 2024
    - 997 bytes
    - Viewed (0)
  10. src/main/java/jcifs/ntlmssp/NtlmFlags.java

        /**
         * Indicates that this is an anonymous connection
         */
        int NTLMSSP_NEGOTIATE_ANONYMOUS = 0x00000800;
    
        /**
         * Indicates whether the OEM-formatted domain name in which the
         * client workstation has membership is supplied in the Type-1 message.
         * This is used in the negotation of local authentication.
         */
        int NTLMSSP_NEGOTIATE_OEM_DOMAIN_SUPPLIED = 0x00001000;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.5K bytes
    - Viewed (0)
Back to top