Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for 66 (0.05 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. cmd/apierrorcode_string.go

    	_ = x[ErrReplicationValidationError-61]
    	_ = x[ErrReplicationPermissionCheckError-62]
    	_ = x[ErrObjectRestoreAlreadyInProgress-63]
    	_ = x[ErrNoSuchKey-64]
    	_ = x[ErrNoSuchUpload-65]
    	_ = x[ErrInvalidVersionID-66]
    	_ = x[ErrNoSuchVersion-67]
    	_ = x[ErrNotImplemented-68]
    	_ = x[ErrPreconditionFailed-69]
    	_ = x[ErrRequestTimeTooSkewed-70]
    	_ = x[ErrSignatureDoesNotMatch-71]
    	_ = x[ErrMethodNotAllowed-72]
    	_ = x[ErrInvalidPart-73]
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Apr 16 07:34:24 UTC 2025
    - 21.6K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/io/BaseEncodingTest.java

        assertThat(base32Hex().upperCase()).isSameInstanceAs(base32Hex());
      }
    
      public void testBase16() {
        testEncodingWithCasing(base16(), "", "");
        testEncodingWithCasing(base16(), "f", "66");
        testEncodingWithCasing(base16(), "fo", "666F");
        testEncodingWithCasing(base16(), "foo", "666F6F");
        testEncodingWithCasing(base16(), "foob", "666F6F62");
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 24.7K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateResponseInputValidationTest.java

            // Add some dummy security data at offset 64 from start
            buffer[64] = (byte) 0x4E; // NTLMSSP signature start
            buffer[65] = (byte) 0x54;
            buffer[66] = (byte) 0x4C;
            buffer[67] = (byte) 0x4D;
            buffer[68] = (byte) 0x53;
            buffer[69] = (byte) 0x53;
            buffer[70] = (byte) 0x50;
            buffer[71] = (byte) 0x00;
    
            return buffer;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 15.8K bytes
    - Viewed (0)
Back to top