- Sort Score
- Result 10 results
- Languages All
Results 351 - 360 of 444 for largest (2.72 sec)
-
src/main/java/org/codelibs/fess/util/DocumentUtil.java
* Supports conversion to String, Date, Long, Integer, Double, Float, and Boolean types. * * @param <T> the type to convert the value to * @param value the value to convert * @param clazz the target class type * @return the converted value or null if conversion is not supported */ @SuppressWarnings("unchecked") private static <T> T convertObj(final Object value, final Class<T> clazz) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/TransCallNamedPipeResponseTest.java
@ValueSource(ints = { 1, 10, 100, 500, 1024 }) void testReadDataWireFormatWithVariousSizes(int dataSize) throws SMBProtocolDecodingException { if (dataSize > outputBuffer.length) { return; // Skip sizes larger than buffer } byte[] sourceData = new byte[dataSize]; for (int i = 0; i < dataSize; i++) { sourceData[i] = (byte) (i % 256); }Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/RobotsTxtHelper.java
* <li>End-of-path ($) matching - matches the end of URL path</li> * <li>Crawl-delay directive</li> * <li>Sitemap directive</li> * <li>Comment support (#)</li> * <li>Priority-based matching (longest match wins, Allow beats Disallow at equal length)</li> * </ul> * * <p>References:</p> * <ul> * <li><a href="https://datatracker.ietf.org/doc/html/rfc9309">RFC 9309 - Robots Exclusion Protocol</a></li>
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Fri Nov 14 12:52:01 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java
/** The key of the message: Start Time */ public static final String LABELS_START_TIME = "{labels.startTime}"; /** The key of the message: Target */ public static final String LABELS_TARGET = "{labels.target}"; /** The key of the message: Token */ public static final String LABELS_TOKEN = "{labels.token}"; /** The key of the message: Synonym File */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 156.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/dfs/DfsReferralDataImplTest.java
long expiration = System.currentTimeMillis() + 60000; referralData = DfsReferralDataImpl.fromReferral(mockReferral, "\\\\server\\share\\folder", expiration, 20); referralData.setLink("\\\\link\\target"); String result = referralData.toString(); assertTrue(result.contains("DfsReferralData[")); assertTrue(result.contains("pathConsumed=20"));Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 30.6K bytes - Viewed (0) -
src/test/java/jcifs/ntlmssp/Type1MessageTest.java
// Then assertTrue((type1.getFlags() & NtlmFlags.NTLMSSP_NEGOTIATE_EXTENDED_SESSIONSECURITY) != 0); } @Test @DisplayName("Should handle target info flags") void testTargetInfoFlags() { // Given int targetInfoFlags = NtlmFlags.NTLMSSP_NEGOTIATE_TARGET_INFO; // WhenRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.1K bytes - Viewed (0) -
README.md
# Apply license headers to source files mvn license:format # Build JAR with all verifications mvn clean package # Generate test coverage report mvn verify # Coverage report available at: target/site/jacoco/index.html ``` ### Project Structure ``` corelib/ ├── src/main/java/org/codelibs/core/ │ ├── beans/ # Bean manipulation and introspection
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sun Aug 31 02:56:02 UTC 2025 - 12.7K bytes - Viewed (0) -
src/test/java/org/codelibs/curl/CurlRequestTest.java
assertEquals(-1, request.threshold()); } @Test public void testThresholdWithLargeValue() { CurlRequest request = new CurlRequest(Method.GET, "https://example.com"); // Large threshold value int largeThreshold = Integer.MAX_VALUE; request.threshold(largeThreshold); assertEquals(largeThreshold, request.threshold()); } @TestRegistered: Sat Dec 20 09:13:53 UTC 2025 - Last Modified: Mon Nov 24 03:10:07 UTC 2025 - 20.5K bytes - Viewed (0) -
docs/smb3-features/03-multi-channel-design.md
private ChannelInfo selectAdaptive(SMBMessage message, Collection<ChannelInfo> channels) { // Adaptive strategy based on message type and size if (isLargeTransfer(message)) { // For large transfers, prefer high-bandwidth channels return channels.stream() .max(Comparator.comparingInt(c -> c.getRemoteInterface().getLinkSpeed())) .orElseThrow(); }
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 39.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/entity/ElevateWordTest.java
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 16K bytes - Viewed (0)