- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 3,865 for Signal (0.06 sec)
-
src/test/java/org/codelibs/core/beans/impl/PropertyDescImplTest.java
final MyBean myBean = new MyBean(); final BeanDesc beanDesc = new BeanDescImpl(MyBean.class); final PropertyDesc propDesc = beanDesc.getPropertyDesc("jjj"); propDesc.setValue(myBean, null); } /** * @throws Exception */ @Test(expected = IllegalPropertyRuntimeException.class) public void testSetValue_invalidType() throws Exception {
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Fri Jun 20 13:40:57 UTC 2025 - 11K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/IndexingHelper.java
*/ protected long deleteOldDocuments(final SearchEngineClient searchEngineClient, final DocList docList) { final FessConfig fessConfig = ComponentUtil.getFessConfig(); final List<String> docIdList = new ArrayList<>(); for (final Map<String, Object> inputDoc : docList) { final Object idValue = inputDoc.get(fessConfig.getIndexFieldId());Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 26.1K bytes - Viewed (0) -
src/test/java/org/codelibs/core/crypto/CachedCipherTest.java
final CachedCipher cipher = new CachedCipher(); cipher.setKey("mySecretKey"); final String original = ""; final String encrypted = cipher.encryptText(original); final String decrypted = cipher.decryptText(encrypted); assertThat(decrypted, is(original)); } @Test public void testLongText() { final CachedCipher cipher = new CachedCipher();
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 5.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ViewHelper.java
protected String replaceHighlightQueries(final String cache, final String[] queries) { final StringBuffer buf = new StringBuffer(cache.length() + 100); final StringBuffer segBuf = new StringBuffer(1000); final Pattern p = Pattern.compile("<[^>]+>"); final Matcher m = p.matcher(cache); final String[] regexQueries = new String[queries.length]; final String[] hlQueries = new String[queries.length];
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 52.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessMultipartRequestHandler.java
// ================== protected void handleSizeLimitExceededException(final HttpServletRequest request, final FileUploadByteCountLimitException e) { final long actual = e.getActualSize(); final long permitted = e.getPermitted(); final String msg = "Exceeded size of the multipart request: actual=" + actual + " permitted=" + permitted;Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 18.6K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/ldap/LdapManager.java
* @return an array of role names */ public String[] getRoles(final LdapUser ldapUser, final String bindDn, final String accountFilter, final String groupFilter, final Consumer<String[]> lazyLoading) { final SystemHelper systemHelper = ComponentUtil.getSystemHelper(); final Set<String> roleSet = new HashSet<>(); if (fessConfig.isLdapRoleSearchUserEnabled()) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 86.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/SitemapsHelper.java
private static final String IMAGE_LOC_ELEMENT = "image:loc"; private static final String IMAGE_CAPTION_ELEMENT = "image:caption"; private static final String IMAGE_GEO_LOCATION_ELEMENT = "image:geo_location"; private static final String IMAGE_TITLE_ELEMENT = "image:title"; private static final String IMAGE_LICENSE_ELEMENT = "image:license";Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Fri Nov 14 13:19:40 UTC 2025 - 34.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlRequest.java
this(config, controlCode, Smb2Constants.UNSPECIFIED_FILEID); } /** * Constructs an SMB2 IOCTL request with a specified file ID * @param config the client configuration * @param controlCode the IOCTL control code * @param fileId the file identifier */
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 9.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbCopyUtil.java
* @param sh * @param req * @param resp * @throws SmbException */ static void copyDir(final SmbFile src, final SmbFile dest, final byte[][] b, final int bsize, final WriterThread w, final SmbTreeHandleImpl sh, final SmbTreeHandleImpl dh) throws CIFSException { final String path = dest.getLocator().getUNCPath(); if (path.length() > 1) { try { dest.mkdir();Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 16.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RoleQueryHelper.java
* @return A set of roles. */ public Set<String> build(final SearchRequestType searchRequestType) { final Set<String> roleSet = new HashSet<>(); final HttpServletRequest request = LaRequestUtil.getOptionalRequest().orElse(null); final FessConfig fessConfig = ComponentUtil.getFessConfig(); final boolean isApiRequest =Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 15.1K bytes - Viewed (0)