- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 433 for referred (0.14 sec)
-
src/main/java/jcifs/internal/smb2/nego/Smb2RdmaTransformCapabilitiesContext.java
// SMB_DIRECT_RDMA_TRANSFORM array (only one element) SMBUtil.writeInt2(rdmaTransformId, data, idx); idx += 2; SMBUtil.writeInt2(0, data, idx); // Reserved idx += 2; SMBUtil.writeInt4(0, data, idx); // Reserved idx += 4; return data; } @Override public int encode(byte[] dst, int dstIndex) { byte[] data = getData();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaNegotiateRequest.java
this.creditsRequested = creditsRequested; } /** * Get preferred send size * * @return preferred send size in bytes */ public int getPreferredSendSize() { return preferredSendSize; } /** * Set preferred send size * * @param preferredSendSize preferred send size in bytes */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 4K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
* Maximum number of SMB3 channels to establish per session */ protected int maxChannels; /** * Channel binding policy: -1=not set, 0=disabled, 1=preferred, 2=required */ protected int channelBindingPolicy = -1; // -1=not set, 0=disabled, 1=preferred, 2=required /** * Load balancing strategy for distributing operations across channels */ protected String loadBalancingStrategy; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 36.5K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.15.md
...
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu May 05 13:44:43 UTC 2022 - 278.9K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/ndr/NdrBufferTest.java
assertEquals(0, derivedBuffer.start); // Derived buffer starts from the original buffer's start assertEquals(10, derivedBuffer.index); assertSame(ndrBuffer.deferred, derivedBuffer.deferred); // Deferred should be the same as original // Ensure changes to derived buffer don't affect original's index/start derivedBuffer.advance(5); assertEquals(15, derivedBuffer.index);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/DfsReferral.java
/** Target share for this referral */ public String share; // Share /** The complete UNC path link */ public String link; /** Path relative to tree from which this referral was thrown */ public String path; // Path relative to tree from which this referral was thrown /** Whether to resolve hashes in the path */ public boolean resolveHashes; /** Expiration time for this referral entry */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2GetDfsReferralResponse.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 5.2K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/google/AbstractBiMapTester.java
for (Entry<K, V> entry : entries) { Entry<V, K> reversed = reverseEntry(entry); BiMap<V, K> inv = getMap().inverse(); assertFalse( "Inverse should not contain entry " + reversed, inv.entrySet().contains(reversed)); assertFalse( "Inverse should not contain key " + reversed.getKey(), inv.containsKey(reversed.getKey())); assertFalse(
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 3.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Dfs.java
import jcifs.smb1.UniAddress; import jcifs.smb1.util.LogStream; /** * Implements DFS (Distributed File System) referral caching and resolution. * This class manages DFS referral cache and provides DFS path resolution functionality. */ public class Dfs { /** * Default constructor for Dfs. * Initializes the DFS referral system. */ public Dfs() { // Default constructor }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 14.2K bytes - Viewed (0) -
guava/src/com/google/common/net/InetAddresses.java
*/ public static InetAddress fromLittleEndianByteArray(byte[] addr) throws UnknownHostException { byte[] reversed = new byte[addr.length]; for (int i = 0; i < addr.length; i++) { reversed[i] = addr[addr.length - i - 1]; } return InetAddress.getByAddress(reversed); } /** * Returns a new InetAddress that is one less than the passed in address. This method works for
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 19 21:24:11 UTC 2025 - 47.4K bytes - Viewed (0)