- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 27 for 66 (0.01 sec)
-
src/test/java/jcifs/internal/smb1/com/SmbComSeekResponseTest.java
response.readParameterWordsWireFormat(buffer, 0); long firstCall = response.getOffset(); long secondCall = response.getOffset(); long thirdCall = response.getOffset(); assertEquals(66L, firstCall, "First call should return 66"); assertEquals(66L, secondCall, "Second call should return 66");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/cache/EmptyCachesTest.java
Set<Entry<Object, Object>> entrySet = cache.asMap().entrySet(); assertFalse(entrySet.remove(null)); assertFalse(entrySet.remove(entryOf(6, 6))); assertFalse(entrySet.remove(entryOf(-6, -6))); assertFalse(entrySet.removeAll(asList(null, entryOf(0, 0), entryOf(15, 15)))); assertFalse(entrySet.retainAll(asList(null, entryOf(0, 0), entryOf(15, 15)))); checkEmpty(entrySet);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 11.5K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NodeStatusResponseTest.java
// MAC is at index 0-5, actual stats at 6-11 byte[] expectedStats = new byte[12]; System.arraycopy(testMac, 0, expectedStats, 0, 6); // MAC at beginning System.arraycopy(stats, 0, expectedStats, 6, 6); // Stats after MAC assertArrayEquals(expectedStats, parsedStats); } @Test void readRDataWireFormat_shouldHandleUnknownQueryAddress() throws Exception {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 19.3K bytes - Viewed (0) -
buildscripts/checkdeps.sh
echo "Go runtime version '${installed_go_version}' is unsupported. Minimum supported version: ${GO_VERSION} to compile." exit 1 fi } assert_check_deps() { # support unusual Git versions such as: 2.7.4 (Apple Git-66) installed_git_version=$(git version | perl -ne '$_ =~ m/git version (.*?)( |$)/; print "$1\n";') if ! check_minimum_version "${GIT_VERSION}" "${installed_git_version}"; then
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Jun 08 16:12:05 UTC 2025 - 3.4K bytes - Viewed (0) -
docs/em/docs/advanced/websockets.md
*ī¸âŖ đ đ đĒ đ âĒī¸âĄī¸ `fastapi` & âī¸: * `Depends` * `Security` * `Cookie` * `Header` * `Path` * `Query` đĢ đˇ đ đ đ FastAPI đ/*⥠đ ī¸*: {* ../../docs_src/websockets/tutorial002.py hl[66:77,76:91] *} /// info đ *ī¸âŖ âĢī¸ đĢ đ¤ â đ đ¤ `HTTPException`, âŠī¸ đĨ đ¤ `WebSocketException`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 4.7K bytes - Viewed (0) -
guava-tests/test/com/google/common/cache/AbstractCacheTest.java
counter2.recordMisses(1); } for (int i = 0; i < 43; i++) { counter2.recordEviction(); } counter1.incrementBy(counter2); assertEquals(new CacheStats(38, 60, 44, 54, totalLoadTime, 66), counter1.snapshot()); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 6.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/info/Smb2QueryInfoRequestTest.java
// Verify structure size (should be 41) assertEquals(41, SMBUtil.readInt2(buffer, 64)); // Verify info type and file info class assertEquals((byte) 0x01, buffer[66]); assertEquals((byte) 0x04, buffer[67]); // Verify output buffer length assertEquals(0x8000, SMBUtil.readInt4(buffer, 68));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 22.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/info/Smb2SetInfoRequestTest.java
// Verify structure size (should be 33) assertEquals(33, SMBUtil.readInt2(buffer, 64)); // Verify info type and file info class assertEquals((byte) 0x01, buffer[66]); assertEquals((byte) 0x04, buffer[67]); // Verify additional information assertEquals(0x12345678, SMBUtil.readInt4(buffer, 76)); // Verify file ID
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/info/Smb2SetInfoResponseTest.java
// Structure size = 2 SMBUtil.writeInt2(2, buffer, bufferIndex + 64); // Decode the response int result = response.decode(buffer, bufferIndex); assertEquals(66, result); assertEquals(0, response.getStatus()); // Should be STATUS_SUCCESS } @Test @DisplayName("Test readBytesWireFormat preserves buffer content")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.3K bytes - Viewed (0) -
cmd/globals.go
GlobalStaleUploadsExpiry = time.Hour * 24 // 24 hrs. // GlobalStaleUploadsCleanupInterval - Cleanup interval when the stale uploads cleanup is initiated. GlobalStaleUploadsCleanupInterval = time.Hour * 6 // 6 hrs. // Refresh interval to update in-memory iam config cache. globalRefreshIAMInterval = 10 * time.Minute // Limit of location constraint XML for unauthenticated PUT bucket operations.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Sep 03 18:23:41 UTC 2024 - 16.2K bytes - Viewed (1)