- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 318 for 0500 (0.03 seconds)
-
okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerTest.kt
assertThat(Adapters.OBJECT_IDENTIFIER.toDer(SHA256_WITH_RSA_ENCRYPTION)).isEqualTo(bytes) } @Test fun `null value`() { val bytes = "0500".decodeHex() assertThat(Adapters.NULL.fromDer(bytes)).isNull() assertThat(Adapters.NULL.toDer(null)).isEqualTo(bytes) } @Test fun `sequence algorithm`() {
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Wed Mar 19 19:25:20 GMT 2025 - 31.7K bytes - Click Count (0) -
cmd/metrics-v2_test.go
}) if le := capitalPutObjects[0].VariableLabels["le"]; le != "0.500" { t.Errorf("Expected le='0.050' api=PutObject metrics but got '%v'", le) } if value := capitalPutObjects[0].Value; value != 1 { t.Errorf("Expected le='0.050' api=PutObject value to be 1 but got '%v'", value) } if le := capitalPutObjects[1].VariableLabels["le"]; le != "5.000" { t.Errorf("Expected le='5.000' api=PutObject metrics but got '%v'", le) }
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Mar 30 00:56:02 GMT 2025 - 6.8K bytes - Click Count (0) -
.github/workflows/translate.yml
name: Translate on: schedule: - cron: "0 5 1,15 * *" # Run at 05:00 on the 1st and 15th of every month workflow_dispatch: inputs: debug_enabled: description: Run with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate) required: false default: "false" command: description: Command to run type: choice options:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Mar 18 15:36:56 GMT 2026 - 4K bytes - Click Count (0) -
.teamcity/scripts/CheckWrapper.java
} private static String summarize(String s) { if (s == null) return "null"; String t = s.replace("\n", "\\n"); if (t.length() > 500) return t.substring(0, 500) + "...(truncated)"; return t; } } private static ExecResult exec(String... cmd) throws IOException, InterruptedException, ExecutionException {Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Jan 20 03:53:25 GMT 2026 - 6.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java
assertEquals(128, crawlingInfoHelper.generateId(value.substring(0, 500)).length()); assertEquals(128, crawlingInfoHelper.generateId(value.substring(0, 510)).length()); assertEquals(128, crawlingInfoHelper.generateId(value.substring(0, 520)).length()); assertEquals(128, crawlingInfoHelper.generateId(value.toString()).length()); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 12 01:46:45 GMT 2026 - 28.7K bytes - Click Count (0) -
compat/maven-embedder/src/test/java/org/apache/maven/cli/transfer/FileSizeFormatTest.java
assertEquals("16/50 kB", format.formatProgress(16000L, 50000L)); assertEquals("50 kB", format.formatProgress(50000L, 50000L)); assertEquals("0/5.0 MB", format.formatProgress(0L, 5000000L)); assertEquals("0.5/5.0 MB", format.formatProgress(500000L, 5000000L)); assertEquals("1.0/5.0 MB", format.formatProgress(1000000L, 5000000L));
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Mar 21 04:56:21 GMT 2025 - 10.5K bytes - Click Count (0) -
.teamcity/scripts/FindCommits.java
} private static String summarize(String s) { if (s == null) return "null"; String t = s.replace("\n", "\\n"); if (t.length() > 500) return t.substring(0, 500) + "...(truncated)"; return t; } } private static ExecResult exec(String... cmd) throws IOException, InterruptedException { Objects.requireNonNull(cmd, "cmd");Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Jan 20 03:53:25 GMT 2026 - 5.5K bytes - Click Count (0) -
.teamcity/scripts/CheckBadMerge.java
} private static String summarize(String s) { if (s == null) return "null"; String t = s.replace("\n", "\\n"); if (t.length() > 500) { return t.substring(0, 500) + "...(truncated)"; } return t; } } private static ExecResult exec(String[] command) throws IOException, InterruptedException, ExecutionException {Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Mar 30 16:25:09 GMT 2026 - 9K bytes - Click Count (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/transfer/FileSizeFormatTest.java
Arguments.of(16000L, 50000L, "16/50 kB"), Arguments.of(50000L, 50000L, "50 kB"), // Megabytes tests Arguments.of(0L, 5000000L, "0/5.0 MB"), Arguments.of(500000L, 5000000L, "0.5/5.0 MB"), Arguments.of(1000000L, 5000000L, "1.0/5.0 MB"), Arguments.of(5000000L, 5000000L, "5.0 MB"), Arguments.of(5000000L, 15000000L, "5.0/15 MB"),
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Mar 21 04:56:21 GMT 2025 - 14.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/QueryResponseListTest.java
doc.put("title", "Test"); documentList1.add(doc); documentList2.add(doc); QueryResponseList qrList1 = new QueryResponseList(documentList1, 0, 10, 0); QueryResponseList qrList2 = new QueryResponseList(documentList2, 0, 10, 0); assertTrue(qrList1.equals(qrList2)); assertEquals(qrList1.hashCode(), qrList2.hashCode()); // Test with different content
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 40.1K bytes - Click Count (0)