- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 28 for startReindex (0.08 seconds)
-
src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java
@Execute @Secured({ ROLE }) public HtmlResponse reindexOnly(final ActionForm form) { validate(form, messages -> {}, this::asIndexHtml); verifyToken(this::asIndexHtml); if (startReindex(isCheckboxEnabled(form.replaceAliases), isCheckboxEnabled(form.resetDictionaries), form.numberOfShardsForDoc, form.autoExpandReplicasForDoc)) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 23K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/ioctl/SrvCopychunkTest.java
// When int bytesWritten = chunk.encode(buffer, startIndex); // Then assertEquals(EXPECTED_SIZE, bytesWritten); assertEquals(0L, SMBUtil.readInt8(buffer, startIndex)); assertEquals(0L, SMBUtil.readInt8(buffer, startIndex + 8)); assertEquals(0, SMBUtil.readInt4(buffer, startIndex + 16)); } @TestCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 12.4K bytes - Click Count (0) -
src/test/java/jcifs/internal/fscc/FileRenameInformation2Test.java
byte[] buffer = new byte[100]; int startIndex = 10; buffer[startIndex] = 1; // replaceIfExists = true SMBUtil.writeInt4(nameBytes.length, buffer, startIndex + 16); System.arraycopy(nameBytes, 0, buffer, startIndex + 20, nameBytes.length); FileRenameInformation2 info = new FileRenameInformation2(); int bytesRead = info.decode(buffer, startIndex, buffer.length - startIndex);
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 11.3K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/-UtilCommon.kt
*/ internal fun String.indexOfLastNonAsciiWhitespace( startIndex: Int = 0, endIndex: Int = length, ): Int { for (i in endIndex - 1 downTo startIndex) { when (this[i]) { '\t', '\n', '\u000C', '\r', ' ' -> Unit else -> return i + 1 } } return startIndex }
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Mon May 05 16:01:00 GMT 2025 - 10.1K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/ioctl/SrvCopychunkCopyTest.java
// When int bytesWritten = copy.encode(buffer, startIndex); // Then assertEquals(HEADER_SIZE + (3 * CHUNK_SIZE), bytesWritten); // Verify chunk count assertEquals(3, SMBUtil.readInt4(buffer, startIndex + SOURCE_KEY_SIZE)); // Verify first chunk int chunkStart = startIndex + HEADER_SIZE;Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 23.1K bytes - Click Count (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/runtimes/CheckTargetRuntimes.kt
} private fun <T> List<T>.indexOfFirst(startIndex: Int, predicate: (T) -> Boolean): Int { require(startIndex in indices) { "startIndex must be in range [0, $size): $startIndex" } return this.subList(startIndex, size).indexOfFirst(predicate).let { if (it == -1) -1 else it + startIndex } } private fun File.asClickableFileUrl(): String {
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Mar 11 22:40:18 GMT 2026 - 13.8K bytes - Click Count (0) -
src/test/java/jcifs/internal/fscc/FileBasicInfoTest.java
byte[] buffer = new byte[100]; int startIndex = 5; original.encode(buffer, startIndex); // Now decode into a new instance int bytesRead = fileBasicInfo.decode(buffer, startIndex, 36); // Verify bytes read assertEquals(36, bytesRead); // Verify decoded values match originalCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 11.5K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/trans/nt/NtTransQuerySecurityDescTest.java
for (int i = 0; i < dst.length; i++) { dst[i] = (byte) (i & 0xFF); } int startIndex = 5; int bytesWritten = querySecurityDesc.writeParametersWireFormat(dst, startIndex); // Check that bytes before startIndex are unchanged for (int i = 0; i < startIndex; i++) { assertEquals((byte) (i & 0xFF), dst[i]); }
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 13.9K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/Smb2EchoRequestTest.java
byte[] buffer = new byte[100]; int startIndex = 10; int bytesWritten = echoRequest.writeBytesWireFormat(buffer, startIndex); // Should write 4 bytes assertEquals(4, bytesWritten); // Should write structure size of 4 assertEquals(4, SMBUtil.readInt2(buffer, startIndex)); } @Test
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 11.3K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/trans/nt/NtTransQuerySecurityDescResponseTest.java
int startIndex = 10; // Prepare buffer with offset byte[] fullBuffer = new byte[buffer.length + startIndex]; System.arraycopy(buffer, 0, fullBuffer, startIndex, buffer.length); setErrorCode(response, 0); int bytesRead = response.readDataWireFormat(fullBuffer, startIndex, buffer.length);Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 10.8K bytes - Click Count (0)