- Sort Score
- Result 10 results
- Languages All
Results 491 - 500 of 3,190 for final (0.02 sec)
-
src/main/java/org/codelibs/core/convert/DateConversionUtil.java
* @return the converted {@link Date} */ protected static Date toDate(final String str, final DateFormat format) { final ParsePosition pos = new ParsePosition(0); final Date date = format.parse(str, pos); if (date == null) { return null; } final int index = pos.getIndex(); if (index == 0) { return null; }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 19.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NodeStatusResponse.java
} @Override int writeRDataWireFormat(final byte[] dst, final int dstIndex) { return 0; } @Override int readRDataWireFormat(final byte[] src, int srcIndex) { final int start = srcIndex; numberOfNames = src[srcIndex] & 0xFF; final int namesLength = numberOfNames * 18; final int statsLength = rDataLength - namesLength - 1;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 5.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/SLinkedList.java
* @return the element */ public E get(final int index) { return getEntry(index).element; } /** * Sets the element at the specified position. * * @param index the index * @param element the element * @return the original element */ public E set(final int index, final E element) { final Entry entry = getEntry(index);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 10.5K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/Type3Message.java
* @throws CIFSException if a CIFS protocol error occurs */ public Type3Message(final CIFSContext tc, final Type2Message type2, final String targetName, final String password, final String domain, final String user, final String workstation, final int flags, final boolean nonAnonymous) throws GeneralSecurityException, CIFSException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 32.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/Name.java
* This class represents a NetBIOS name with its associated type and scope. */ public class Name { private static final int TYPE_OFFSET = 31; private static final int SCOPE_OFFSET = 33; private static final String DEFAULT_SCOPE = Config.getProperty("jcifs.smb1.netbios.scope"); static final String OEM_ENCODING = Config.getProperty("jcifs.smb1.encoding", Charset.defaultCharset().displayName());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/badword/ApiAdminBadwordAction.java
*/ // GET /api/admin/badword/settings // PUT /api/admin/badword/settings @Execute public JsonResponse<ApiResult> settings(final SearchBody body) { validateApi(body, messages -> {}); final BadWordPager pager = copyBeanToNewBean(body, BadWordPager.class); final List<BadWord> list = badWordService.getBadWordList(pager); return asJson(
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.3K bytes - Viewed (0) -
src/test/java/org/codelibs/core/collection/ArrayUtilTest.java
*/ @Test public void testAddAll() throws Exception { final String[] array = new String[] { "111" }; final String[] newArray = ArrayUtil.add(array, "222"); assertThat(newArray.length, is(2)); assertThat(newArray[0], is("111")); assertThat(newArray[1], is("222")); final String[] emptyArray = new String[0];
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Fri Jun 20 13:40:57 UTC 2025 - 10.6K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/lsarpc.java
* @param level the lookup level * @param count the number of SIDs */ public LsarLookupSids(final rpc.policy_handle handle, final LsarSidArray sids, final LsarRefDomainList domains, final LsarTransNameArray names, final short level, final int count) { this.handle = handle; this.sids = sids; this.domains = domains;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 44.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/info/Smb2SetInfoRequest.java
@Override protected int writeBytesWireFormat(final byte[] dst, int dstIndex) { final int start = dstIndex; SMBUtil.writeInt2(33, dst, dstIndex); dst[dstIndex + 2] = this.infoType; dst[dstIndex + 3] = this.fileInfoClass; dstIndex += 4; final int bufferLengthOffset = dstIndex; dstIndex += 4; final int bufferOffsetOffset = dstIndex; dstIndex += 4;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeConnection.java
final T response, final Set<RequestParam> params) throws CIFSException { CIFSException last = null; final RequestWithPath rpath = request instanceof RequestWithPath r ? r : null; final String savedPath = rpath != null ? rpath.getPath() : null;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 30.4K bytes - Viewed (0)