- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 62 for 71 (0.01 sec)
-
docs/smb3-features/04-directory-leasing-design.md
} public int getMaxDirectoryCacheEntries() { return getIntProperty(MAX_DIRECTORY_CACHE_ENTRIES, 1000); } ``` ## 7. Performance Optimizations ### 7.1 Batch Directory Operations ```java public class BatchDirectoryOperations { private final DirectoryLeaseManager leaseManager; public List<SmbFile> batchExists(List<String> paths) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 36.2K bytes - Viewed (0) -
docs/smb3-features/05-rdma-smb-direct-design.md
} private boolean isRdmaAvailable() { return new DisniRdmaProvider().isAvailable() || new JxioRdmaProvider().isAvailable(); } ``` ## 7. Testing Strategy ### 7.1 Unit Tests ```java @Test public void testRdmaProviderSelection() { RdmaProvider provider = RdmaProviderFactory.createProvider("auto"); assertNotNull(provider); assertTrue(provider.isAvailable()); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 35.9K bytes - Viewed (0) -
docs/smb3-features/01-smb3-lease-design.md
); sendAsync(ack); // Send acknowledgment asynchronously } // ... handle other message types ... } ``` ## 7. Configuration ### 7.1 Configuration Properties ```java // In PropertyConfiguration.java public class PropertyConfiguration implements Configuration { // Lease configuration properties
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 22K bytes - Viewed (0) -
src/bytes/example_test.go
f := func(c rune) bool { return unicode.Is(unicode.Han, c) } fmt.Println(bytes.IndexFunc([]byte("Hello, 世界"), f)) fmt.Println(bytes.IndexFunc([]byte("Hello, world"), f)) // Output: // 7 // -1 } func ExampleIndexAny() { fmt.Println(bytes.IndexAny([]byte("chicken"), "aeiouy")) fmt.Println(bytes.IndexAny([]byte("crwth"), "aeiouy")) // Output: // 2 // -1 }
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon May 12 16:07:54 UTC 2025 - 16.5K bytes - Viewed (0) -
docs/en/docs/tutorial/sql-databases.md
{* ../../docs_src/sql_databases/tutorial001_an_py310.py ln[58:63] hl[60] *} ### Delete a Hero { #delete-a-hero } We can also **delete** a `Hero`. {* ../../docs_src/sql_databases/tutorial001_an_py310.py ln[66:73] hl[71] *} ### Run the App { #run-the-app } You can run the app: <div class="termy"> ```console $ fastapi dev main.py
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 15.4K bytes - Viewed (0) -
src/archive/zip/reader_test.go
0000070 2e 4c 6e a5 60 45 02 62 81 95 b6 94 9e 9e 77 e7 0000080 d0 43 b6 f8 71 df 96 3c e7 a4 69 ce bf cf e9 79 0000090 ce ef 79 3f bf f1 31 db b6 bb 31 76 92 e7 f3 07 00000a0 8b fc 9c ca cc 08 cc cb cc 5e d2 1c 88 d9 7e bb 00000b0 4f bb 3a 3f 75 f1 5d 7f 8f c2 68 67 77 8f 25 ff 00000c0 84 e2 93 2d ef a4 95 3d 71 4e 2c b9 b0 87 c3 be 00000d0 3d f8 a7 60 24 61 c5 ef ae 9e c8 6c 6d 4e 69 c8
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Mar 11 22:19:38 UTC 2025 - 56.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/TreeRangeMapTest.java
assertEquals( ImmutableMap.of(Range.open(3, 7), 1, Range.closed(7, 10), 2, Range.closed(12, 16), 3), rangeMap.asMapOfRanges()); sub.putCoalescing(Range.singleton(7), 1); assertEquals( ImmutableMap.of(Range.closed(5, 7), 1, Range.openClosed(7, 10), 2), sub.asMapOfRanges()); assertEquals( ImmutableMap.of( Range.open(3, 5), 1,
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 30K bytes - Viewed (0) -
docs/smb3-features/02-persistent-handles-design.md
@Override public void logoff() throws IOException { if (handleManager != null) { handleManager.shutdown(); } // ... existing logoff logic ... } ``` ## 7. Configuration ### 7.1 Configuration Properties ```java // In PropertyConfiguration.java public static final String USE_DURABLE_HANDLES = "jcifs.smb.client.useDurableHandles";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 31.6K bytes - Viewed (0) -
docs/smb3-features/06-witness-protocol-design.md
} public boolean isWitnessServiceDiscovery() { return getBooleanProperty(WITNESS_SERVICE_DISCOVERY, true); } ``` ## 7. Testing Strategy ### 7.1 Unit Tests ```java @Test public void testWitnessRegistration() { WitnessRegistration registration = new WitnessRegistration( "\\\\server\\share", InetAddress.getByName("192.168.1.100"),
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 42K bytes - Viewed (0) -
docs/smb3-features/03-multi-channel-design.md
String strategy = getProperty(LOAD_BALANCING_STRATEGY, "adaptive"); return LoadBalancingStrategy.valueOf(strategy.toUpperCase()); } ``` ## 7. Testing Strategy ### 7.1 Unit Tests ```java @Test public void testChannelSelection() { ChannelManager manager = new ChannelManager(context, session); // Add test channels
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 39.6K bytes - Viewed (0)