- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 68 for sequences (0.64 sec)
-
src/test/java/jcifs/internal/witness/MockWitnessService.java
return "ncacn_ip_tcp:127.0.0.1[135]"; } } /** * Simulate heartbeat processing * * @param registrationId the registration ID * @param sequenceNumber the sequence number * @return true if heartbeat was successful */ public boolean processHeartbeat(String registrationId, long sequenceNumber) { MockRegistration registration = registrations.get(registrationId);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 8.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/normalizer/NormalizerChain.java
* <li>{@link #add(Normalizer)} - Adds a new normalizer to the chain.</li> * </ul> * * <p>Fields:</p> * <ul> * <li>{@code normalizers} - A list of normalizers to be applied in sequence.</li> * </ul> */ public class NormalizerChain implements Normalizer { /** * Constructs a new {@link NormalizerChain}. */ public NormalizerChain() { // nothing }
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 17 14:23:01 UTC 2025 - 2.5K bytes - Viewed (0) -
src/test/java/jcifs/smb1/dcerpc/ndr/NdrShortTest.java
decoded.decode(buf); assertEquals(expected, decoded.value, "decoded value should match original after masking"); } /** * Verify that encode writes the correct little-endian sequence * to the buffer and that alignment is respected. */ @Test void encodeWritesCorrectBytesAndAlignment() throws NdrException { NdrShort ns = new NdrShort(0xABCD); // value & 0xFF => 0xCD
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/jcifs/util/Encdec.java
throw new IOException("Invalid UTF-8 sequence"); } uni[ui] |= (ch & 0x3F) << 6; ch = src[si++] & 0xFF; uni[ui] |= ch & 0x3F; if ((ch & 0xC0) != 0x80 || uni[ui] < 0x800) { throw new IOException("Invalid UTF-8 sequence"); } } else {
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 17.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/SmbComNTCreateAndXTest.java
assertTrue(str.startsWith("SmbComNTCreateAndX["), "toString should start with class name"); assertTrue(str.contains("name=test.txt"), "The file name should appear"); // securityFlags are set to 0x03 – verify hex sequence assertTrue(str.contains("securityFlags=0x03"), "securityFlags should be present"); } /** * Fetch a private field value via reflection. This helper keeps the
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.6K bytes - Viewed (0) -
fess-crawler/src/test/resources/org/codelibs/fess/crawler/helper/robots_malformed.txt
User-agent: SpecialCharBot Disallow: /path with spaces/ Disallow: /path%20encoded/ Disallow: /path?query=value Disallow: /path#fragment Allow: /unicode/日本語/ # Case 10: Multiple User-agents in sequence User-agent: Bot1 User-agent: Bot2 User-agent: Bot3 Disallow: /shared/ # Case 11: Sitemap with various formats Sitemap: http://example.com/sitemap.xml sitemap: http://example.com/sitemap2.xml
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Fri Nov 14 12:52:01 UTC 2025 - 2.6K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/processor/impl/NullResponseProcessorTest.java
for (int i = 0; i < 10; i++) { responseDataArray[i] = new ResponseData(); responseDataArray[i].setUrl("https://example.com/page" + i); } // Process all in sequence (could be parallel, but not necessary for this test) for (ResponseData responseData : responseDataArray) { processor.process(responseData); } // Verify all are unchanged
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:29:22 UTC 2025 - 8.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/io/Smb2WriteRequest.java
this.data = data; this.dataOffset = offset; this.dataLength = length; } /** * Sets the number of bytes remaining to be written in a sequence of write operations. * * @param remainingBytes the remainingBytes to set */ public void setRemainingBytes(final int remainingBytes) { this.remainingBytes = remainingBytes; }Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/QueryProcessor.java
*/ QueryBuilder execute(final QueryContext context, final Query query, final float boost, final FilterChain chain); } /** * Interface for filter chains that process queries through a sequence of filters. * This follows the Chain of Responsibility pattern for query processing. */ public interface FilterChain { /** * Executes the filter chain on the given query. *Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 7.2K bytes - Viewed (0) -
src/test/java/jcifs/EncodableTest.java
Arguments.of(makeSeq(16), 7, 3, 0), // small slice from middle Arguments.of(makeSeq(16), 0, 0, 5) // zero-length with non-zero dst index ); } // Creates a deterministic byte sequence [0,1,2,...,n-1] private static byte[] makeSeq(int n) { byte[] a = new byte[n]; for (int i = 0; i < n; i++) { a[i] = (byte) i; } return a; }
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.6K bytes - Viewed (0)