Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 91 for 512 (0.01 sec)

  1. cmd/xl-storage-format-v1.go

    	// HighwayHash256 represents the HighwayHash-256 hash function
    	HighwayHash256
    	// HighwayHash256S represents the Streaming HighwayHash-256 hash function
    	HighwayHash256S
    	// BLAKE2b512 represents the BLAKE2b-512 hash function
    	BLAKE2b512
    )
    
    // DefaultBitrotAlgorithm is the default algorithm used for bitrot protection.
    const (
    	DefaultBitrotAlgorithm = HighwayHash256S
    )
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Oct 22 15:30:50 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraph.java

        @Override
        public String toString() {
            if (isEmpty()) {
                return "empty";
            }
            StringBuilder sb = new StringBuilder(512);
            for (MetadataGraphVertex v : vertices) {
                sb.append("Vertex:  ").append(v.getMd().toString()).append('\n');
                List<MetadataGraphEdge> ins = getIncidentEdges(v);
                if (ins != null) {
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Jul 23 17:27:08 UTC 2025
    - 13K bytes
    - Viewed (0)
  5. src/test/java/jcifs/netbios/SessionRequestPacketTest.java

                    new TestNetbiosName("WORKSTATION1", 0x00, "CORP.LOCAL"));
    
            // Write to buffer
            byte[] buffer = new byte[512];
            int written = originalPacket.writeWireFormat(buffer, 0);
    
            // Read from buffer
            ByteArrayInputStream bais = new ByteArrayInputStream(buffer);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. src/main/java/jcifs/audit/SecurityAuditLogger.java

            }
        }
    
        private StringBuilder getStringBuilder() {
            StringBuilder sb = stringBuilderPool.poll();
            if (sb == null) {
                sb = new StringBuilder(512); // Pre-allocate reasonable size
            } else {
                sb.setLength(0); // Reset length
            }
            return sb;
        }
    
        private void returnStringBuilder(StringBuilder sb) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  10. cmd/erasure-decode_test.go

    	{dataBlocks: 6, onDisks: 12, offDisks: 0, blocksize: int64(blockSizeV2), data: int64(2 * blockSizeV2), offset: 512, length: int64(blockSizeV2) + 8*1024, algorithm: DefaultBitrotAlgorithm, shouldFail: false, shouldFailQuorum: false},           // 30
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 21K bytes
    - Viewed (0)
Back to top