- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 16 for 0_15 (0.04 seconds)
-
src/test/java/org/codelibs/fess/util/JvmUtilTest.java
assertEquals(4, JvmUtil.getJavaVersion()); System.setProperty("java.version", "1.5.0_15"); assertEquals(5, JvmUtil.getJavaVersion()); System.setProperty("java.version", "1.6.0_34"); assertEquals(6, JvmUtil.getJavaVersion()); System.setProperty("java.version", "1.7.0_25"); assertEquals(7, JvmUtil.getJavaVersion()); System.setProperty("java.version", "1.8.0_171");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 10.6K bytes - Click Count (0) -
lib/fips140/v1.26.0.zip
0x7, 0xc2, 0xa4, 0xe9, 0x94, 0x1e, 0x4a, 0xf2, 0x61, 0xae, 0x63, 0xf1, 0x76, 0x15, 0x5c, 0x99, 0x15, 0x3, 0x47, 0x15, 0x57, 0x74, 0x3d, 0xff, 0xf8, 0x2a, 0x19, 0x9b, 0xe1, 0x2c, 0x7, 0xea, 0xb3, 0x7e, 0x85, 0x99, 0x9, 0x9b, 0x88, 0x62, 0x1b, 0xb8, 0xc5, 0x9, 0xa3, 0xea, 0xd6, 0x22, 0xec, 0xdf, 0x19, 0x34, 0xc3, 0xcf, 0xe2, 0xa0, 0xb5, 0xf9, 0xa0, 0xb3, 0x65, 0xdb, 0x9c, 0xb6, 0xbf, 0x70, 0x95, 0x4d, 0x52, 0x3f, 0x56, 0x15, 0xec, 0x75, 0x30, 0x2f, 0x80, 0xe0, 0x37, 0x97, 0xed, 0xe5, 0xe0, 0x53, 0xc7,...
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Thu Jan 08 17:58:32 GMT 2026 - 660.3K bytes - Click Count (0) -
guava-tests/test/com/google/common/primitives/IntsTest.java
assertThat(Ints.toByteArray(0x12131415)).isEqualTo(new byte[] {0x12, 0x13, 0x14, 0x15}); assertThat(Ints.toByteArray(0xFFEEDDCC)) .isEqualTo(new byte[] {(byte) 0xFF, (byte) 0xEE, (byte) 0xDD, (byte) 0xCC}); } public void testFromByteArray() { assertThat(Ints.fromByteArray(new byte[] {0x12, 0x13, 0x14, 0x15, 0x33})).isEqualTo(0x12131415);
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Mar 08 01:43:32 GMT 2026 - 29.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/validation/CronExpressionValidatorTest.java
final ConstraintValidatorContext context = null; // Test basic patterns that should be valid String[] potentiallyValidCrons = { "0 0 * * * ?", // Every hour "0 */15 * * * ?", // Every 15 minutes "0 0 12 * * ?", // Daily at noon "0 15 10 ? * MON-FRI" // Weekdays at 10:15 }; // Test each pattern and see what actually worksCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 4.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/entity/SearchRenderDataTest.java
} searchRenderData.setDocumentItems(documents); searchRenderData.setSearchQuery("complex search query"); searchRenderData.setQueryTime(150L); searchRenderData.setExecTime("0.15 sec"); searchRenderData.setRequestedTime(System.currentTimeMillis()); searchRenderData.setQueryId("complex-query-id"); searchRenderData.setAppendHighlightParams("&hl=true&hl.fl=title,content");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 23.6K bytes - Click Count (0) -
guava-tests/test/com/google/common/primitives/LongsTest.java
.that(Arrays.equals(expected, actual)) .isTrue(); } public void testToByteArray() { assertByteArrayEquals( new byte[] {0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19}, Longs.toByteArray(0x1213141516171819L)); assertByteArrayEquals( new byte[] { (byte) 0xFF, (byte) 0xEE, (byte) 0xDD, (byte) 0xCC,
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Mar 17 16:45:58 GMT 2026 - 28.8K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/primitives/IntsTest.java
assertThat(Ints.toByteArray(0x12131415)).isEqualTo(new byte[] {0x12, 0x13, 0x14, 0x15}); assertThat(Ints.toByteArray(0xFFEEDDCC)) .isEqualTo(new byte[] {(byte) 0xFF, (byte) 0xEE, (byte) 0xDD, (byte) 0xCC}); } public void testFromByteArray() { assertThat(Ints.fromByteArray(new byte[] {0x12, 0x13, 0x14, 0x15, 0x33})).isEqualTo(0x12131415);
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Mar 08 01:43:32 GMT 2026 - 29.4K bytes - Click Count (0) -
android/guava/src/com/google/common/primitives/Ints.java
* {@code ByteBuffer.allocate(4).putInt(value).array()}. For example, the input value {@code * 0x12131415} would yield the byte array {@code {0x12, 0x13, 0x14, 0x15}}. * * <p>If you need to convert and concatenate several values (possibly even of different types), * use a shared {@link java.nio.ByteBuffer} instance, or use {@linkCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Mar 17 16:45:58 GMT 2026 - 31.3K bytes - Click Count (0) -
okhttp/src/jvmTest/kotlin/okhttp3/UrlComponentEncodingTester.kt
encodings[0x12] = encoding // Device Control 2 encodings[0x13] = encoding // Device Control 3 (oft. XOFF) encodings[0x14] = encoding // Device Control 4 encodings[0x15] = encoding // Negative Acknowledgment encodings[0x16] = encoding // Synchronous idle encodings[0x17] = encoding // End of Transmission Block encodings[0x18] = encoding // Cancel
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Jan 27 09:00:39 GMT 2026 - 12.3K bytes - Click Count (0) -
gradle/libs.versions.toml
clikt = "5.1.0" extra-java-module-info = "1.14" codehaus-signature-java18 = "1.0" coroutines = "1.10.2" de-mannodermaus-junit5 = "2.0.1" dokka = "2.2.0" eclipse-osgi = "3.24.100" graalvm = "25.0.2" graalvm-plugin = "0.11.5" guava = "33.5.0-jre" hamcrest-library = "3.0" http-client5 = "5.6" jetty-client = "9.4.58.v20250814" jlink = "0.7" jetbrains-annotations = "26.1.0" jnr-unixsocket = "0.38.25" jsoup = "1.22.1"
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Mar 31 22:01:48 GMT 2026 - 12K bytes - Click Count (0)