- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for getAlgorithmName (0.08 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/jcifs/internal/smb2/nego/CompressionNegotiateContext.java
} /** * Gets a human-readable name for the compression algorithm. * * @param algorithm the algorithm constant * @return the algorithm name */ public static String getAlgorithmName(int algorithm) { switch (algorithm) { case COMPRESSION_NONE: return "None"; case COMPRESSION_LZ77: return "LZ77"; case COMPRESSION_LZ77_HUFFMAN:Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 7.5K bytes - Click Count (0) -
src/main/java/jcifs/smb/compression/CompressionService.java
/** * Gets a human-readable name for the compression algorithm. * * @param algorithm the algorithm constant * @return the algorithm name */ String getAlgorithmName(int algorithm);Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 5.2K bytes - Click Count (0) -
src/main/java/jcifs/smb/compression/DefaultCompressionService.java
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 11.2K bytes - Click Count (0) -
src/test/java/jcifs/smb/compression/CompressionNegotiateContextTest.java
public void testAlgorithmNames() { assertEquals("None", CompressionNegotiateContext.getAlgorithmName(CompressionNegotiateContext.COMPRESSION_NONE)); assertEquals("LZ77", CompressionNegotiateContext.getAlgorithmName(CompressionNegotiateContext.COMPRESSION_LZ77)); assertEquals("LZ77+Huffman", CompressionNegotiateContext.getAlgorithmName(CompressionNegotiateContext.COMPRESSION_LZ77_HUFFMAN));
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 5.6K bytes - Click Count (0) -
src/test/java/jcifs/smb/compression/DefaultCompressionServiceTest.java
assertEquals("None", compressionService.getAlgorithmName(CompressionService.COMPRESSION_NONE)); assertEquals("LZ77", compressionService.getAlgorithmName(CompressionService.COMPRESSION_LZ77)); assertEquals("LZ77+Huffman", compressionService.getAlgorithmName(CompressionService.COMPRESSION_LZ77_HUFFMAN)); assertEquals("LZNT1", compressionService.getAlgorithmName(CompressionService.COMPRESSION_LZNT1));
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 9.1K bytes - Click Count (0)