- Sort Score
- Num 10 results
- Language All
Results 41 - 50 of 101 for 41 (0.04 seconds)
-
docs/smb3-features/04-directory-leasing-design.md
RECURSIVE_TREE, // Entire subtree (if supported) METADATA_ONLY, // File attributes but not content FULL_ENUMERATION // Complete directory listing } ``` ## 4. Data Structures ### 4.1 Directory Lease Context ```java package jcifs.internal.smb2.lease; public class DirectoryLeaseContext extends Smb2LeaseContext { public static final String NAME_DIRECTORY_REQUEST = "DLse";
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 02:53:50 GMT 2025 - 36.2K bytes - Click Count (0) -
docs/smb3-features/05-rdma-smb-direct-design.md
*/ void shutdown(); } public enum RdmaAccess { LOCAL_READ, LOCAL_WRITE, REMOTE_READ, REMOTE_WRITE, MEMORY_BIND } ``` ## 4. Data Structures ### 4.1 RDMA Connection ```java package jcifs.internal.smb2.rdma; import java.nio.ByteBuffer; import java.util.concurrent.BlockingQueue; import java.util.concurrent.LinkedBlockingQueue;Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 02:53:50 GMT 2025 - 35.9K bytes - Click Count (0) -
compat/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/VersionRangeTest.java
assertTrue(restriction.isUpperBoundInclusive(), CHECK_UPPER_BOUND_INCLUSIVE); range1 = VersionRange.createFromVersionSpec("[1.0,1.2],[1.3,1.7]"); range2 = VersionRange.createFromVersionSpec("[1.1,1.4],[1.5,1.6]"); mergedRange = range1.restrict(range2); assertNull(mergedRange.getRecommendedVersion(), CHECK_VERSION_RECOMMENDATION); restrictions = mergedRange.getRestrictions();
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sun Mar 30 23:08:36 GMT 2025 - 44.1K bytes - Click Count (0) -
docs/smb3-features/01-smb3-lease-design.md
} ``` ### 3.2 Lease Versions - **Lease V1**: Basic lease support (SMB 3.0) - **Lease V2**: Adds epoch support for better consistency (SMB 3.0.2+) ## 4. Data Structures ### 4.1 Lease Key Structure ```java package jcifs.internal.smb2.lease; import java.security.SecureRandom; import java.util.Arrays; public class Smb2LeaseKey { private final byte[] key; // 16-byte lease key
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 02:53:50 GMT 2025 - 22K bytes - Click Count (0) -
docs/bigdata/README.md
### **4.1 Spark Pi**
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Tue Aug 12 18:20:36 GMT 2025 - 14.7K bytes - Click Count (0) -
api/go1.6.txt
pkg debug/elf, const R_MIPS_TLS_DTPMOD64 = 40 pkg debug/elf, const R_MIPS_TLS_DTPMOD64 R_MIPS pkg debug/elf, const R_MIPS_TLS_DTPREL32 = 39 pkg debug/elf, const R_MIPS_TLS_DTPREL32 R_MIPS pkg debug/elf, const R_MIPS_TLS_DTPREL64 = 41 pkg debug/elf, const R_MIPS_TLS_DTPREL64 R_MIPS pkg debug/elf, const R_MIPS_TLS_DTPREL_HI16 = 44 pkg debug/elf, const R_MIPS_TLS_DTPREL_HI16 R_MIPS pkg debug/elf, const R_MIPS_TLS_DTPREL_LO16 = 45
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Wed Jan 13 23:40:13 GMT 2016 - 12.9K bytes - Click Count (0) -
src/test/java/jcifs/netbios/NameTest.java
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 19.4K bytes - Click Count (0) -
api/go1.1.txt
pkg debug/dwarf, const TagDwarfProcedure = 54 pkg debug/dwarf, const TagEntryPoint = 3 pkg debug/dwarf, const TagEnumerationType = 4 pkg debug/dwarf, const TagEnumerator = 40 pkg debug/dwarf, const TagFileType = 41 pkg debug/dwarf, const TagFormalParameter = 5 pkg debug/dwarf, const TagFriend = 42 pkg debug/dwarf, const TagImportedDeclaration = 8 pkg debug/dwarf, const TagImportedModule = 58
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Thu Mar 31 20:37:15 GMT 2022 - 2.6M bytes - Click Count (0) -
go.sum
github.com/armon/go-metrics v0.0.0-20190430140413-ec5e00d3c878/go.mod h1:3AMJUQhVx52RsWOnlkpikZr01T/yAVN2gn0861vByNg= github.com/armon/go-metrics v0.4.1 h1:hR91U9KYmb6bLBYLQjyM+3j+rcd/UhE+G78SFnF8gJA= github.com/armon/go-metrics v0.4.1/go.mod h1:E6amYzXo6aW1tqzoZGT755KkbgrJsSdpwZ+3JqfkOG4= github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 h1:DklsrG3dyBCFEj5IhUbnKptjxatkF07cF2ak3yi77so=
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 79.8K bytes - Click Count (0) -
docs/smb3-features/02-persistent-handles-design.md
public static final long MAX_DURABLE_TIMEOUT = 300000; // 5 minutes public static final long PERSISTENT_TIMEOUT = 0; // Infinite for persistent } ``` ## 4. Data Structures ### 4.1 Handle GUID Structure ```java package jcifs.internal.smb2.persistent; import java.util.UUID; import java.nio.ByteBuffer; public class HandleGuid { private final UUID guid;Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 02:53:50 GMT 2025 - 31.6K bytes - Click Count (0)