Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 365 for vector (0.83 sec)

  1. src/cmd/README.vendor

    See src/README.vendor for information on loading vendored packages
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu May 09 17:11:16 UTC 2019
    - 102 bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb1/smb1/Trans2QueryFSInformationResponseTest.java

            writeInt8(2000, buffer, 0); // total allocation units
            writeInt8(1000, buffer, 8); // free allocation units
            writeInt4(8, buffer, 16); // sectors per allocation unit
            writeInt4(4096, buffer, 20); // bytes per sector
    
            int bytesRead = response.readDataWireFormat(buffer, 0, buffer.length);
    
            assertEquals(24, bytesRead, "Should read 24 bytes");
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/fscc/FileFsSizeInformationTest.java

            @DisplayName("Should decode various sector and allocation configurations")
            @CsvSource({ "1000, 500, 1, 512", // Minimal sectors per alloc
                    "1000, 500, 8, 512", // Typical configuration
                    "1000, 500, 64, 512", // Large allocation units
                    "1000, 500, 8, 4096", // 4K sectors
                    "1000, 500, 16, 4096", // Large sectors and allocation
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 25.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/fscc/SmbInfoAllocation.java

    /**
     * Represents the SMB_INFO_ALLOCATION information level used in SMB transaction requests.
     * This structure provides allocation information for a file system including total units,
     * free units, sectors per allocation unit, and bytes per sector.
     */
    public class SmbInfoAllocation implements AllocInfo {
    
        /**
         * Default constructor for SMB allocation information.
         */
        public SmbInfoAllocation() {
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/fscc/FileFsFullSizeInformation.java

     * This structure provides complete allocation details including total allocation units, caller-available free units,
     * actual free allocation units, sectors per allocation unit, and bytes per sector.
     */
    public class FileFsFullSizeInformation implements AllocInfo, FileSystemInformation, Decodable {
    
        private long alloc; // Also handles SmbQueryFSSizeInfo
        private long free;
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  6. src/test/java/jcifs/internal/fscc/FileFsFullSizeInformationTest.java

            @DisplayName("Should decode various sector and allocation configurations")
            @CsvSource({ "1000, 500, 600, 1, 512", // Minimal sectors per alloc
                    "1000, 500, 600, 8, 512", // Typical configuration
                    "1000, 500, 600, 64, 512", // Large allocation units
                    "1000, 500, 600, 8, 4096", // 4K sectors
                    "1000, 500, 600, 16, 4096", // Large sectors and allocation
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 30.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/fscc/FileFsSizeInformation.java

    /**
     * Represents the FILE_FS_SIZE_INFORMATION structure used to query file system size information.
     * This structure provides details about the total allocation units, free allocation units,
     * sectors per allocation unit, and bytes per sector for a file system volume.
     */
    public class FileFsSizeInformation implements AllocInfo {
    
        private long alloc; // Also handles SmbQueryFSSizeInfo
        private long free;
        private int sectPerAlloc;
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  8. lib/fips140/v1.0.0-c2097c7c.zip

    V4.B16 AESE V21.B16, V5.B16 AESE V21.B16, V6.B16 AESE V21.B16, V7.B16 VEOR V0.B16, V22.B16, V0.B16 VEOR V1.B16, V22.B16, V1.B16 VEOR V2.B16, V22.B16, V2.B16 VEOR V3.B16, V22.B16, V3.B16 VEOR V4.B16, V22.B16, V4.B16 VEOR V5.B16, V22.B16, V5.B16 VEOR V6.B16, V22.B16, V6.B16 VEOR V7.B16, V22.B16, V7.B16 VLD1.P 64(SRC), [V23.B16, V24.B16, V25.B16, V26.B16] VLD1.P 64(SRC), [V27.B16, V28.B16, V29.B16, V30.B16] VEOR V23.B16, V0.B16, V23.B16 VEOR V24.B16, V1.B16, V24.B16 VEOR V25.B16, V2.B16, V25.B16 VEOR V26.B16,...
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Sep 25 19:53:19 UTC 2025
    - 642.7K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/fscc/SmbInfoAllocationTest.java

        @DisplayName("Test decode with large bytes per sector")
        void testDecodeWithLargeBytesPerSector() throws SMBProtocolDecodingException {
            // Prepare test data with large bytesPerSect
            byte[] buffer = new byte[22];
            int idFileSystem = 0x22222222;
            int sectPerAlloc = 8;
            long alloc = 10000L;
            long free = 5000L;
            int bytesPerSect = 32768; // 32KB sectors
    
            // Encode test data
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  10. lib/fips140/v1.1.0-rc1.zip

    V4.B16 AESE V21.B16, V5.B16 AESE V21.B16, V6.B16 AESE V21.B16, V7.B16 VEOR V0.B16, V22.B16, V0.B16 VEOR V1.B16, V22.B16, V1.B16 VEOR V2.B16, V22.B16, V2.B16 VEOR V3.B16, V22.B16, V3.B16 VEOR V4.B16, V22.B16, V4.B16 VEOR V5.B16, V22.B16, V5.B16 VEOR V6.B16, V22.B16, V6.B16 VEOR V7.B16, V22.B16, V7.B16 VLD1.P 64(SRC), [V23.B16, V24.B16, V25.B16, V26.B16] VLD1.P 64(SRC), [V27.B16, V28.B16, V29.B16, V30.B16] VEOR V23.B16, V0.B16, V23.B16 VEOR V24.B16, V1.B16, V24.B16 VEOR V25.B16, V2.B16, V25.B16 VEOR V26.B16,...
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Dec 11 16:27:41 UTC 2025
    - 663K bytes
    - Viewed (0)
Back to top