- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 255 for starai (0.08 sec)
-
src/main/java/jcifs/internal/smb2/create/LeaseV1CreateContextRequest.java
} @Override public int encode(byte[] dst, int dstIndex) { int start = dstIndex; // Write context header SMBUtil.writeInt4(0, dst, dstIndex); // Next (offset to next context, 0 for last) dstIndex += 4; SMBUtil.writeInt2(16, dst, dstIndex); // NameOffset (from start of context) dstIndex += 2; SMBUtil.writeInt2(4, dst, dstIndex); // NameLength
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/SearchForm.java
public SearchForm() { super(); } // advance @Override public int getStartPosition() { if (start == null) { start = ComponentUtil.getFessConfig().getPagingSearchPageStartAsInteger(); } return start; } @Override public int getOffset() { if (offset == null) { offset = 0; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/persistent/DurableHandleV2Request.java
} @Override public int encode(byte[] dst, int dstIndex) { int start = dstIndex; // Write context header SMBUtil.writeInt4(0, dst, dstIndex); // Next (offset to next context, 0 for last) dstIndex += 4; SMBUtil.writeInt2(16, dst, dstIndex); // NameOffset (from start of context) dstIndex += 2; SMBUtil.writeInt2(4, dst, dstIndex); // NameLength
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 5.2K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/AbstractScheduledService.java
* Each task is retained for only as long as it is running -- so it's retained only as long as * it would already be retained by the underlying executor. * * If the cycle test starts reporting this cycle in the future, we should add an entry to * cycle_suppress_list.txt. */ private final AbstractService service; /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 27.7K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/HttpUrl.kt
* `input` does not have a scheme that starts at `pos`. */ private fun schemeDelimiterOffset( input: String, pos: Int, limit: Int, ): Int { if (limit - pos < 2) return -1 val c0 = input[pos] if ((c0 < 'a' || c0 > 'z') && (c0 < 'A' || c0 > 'Z')) return -1 // Not a scheme start char. characters@ for (i in pos + 1 until limit) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon May 05 16:01:00 UTC 2025 - 63.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/ServerMessageBlockTest.java
// Test odd Unicode alignment - headerStart affects alignment int bytesWritten = testBlock.writeString(testString, buffer, 2); // When even alignment (offset 2), Unicode string starts immediately assertTrue(bytesWritten >= 8); // "Test" in Unicode + null terminator // First byte should be 'T' in UTF-16LE assertEquals(0x54, buffer[2] & 0xFF); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 36.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/DfsImpl.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 29.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComSessionSetupAndX.java
dst[dstIndex++] = (byte) 0x00; writeInt4(capabilities, dst, dstIndex); dstIndex += 4; return dstIndex - start; } @Override int writeBytesWireFormat(final byte[] dst, int dstIndex) { final int start = dstIndex; if (blob != null) { System.arraycopy(blob, 0, dst, dstIndex, blob.length); dstIndex += blob.length;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
*/ public ThumbnailManager() { // Default constructor } /** * Initializes the thumbnail manager after construction. * Sets up base directory and starts background processing. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) { logger.debug("Initialize {}", this.getClass().getSimpleName()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.9K bytes - Viewed (0) -
dbflute_fess/dfprop/sequenceMap.dfprop
# # Example: # map:{ # ; PURCHASE = SEQ_PURCHASE # ; MEMBER = SEQ_MEMBER # ; MEMBER_LOGIN = SEQ_MEMBER_LOGIN # ; PRODUCT = SEQ_PRODUCT # } # # *The line that starts with '#' means comment-out. # map:{ #; PURCHASE = SEQ_PURCHASE #; MEMBER = SEQ_MEMBER #; MEMBER_LOGIN = SEQ_MEMBER_LOGIN #; PRODUCT = SEQ_PRODUCT }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 31 23:35:14 UTC 2015 - 717 bytes - Viewed (0)