- Sort Score
- Result 10 results
- Languages All
Results 1651 - 1660 of 1,717 for Target (0.05 sec)
-
src/test/java/jcifs/smb1/smb1/SmbComTransactionResponseTest.java
* copied in a single call. */ @Test public void readBytesWireFormat_succeedsWithSingleRead() { DummyResponse d = new DummyResponse(); // Allocate a transaction buffer large enough for the copy byte[] tx = new byte[100]; d.txn_buf = tx; // Set up a scenario where the full transaction is read in one call d.bufParameterStart = 0;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12K bytes - Viewed (0) -
cmd/server-main.go
logger.FatalIf(xhttp.CheckPortAvailability(globalMinioHost, globalMinioPort, globalTCPOptions), "Unable to start the server") } func initAllSubsystems(ctx context.Context) { // Initialize notification peer targets globalNotificationSys = NewNotificationSys(globalEndpoints) // Create new notification system if globalEventNotifier == nil { globalEventNotifier = NewEventNotifier(GlobalContext) }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue May 27 15:18:36 UTC 2025 - 35.9K bytes - Viewed (4) -
src/main/java/jcifs/smb/SmbFileOutputStream.java
this.writeSizeFile = Math.min(th.getConfig().getSendBufferSize() - 70, 0xFFFF - 70); } else { log.debug("No support or SMB signing is enabled, not enabling large writes"); this.writeSizeFile = this.writeSize; } if (log.isDebugEnabled()) { log.debug("Negotiated file write size is " + this.writeSizeFile); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 12.8K bytes - Viewed (0) -
cmd/endpoint-ellipses.go
// prefers setCounts to be sorted for optimal behavior. if divisibleSize < setCounts[len(setCounts)-1] { return divisibleSize } // Figure out largest value of total_drives_in_erasure_set which results // in least number of total_drives/total_drives_erasure_set ratio. prevD := divisibleSize / setCounts[0] for _, cnt := range setCounts { if divisibleSize%cnt == 0 {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 14.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionTest.java
// Verify data offset should be 0 when data count is 0 assertEquals(0, SMBUtil.readInt4(dst, 31)); } @Test @DisplayName("Test writeParameterWordsWireFormat with large buffer offset") void testWriteParameterWordsWireFormatLargeOffset() { byte[] dst = new byte[512]; int startOffset = 100; // Set up transaction parameters
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/NegotiateContextResponseTest.java
// Arrange EncryptionNegotiateContext context = new EncryptionNegotiateContext(mockConfig, new int[] { 1, 2 }); byte[] smallBuffer = new byte[100]; // Make buffer large enough byte[] largeBuffer = new byte[1000]; // Act int smallEncodedSize = context.encode(smallBuffer, 0); int largeEncodedSize = context.encode(largeBuffer, 500);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 19.4K bytes - Viewed (0) -
README.md
```java // Configure memory usage crawler.crawlerContext.setMaxAccessCount(10000); // Limit crawled URLs crawler.crawlerContext.setMaxDepth(5); // Limit crawl depth // Use streaming for large files container.singleton("fileTransformer", FileTransformer.class, transformer -> { transformer.setMaxContentSize(10 * 1024 * 1024); // 10MB limit }); ``` ## Troubleshooting ### Common Issues
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Aug 31 05:32:52 UTC 2025 - 15.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/rank/fusion/SearchResultTest.java
assertTrue(str.contains("partialResults=true")); assertTrue(str.contains("facetResponse=")); } public void test_largeRecordCount() { // Test with large record count long largeCount = Long.MAX_VALUE; SearchResult result = SearchResult.create().allRecordCount(largeCount).build(); assertEquals(largeCount, result.getAllRecordCount()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/io/Smb2ReadResponseTest.java
assertNotNull(responseWithNull); } @Test @DisplayName("Should handle large data offset value") void testReadBytesWireFormatLargeDataOffset() throws Exception { // Given byte[] buffer = new byte[512]; int bodyStart = 0; int dataLength = 10; // Use a large but safe offset value that fits in signed byte range (120) int dataOffsetValue = 120;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 22.1K bytes - Viewed (0) -
api/go1.txt
pkg encoding/xml, type Name struct, Space string pkg encoding/xml, type ProcInst struct pkg encoding/xml, type ProcInst struct, Inst []uint8 pkg encoding/xml, type ProcInst struct, Target string pkg encoding/xml, type StartElement struct pkg encoding/xml, type StartElement struct, Attr []Attr pkg encoding/xml, type StartElement struct, Name Name pkg encoding/xml, type SyntaxError struct
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Aug 14 18:58:28 UTC 2013 - 1.7M bytes - Viewed (0)