- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 76 for 6000051 (0.03 sec)
-
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessTimeResourceProviderTest.java
} } // Test getTimeAdjustTimeMillisAsLong values public void test_getTimeAdjustTimeMillisAsLong_values() { Long[] testValues = { 0L, 1L, -1L, 1000L, -1000L, 60000L, -60000L, 3600000L, -3600000L, Long.MAX_VALUE, Long.MIN_VALUE }; for (Long value : testValues) { FessConfig testConfig = new FessConfig.SimpleImpl() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.4K bytes - Viewed (0) -
compat/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/DefaultArtifactVersionTest.java
// version schemes not really supported: fully transformed as qualifier checkVersionParsing("1.0.1b", 0, 0, 0, 0, "1.0.1b"); checkVersionParsing("1.0M2", 0, 0, 0, 0, "1.0M2"); checkVersionParsing("1.0RC2", 0, 0, 0, 0, "1.0RC2"); checkVersionParsing("1.1.2.beta1", 1, 1, 2, 0, "beta1"); checkVersionParsing("1.7.3.beta1", 1, 7, 3, 0, "beta1");
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 9.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lease/LeaseManagerTest.java
Smb2LeaseKey key = leaseManager.requestLease(path, requestedState); assertNotNull(leaseManager.getLease(key)); int cleaned = leaseManager.cleanupExpiredLeases(60000); // 1 minute expiration assertEquals(0, cleaned); assertNotNull(leaseManager.getLease(key)); } @Test @DisplayName("Should detect lease capabilities")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 00:16:17 UTC 2025 - 13.2K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbComQueryInformationResponseTest.java
/** * Unit tests for the SmbComQueryInformationResponse class. */ public class SmbComQueryInformationResponseTest { private SmbComQueryInformationResponse response; private final long serverTimeZoneOffset = 3600000; // 1 hour in milliseconds @BeforeEach public void setUp() { response = new SmbComQueryInformationResponse(serverTimeZoneOffset); } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.5K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/base/WhitespaceMatcherBenchmark.java
result[i] = allMatchingChars.charAt(random.nextInt(allMatchingChars.length())); } // Replace some of chars by non-matching. int remaining = (int) ((100 - percentMatching) * result.length / 100.0 + 0.5); while (remaining > 0) { char c = (char) random.nextInt(); if (bitSet.get(c)) { int pos = random.nextInt(result.length); if (bitSet.get(result[pos])) { result[pos] = c;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 3.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/NtTransQuerySecurityDescResponseTest.java
// Owner SID at offset 20 buffer.position(20); buffer.put((byte) 0x01); // Revision buffer.put((byte) 0x01); // SubAuthorityCount buffer.put(new byte[] { 0, 0, 0, 0, 0, 1 }); // IdentifierAuthority buffer.putInt(0); // SubAuthority // Group SID at offset 40 buffer.position(40); buffer.put((byte) 0x01); // Revision
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.8K bytes - Viewed (0) -
src/main/resources/fess_config.properties
-XX:InitiatingHeapOccupancyPercent=45\n\ -XX:G1HeapRegionSize=1m\n\ -XX:MaxGCPauseMillis=60000\n\ -XX:G1NewSizePercent=5\n\ -XX:G1MaxNewSizePercent=5\n\ -Djcifs.smb.client.responseTimeout=30000\n\ -Djcifs.smb.client.soTimeout=35000\n\ -Djcifs.smb.client.connTimeout=60000\n\ -Djcifs.smb.client.sessionTimeout=60000\n\ -Djcifs.smb1.smb.client.connTimeout=60000\n\ -Djcifs.smb1.smb.client.soTimeout=35000\n\
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 14:45:37 UTC 2025 - 54.7K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/HttpUrlTest.kt
) assertInvalid( "http://[0:0:0:0:0:1:256.255.255.255]/", "Invalid URL host: \"[0:0:0:0:0:1:256.255.255.255]\"", ) assertInvalid( "http://[0:0:0:0:0:1:ff.255.255.255]/", "Invalid URL host: \"[0:0:0:0:0:1:ff.255.255.255]\"", ) assertInvalid( "http://[0:0:0:0:0:0:1:255.255.255.255]/", "Invalid URL host: \"[0:0:0:0:0:0:1:255.255.255.255]\"", ) assertInvalid(
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Aug 04 07:38:48 UTC 2025 - 69.9K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacDataInputStream.java
readFully(bytes); final byte[] sidBytes = new byte[8 + bytes.length]; sidBytes[0] = 1; sidBytes[1] = (byte) (bytes.length / 4); System.arraycopy(new byte[] { 0, 0, 0, 0, 0, 5 }, 0, sidBytes, 2, 6); System.arraycopy(bytes, 0, sidBytes, 8, bytes.length); return new SID(sidBytes, 0); } /** * Reads a full Security Identifier (SID) structure.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/IntervalControlHelperTest.java
public void test_noRule() { assertEquals(0, intervalControlHelper.getDelay()); } public void test_0000() throws ParseException { final IntervalControlHelper intervalControlHelper = createHelper("00:00", 1); intervalControlHelper.addIntervalRule("01:30", "15:15", "*", 1000); assertEquals(0, intervalControlHelper.getDelay()); intervalControlHelper.addIntervalRule("16:30", "0:15", "*", 2000);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 13.1K bytes - Viewed (0)