- Sort Score
- Result 10 results
- Languages All
Results 1711 - 1720 of 2,062 for watch (0.03 sec)
-
src/main/java/org/codelibs/fess/crawler/serializer/DataSerializer.java
kryo.writeClassAndObject(output, obj); output.flush(); return baos.toByteArray(); } catch (final IOException e) { throw new IORuntimeException(e); } } /** * Deserializes a byte array using Kryo deserialization. * <p>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/IoTestCase.java
} if (testFileUrl.getProtocol().equals("file")) { try { File testFile = new File(testFileUrl.toURI()); testDir = testFile.getParentFile(); // the testdata directory } catch (Exception ignore) { // probably URISyntaxException or IllegalArgumentException // fall back to copying URLs to files in the testDir == null block below } } if (testDir == null) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 5.6K bytes - Viewed (0) -
src/main/java/jcifs/pac/Pac.java
default: if (log.isDebugEnabled()) { log.debug("Found unhandled PAC buffer " + bufferType); } } } } catch (IOException e) { throw new PACDecodingException("Malformed PAC", e); } if (this.serverSignature == null || this.kdcSignature == null || this.logonInfo == null) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.3K bytes - Viewed (0) -
src/test/java/jcifs/SmbResourceLocatorTest.java
@Override public URL getURL() { try { // Create URL with custom protocol handler for SMB return new URL(null, urlStr, new jcifs.smb.Handler()); } catch (Exception e) { // Return null if URL creation fails return null; } } @Override public Address getAddress() { return null;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsCrawlingInfoBhv.java
result.setName(DfTypeUtil.toString(source.get("name"))); result.setSessionId(DfTypeUtil.toString(source.get("sessionId"))); return updateEntity(source, result); } catch (InstantiationException | IllegalAccessException e) { final String msg = "Cannot create a new instance: " + entityType.getName(); throw new IllegalBehaviorStateException(msg, e); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsElevateWordBhv.java
result.setUpdatedBy(DfTypeUtil.toString(source.get("updatedBy"))); result.setUpdatedTime(DfTypeUtil.toLong(source.get("updatedTime"))); return updateEntity(source, result); } catch (InstantiationException | IllegalAccessException e) { final String msg = "Cannot create a new instance: " + entityType.getName(); throw new IllegalBehaviorStateException(msg, e); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsPathMappingBhv.java
result.setUpdatedTime(DfTypeUtil.toLong(source.get("updatedTime"))); result.setUserAgent(DfTypeUtil.toString(source.get("userAgent"))); return updateEntity(source, result); } catch (InstantiationException | IllegalAccessException e) { final String msg = "Cannot create a new instance: " + entityType.getName(); throw new IllegalBehaviorStateException(msg, e); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/ExtractorFactory.java
for (final Extractor extractor : extractors) { try { return extractor.getText(in, params); } catch (final UnsupportedExtractException e) { if (logger.isDebugEnabled()) { logger.debug("{} does not support this data. {}", extractor.getClass().getName(), e.getMessage());
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 7.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/FessLoginAssist.java
} } /** * Finds a login user by username and encrypted password. * * @param username the username to search for * @param cipheredPassword the encrypted password to match * @return an optional entity containing the found user, or empty if not found */ protected OptionalEntity<FessUser> doFindLoginUser(final String username, final String cipheredPassword) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/auth/AuthenticationManagerTest.java
User user = createTestUser("testuser"); try { authenticationManager.insert(user); fail("Should throw NullPointerException when processing null chain"); } catch (NullPointerException e) { // Expected behavior when null chain is processed assertTrue(true); } } // Test chains order preservation
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 14K bytes - Viewed (0)