- Sort Score
- Result 10 results
- Languages All
Results 921 - 930 of 7,528 for thais (0.08 sec)
-
src/main/java/jcifs/internal/smb1/net/SmbShareInfo.java
return Objects.equals(this.netName, si.netName); } return false; } @Override public int hashCode() { return Objects.hashCode(this.netName); } @Override public String toString() { return ("SmbShareInfo[" + "netName=" + this.netName + ",type=0x" + Hexdump.toHexString(this.type, 8) + ",remark=" + this.remark + "]"); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/netdfs.java
_dst.align(4); _dst.enc_ndr_referent(this.path, 1); _dst.enc_ndr_referent(this.comment, 1); _dst.enc_ndr_long(this.state); _dst.enc_ndr_long(this.num_stores); _dst.enc_ndr_referent(this.stores, 1); if (this.path != null) { _dst = _dst.deferred; _dst.enc_ndr_string(this.path); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 21.8K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ForwardingNavigableMap.java
} /** * A sensible implementation of {@link NavigableMap#descendingMap} in terms of the methods of this * {@code NavigableMap}. In many cases, you may wish to override {@link * ForwardingNavigableMap#descendingMap} to forward to this implementation or a subclass thereof. * * <p>In particular, this map iterates over entries with repeated calls to {@link
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 14.1K bytes - Viewed (0) -
guava/src/com/google/common/collect/ForwardingNavigableMap.java
} /** * A sensible implementation of {@link NavigableMap#descendingMap} in terms of the methods of this * {@code NavigableMap}. In many cases, you may wish to override {@link * ForwardingNavigableMap#descendingMap} to forward to this implementation or a subclass thereof. * * <p>In particular, this map iterates over entries with repeated calls to {@link
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 14.3K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/toolchain/DefaultToolchain.java
this.model = model; this.logger = logger; } /** * * @param model the model, must not be {@code null} * @param type the type * @param logger the logger, must not be {@code null} */ protected DefaultToolchain(ToolchainModel model, String type, Logger logger) { this(model, logger); this.type = type; } @Override
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Feb 12 13:13:28 UTC 2025 - 4.8K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Connection.kt
* connection the socket may be shared by multiple concurrent calls. */ fun socket(): Socket /** * Returns the TLS handshake used to establish this connection, or null if the connection is not * HTTPS. */ fun handshake(): Handshake? /** * Returns the protocol negotiated by this connection, or [Protocol.HTTP_1_1] if no protocol
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 4.3K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacSidAttributes.java
*/ public PacSidAttributes(final SID id, final int attributes) { this.id = id; this.attributes = attributes; } /** * Gets the Security Identifier. * * @return the SID associated with this instance */ public SID getId() { return this.id; } /** * Gets the attribute flags associated with the SID. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NameServiceClientImpl.java
this.sem = sem; this.host = host; this.type = type; this.scope = scope; this.svr = svr; this.tc = tc; } @Override public void run() { try { this.ans = this.tc.getNameServiceClient().getNbtAllByName(this.host, this.type, this.scope, this.svr);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 38.5K bytes - Viewed (0) -
src/main/java/jcifs/DialectVersion.java
* */ DialectVersion() { this.smb2 = false; this.dialect = -1; } DialectVersion(final int dialectId) { this.smb2 = true; this.dialect = dialectId; } /** * Check if this is an SMB2 dialect version * * @return the smb2 */ public final boolean isSMB2() { return this.smb2; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/LeaseV1CreateContextRequest.java
*/ public LeaseV1CreateContextRequest(Smb2LeaseKey leaseKey, int leaseState) { this.leaseKey = leaseKey; this.leaseState = leaseState; this.leaseFlags = 0; } @Override public byte[] getName() { return CONTEXT_NAME_BYTES; } /** * Gets the lease key for this lease request * @return the lease key */ public Smb2LeaseKey getLeaseKey() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 4.6K bytes - Viewed (0)