- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 354 for mydomain (0.06 sec)
-
src/main/java/jcifs/internal/smb1/net/NetServerEnum2.java
}; String domain, lastName = null; int serverTypes; /** * * @param config * @param domain * @param serverTypes */ public NetServerEnum2 ( Configuration config, String domain, int serverTypes ) { super(config, SMB_COM_TRANSACTION, NET_SERVER_ENUM2); this.domain = domain; this.serverTypes = serverTypes;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java
private String authProperty; private String authMethod; private boolean handshakeComplete; static { String domain = System.getProperty("http.auth.ntlm.domain"); if (domain == null) domain = Type3Message.getDefaultDomain(); DEFAULT_DOMAIN = domain; } public NtlmHttpURLConnection(HttpURLConnection connection) { super(connection.getURL()); this.connection = connection;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 20.4K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ContiguousSet.java
C beforeUpper = requireNonNull(range.upperBound.greatestValueBelow(domain)); // Per class spec, we are allowed to throw CCE if necessary empty = Range.compareOrThrow(afterLower, beforeUpper) > 0; } return empty ? new EmptyContiguousSet<C>(domain) : new RegularContiguousSet<C>(effectiveRange, domain); } /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Nov 30 21:54:06 UTC 2023 - 9.9K bytes - Viewed (0) -
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 Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 26.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NetServerEnum2.java
static final String[] DESCR = { "WrLehDO\u0000B16BBDz\u0000", "WrLehDz\u0000B16BBDz\u0000", }; String domain, lastName = null; int serverTypes; NetServerEnum2( String domain, int serverTypes ) { this.domain = domain; this.serverTypes = serverTypes; command = SMB_COM_TRANSACTION; subCommand = NET_SERVER_ENUM2; // not really true be used by upper logic
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 3.5K bytes - Viewed (0) -
src/main/webapp/WEB-INF/env/crawler/resources/log4j2.xml
<Property name="stats.log.pattern" value="%msg%n" /> </Properties> <Appenders> <RollingFile name="AppRollingFile" fileName="${log.file.basedir}/${domain.name}.log" filePattern="${log.file.basedir}/${domain.name}${backup.date.suffix}-%i.log.gz"> <PatternLayout><Pattern>${log.pattern}</Pattern></PatternLayout><!-- <EcsLayout serviceName="fess" eventDataset="crawler" /> --> <Policies>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Feb 20 13:05:30 UTC 2023 - 2.4K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Range.java
* domain).equals(ContiguousSet.create(b, domain))} implies {@code * a.canonical(domain).equals(b.canonical(domain))} * <li>idempotence: {@code a.canonical(domain).canonical(domain).equals(a.canonical(domain))} * </ul> * * <p>Furthermore, this method guarantees that the range returned will be one of the following * canonical forms: * * <ul> * <li>[start..end) * <li>[start..+∞)
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 16 17:21:56 UTC 2024 - 27.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/SID.java
* * <pre> * toString: S-1-5-21-4133388617-793952518-2001621813-512 * toDisplayString: WNET\Domain Admins * getType: 2 * getTypeText: Domain group * getDomainName: WNET * getAccountName: Domain Admins * </pre> * * @internal */ public class SID extends rpc.sid_t implements jcifs.SID {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 14.9K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/Type2Message.java
String domain = tc.getConfig().getDefaultDomain(); byte[] ti = TARGET_INFO_CACHE.get(domain); if ( ti != null ) { return ti; } ti = makeTargetInfo(tc, domain); TARGET_INFO_CACHE.put(domain, ti); return ti; } /** * @param domain * @param domainLength * @param server * @return
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 14.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NtlmServlet.java
* to protect content with NTLM HTTP Authentication. Servlets that * extend this abstract base class may be authenticatied against an SMB * server or domain controller depending on how the * <tt>jcifs.smb1.smb1.client.domain</tt> or <tt>jcifs.smb1.http.domainController</tt> * properties are be specified. <b>With later containers the
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 6.8K bytes - Viewed (0)