- Sort Score
- Num 10 results
- Language All
Results 81 - 90 of 201 for 8128 (0.03 seconds)
-
impl/maven-core/src/main/java/org/apache/maven/plugin/DefaultPluginDescriptorCache.java
* prior notice. * * @since 3.0 */ @Named @Singleton public class DefaultPluginDescriptorCache implements PluginDescriptorCache { private Map<Key, PluginDescriptor> descriptors = new ConcurrentHashMap<>(128); private Map<Key, Key> keys = new ConcurrentHashMap<>(); @Override public void flush() { descriptors.clear(); } @OverrideCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 5.9K bytes - Click Count (0) -
src/test/java/org/codelibs/core/misc/Base64UtilTest.java
assertEquals("Round trip should preserve UTF-8 data", utf8Text, new String(utf8Decoded, "UTF-8")); // Test with binary data final byte[] binaryData = new byte[] { 0, 1, 2, 3, 127, (byte) 128, (byte) 255 }; final String binaryEncoded = Base64Util.encode(binaryData); final byte[] binaryDecoded = Base64Util.decode(binaryEncoded);
Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Sat Nov 22 11:21:59 GMT 2025 - 6K bytes - Click Count (0) -
src/test/java/jcifs/pac/kerberos/KerberosTokenTest.java
byte[] content = innerContent.toByteArray(); // Create GSS-API APPLICATION 0 tag baos.write(0x60); // APPLICATION 0 // Write length if (content.length < 128) { baos.write(content.length); } else if (content.length < 256) { baos.write(0x81); // length of length = 1 baos.write(content.length); } else {Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 6.8K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/MojoExecution.java
public void setLifecyclePhase(String lifecyclePhase) { this.lifecyclePhase = lifecyclePhase; } @Override public String toString() { StringBuilder buffer = new StringBuilder(128); if (mojoDescriptor != null) { buffer.append(mojoDescriptor.getId()); } buffer.append(" {execution: ").append(executionId).append('}'); return buffer.toString(); }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 6.2K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelData.java
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 5.8K bytes - Click Count (0) -
guava/src/com/google/common/hash/Murmur3_128HashFunction.java
private final int seed; Murmur3_128HashFunction(int seed) { this.seed = seed; } @Override public int bits() { return 128; } @Override public Hasher newHasher() { return new Murmur3_128Hasher(seed); } @Override public String toString() { return "Hashing.murmur3_128(" + seed + ")"; }
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Apr 14 16:36:11 GMT 2025 - 5.8K bytes - Click Count (0) -
src/test/java/jcifs/smb/SmbPipeHandleInternalTest.java
when(ioctlResp.getOutputLength()).thenReturn(42); byte[] in = new byte[128]; byte[] out = new byte[256]; // Act int n = handle.sendrecv(out, 1, 10, in, 128); // Assert assertEquals(42, n); ArgumentCaptor<Smb2IoctlRequest> cap = ArgumentCaptor.forClass(Smb2IoctlRequest.class);
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 16.7K bytes - Click Count (0) -
guava/src/com/google/common/hash/SipHashFunction.java
// The number of compression rounds. private final int c; // The number of finalization rounds. private final int d; // Two 64-bit keys (represent a single 128-bit key). private final long k0; private final long k1; /** * @param c the number of compression rounds (must be positive) * @param d the number of finalization rounds (must be positive)
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Feb 13 17:34:21 GMT 2025 - 5.3K bytes - Click Count (0) -
cmd/object-api-datatypes.go
{"BETWEEN_10_MB_AND_64_MB", humanize.MiByte * 10, humanize.MiByte*64 - 1}, {"BETWEEN_64_MB_AND_128_MB", humanize.MiByte * 64, humanize.MiByte*128 - 1}, {"BETWEEN_128_MB_AND_512_MB", humanize.MiByte * 128, humanize.MiByte*512 - 1}, {"GREATER_THAN_512_MB", humanize.MiByte * 512, math.MaxInt64}, } // ObjectsHistogramIntervals is the list of all intervals // of object sizes to be included in objects histogram.Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 21.2K bytes - Click Count (0) -
api/go1.14.txt
pkg syscall (freebsd-arm64), const IP_MAX_MEMBERSHIPS ideal-int pkg syscall (freebsd-arm64), const IP_MAX_SOCK_MUTE_FILTER = 128 pkg syscall (freebsd-arm64), const IP_MAX_SOCK_MUTE_FILTER ideal-int pkg syscall (freebsd-arm64), const IP_MAX_SOCK_SRC_FILTER = 128 pkg syscall (freebsd-arm64), const IP_MAX_SOCK_SRC_FILTER ideal-int pkg syscall (freebsd-arm64), const IP_MAX_SOURCE_FILTER = 1024
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Fri Feb 17 20:31:46 GMT 2023 - 508.9K bytes - Click Count (0)