Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 109 for 512 (0.02 sec)

  1. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PRIMENTS = 28721
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PRIMENTS ideal-int
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PUP = 512
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PUPAT = 512
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PUPAT ideal-int
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PUP ideal-int
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_RACAL = 28720
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Thu Aug 08 18:44:16 UTC 2019
    - 452.6K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/ServerMessageBlock2Test.java

            @Test
            @DisplayName("Should handle compound with final response")
            void testCompoundFinalResponse() throws SMBProtocolDecodingException {
                byte[] buffer = new byte[512];
                System.arraycopy(SMBUtil.SMB2_HEADER, 0, buffer, 0, 4);
                SMBUtil.writeInt4(0, buffer, 20); // nextCommand = 0 (final)
    
                testMessage.setBytesRead(10);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 39.5K bytes
    - Viewed (0)
  3. src/test/java/jcifs/SidResolverTest.java

                        .thenReturn(new SID[0]);
    
                SID[] result = sidResolver.getGroupMemberSids(mockContext, testServerName, mockDomainSid, 512, flag);
    
                assertNotNull(result);
            }
        }
    
        @Test
        void testGetLocalGroupsMap_DifferentFlags() throws CIFSException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 15.5K bytes
    - Viewed (0)
  4. docs/distributed/README.md

    export MINIO_ROOT_PASSWORD=<SECRET_KEY>
    minio server http://host{1...n}/export{1...m} http://host{o...z}/export{1...m}
    ```
    
    For example:
    
    ```
    minio server http://host{1...4}/export{1...16} http://host{5...12}/export{1...16}
    ```
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  5. src/test/java/jcifs/config/BaseConfigurationTest.java

            assertFalse(config.isForceExtendedSecurity());
        }
    
        @Test
        @DisplayName("Test buffer configuration getters")
        void testBufferConfigurationGetters() {
            assertEquals(0xFFFF - 512, config.getTransactionBufferSize());
            assertEquals(0x10000, config.getMaximumBufferSize());
            assertEquals(16, config.getBufferCacheSize());
            assertEquals(200, config.getListCount());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  6. src/test/java/jcifs/internal/smb2/ioctl/SrvCopyChunkCopyResponseTest.java

            @ValueSource(ints = { 0, 10, 50, 100, 200 })
            void testDecodeAtVariousOffsets(int offset) throws SMBProtocolDecodingException {
                byte[] buffer = new byte[512];
                byte[] responseData = createValidCopyChunkResponse(7, 8192, 57344);
                System.arraycopy(responseData, 0, buffer, offset, responseData.length);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 19.8K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionTest.java

        }
    
        @Test
        @DisplayName("Test writeParameterWordsWireFormat with large buffer offset")
        void testWriteParameterWordsWireFormatLargeOffset() {
            byte[] dst = new byte[512];
            int startOffset = 100;
    
            // Set up transaction parameters
            transaction.setMaxSetupCount((byte) 3);
            transaction.setTotalParameterCount(500);
            transaction.setTotalDataCount(1000);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.1K bytes
    - Viewed (0)
  8. api/go1.14.txt

    pkg syscall (freebsd-arm64), const BPF_T_MICROTIME_MONOTONIC = 512
    pkg syscall (freebsd-arm64), const BPF_T_MICROTIME_MONOTONIC ideal-int
    pkg syscall (freebsd-arm64), const BPF_T_MICROTIME_MONOTONIC_FAST = 768
    pkg syscall (freebsd-arm64), const BPF_T_MICROTIME_MONOTONIC_FAST ideal-int
    pkg syscall (freebsd-arm64), const BPF_T_MONOTONIC = 512
    pkg syscall (freebsd-arm64), const BPF_T_MONOTONIC ideal-int
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 508.9K bytes
    - Viewed (0)
  9. src/archive/tar/format.go

    	magicGNU, versionGNU     = "ustar ", " \x00"
    	magicUSTAR, versionUSTAR = "ustar\x00", "00"
    	trailerSTAR              = "tar\x00"
    )
    
    // Size constants from various tar specifications.
    const (
    	blockSize  = 512 // Size of each block in a tar stream
    	nameSize   = 100 // Max length of the name field in USTAR format
    	prefixSize = 155 // Max length of the prefix field in USTAR format
    
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Fri Oct 13 18:36:46 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb1/trans/SmbComTransaction.java

            super(config, command);
            this.subCommand = subCommand;
            this.maxDataCount = config.getTransactionBufferSize() - 512;
            this.maxParameterCount = 1024;
            this.primarySetupOffset = PRIMARY_SETUP_OFFSET;
            this.secondaryParameterOffset = SECONDARY_PARAMETER_OFFSET;
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 17.3K bytes
    - Viewed (0)
Back to top