- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 544 for Domain (0.03 sec)
-
dbflute_fess/dfprop/lastafluteMap.dfprop
# } # } # } # # *The line that starts with '#' means comment-out. # map:{ # your service name, camel case, initial uncapitalised ; serviceName = fess # package for your domain name, e.g. com.example ; domainPackage = org.codelibs.fess # keywords for environment properties, same as directory name ; environmentList = list:{}
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun May 20 08:20:11 UTC 2018 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/http/NetworkExplorer.java
index = user.indexOf('/'); } final String domain = index != -1 ? user.substring(0, index) : this.defaultDomain; user = index != -1 ? user.substring(index + 1) : user; ntlm = new NtlmPasswordAuthentication(getTransportContext(), domain, user, password); } req.getSession().setAttribute("npa-" + server, ntlm);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 23.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcSamrOpenAlias.java
* (local group) using the SAMR RPC interface. */ public class MsrpcSamrOpenAlias extends samr.SamrOpenAlias { /** * Creates a new request to open an alias handle. * * @param handle the domain handle * @param access the desired access rights * @param rid the relative identifier of the alias * @param aliasHandle the alias handle to be populated */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.6K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/CertificatePinner.kt
* .build(); * ``` * * ## Domain Patterns * * Pinning is per-hostname and/or per-wildcard pattern. To pin both `publicobject.com` and * `www.publicobject.com` you must configure both hostnames. Or you may use patterns to match * sets of related domain names. The following forms are permitted: * * * **Full domain name**: you may pin an exact domain name like `www.publicobject.com`. It won't
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 14.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/FessUserNotFoundExceptionTest.java
// Test with username containing special characters String username = "user@domain.com"; FessUserNotFoundException exception = new FessUserNotFoundException(username); assertNotNull(exception); assertEquals("User is not found: user@domain.com", exception.getMessage()); assertNull(exception.getCause()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtlmChallenge.java
*/ public final class NtlmChallenge implements Serializable { /** * The NTLM challenge bytes received from the server. */ public byte[] challenge; /** * The domain controller address that issued the challenge. */ public UniAddress dc; NtlmChallenge(final byte[] challenge, final UniAddress dc) { this.challenge = challenge; this.dc = dc; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportInternal.java
* Gets DFS referrals for the specified path. * * @param ctx the CIFS context * @param name the DFS path to resolve * @param targetHost the target host name * @param targetDomain the target domain * @param rn the referral number * @return dfs referral * @throws SmbException if an SMB error occurs * @throws CIFSException if a CIFS error occurs */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/ntlmssp/NtlmFlags.java
int NTLMSSP_NEGOTIATE_NETWARE = 0x00000100; /** * Indicates support for NTLM authentication. */ int NTLMSSP_NEGOTIATE_NTLM = 0x00000200; /** * 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.1K bytes - Viewed (0) -
src/test/java/jcifs/netbios/SessionRequestPacketTest.java
when(mockCalledName.getNameType()).thenReturn(0x20); when(mockCalledName.getScope()).thenReturn("DOMAIN.COM"); when(mockCallingName.getName()).thenReturn("CLIENT"); when(mockCallingName.getNameType()).thenReturn(0x00); when(mockCallingName.getScope()).thenReturn("DOMAIN.COM"); SessionRequestPacket packet = new SessionRequestPacket(mockConfig, mockCalledName, mockCallingName);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.5K bytes - Viewed (0) -
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)