- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 179 for rawr (0.1 sec)
-
src/main/java/jcifs/smb1/util/DES.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 22.7K bytes - Viewed (0) -
src/test/java/jcifs/ntlmssp/av/AvPairTest.java
int type2 = AvPair.MsvAvEOL; byte[] raw2 = new byte[] {}; AvPair avPair2 = new AvPair(type2, raw2); assertEquals(type2, avPair2.getType(), "Type should match the constructor argument for empty raw data."); assertArrayEquals(raw2, avPair2.getRaw(), "Raw data should match the constructor argument for empty raw data."); // Test with null raw data int type3 = AvPair.MsvAvFlags;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3K bytes - Viewed (0) -
callbacks/raw.go
Jinzhu <******@****.***> 1748158840 +0800
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Sun May 25 07:40:40 UTC 2025 - 468 bytes - Viewed (0) -
docs/compression/README.md
Write throughput is typically at least 500MB/s per CPU core, and scales with the number of available CPU cores. Decompression speed is typically at least 1GB/s. This means that in cases where raw IO is below these numbers compression will not only reduce disk usage but also help increase system throughput. Typically, enabling compression on spinning disk systems will increase speed when the content can be compressed.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SigningDigest.java
*/ final SmbComReadAndXResponse raxr = (SmbComReadAndXResponse) response; final int length = response.length - raxr.dataLength; update(data, index, length - SmbConstants.SIGNATURE_OFFSET - 8); update(raxr.b, raxr.off, raxr.dataLength); } else { update(data, index, response.length - SmbConstants.SIGNATURE_OFFSET - 8);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.9K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/av/AvPair.java
private final int type; private final byte[] raw; /** * Constructs an AV pair with type and raw data * @param type the AV pair type * @param raw the raw data bytes */ public AvPair(final int type, final byte[] raw) { this.type = type; this.raw = raw; } /** * Gets the AV pair type * @return the type */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/av/AvPairs.java
return switch (avId) { case AvPair.MsvAvFlags -> new AvFlags(raw); case AvPair.MsvAvTimestamp -> new AvTimestamp(raw); case AvPair.MsvAvTargetName -> new AvTargetName(raw); case AvPair.MsvAvSingleHost -> new AvSingleHost(raw); case AvPair.MsvAvChannelBindings -> new AvChannelBindings(raw); default -> new AvPair(avId, raw);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.3K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/av/AvFlags.java
* * @author mbechler */ public class AvFlags extends AvPair { /** * Constructs an AV flags pair from raw bytes * @param raw the raw flag bytes */ public AvFlags(final byte[] raw) { super(AvPair.MsvAvFlags, raw); } /** * Constructs an AV flags pair from integer flags * @param flags the flag values as integer */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.7K bytes - Viewed (0) -
src/test/java/jcifs/ntlmssp/av/AvTargetNameTest.java
import java.nio.charset.StandardCharsets; import org.junit.jupiter.api.Test; class AvTargetNameTest { /** * Test constructor with raw bytes. * Verifies that the AvPair type is correctly set and raw bytes are stored. */ @Test void testConstructorWithRawBytes() { byte[] rawBytes = "TEST_TARGET_NAME".getBytes(StandardCharsets.UTF_16LE);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/impl/ParameterizedClassDescImpl.java
public class ParameterizedClassDescImpl implements ParameterizedClassDesc { /** The raw class */ protected Class<?> rawClass; /** An array of {@link ParameterizedClassDesc} representing type arguments */ protected ParameterizedClassDesc[] arguments; /** * Constructs an instance. * * @param rawClass * The raw class. Must not be {@literal null}. */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 2.8K bytes - Viewed (0)