- Sort Score
- Result 10 results
- Languages All
Results 211 - 220 of 1,350 for Systems (0.04 sec)
-
samples/guide/src/main/java/okhttp3/recipes/PerCallSettings.java
.readTimeout(500, TimeUnit.MILLISECONDS) .build(); try (Response response = client1.newCall(request).execute()) { System.out.println("Response 1 succeeded: " + response); } catch (IOException e) { System.out.println("Response 1 failed: " + e); } // Copy to customize OkHttp for this request. OkHttpClient client2 = client.newBuilder()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun May 22 01:29:42 UTC 2016 - 1.9K bytes - Viewed (0) -
guava-testlib/src/com/google/common/testing/GcFinalization.java
if (future.isDone()) { return; } long timeoutSeconds = timeoutSeconds(); long deadline = System.nanoTime() + SECONDS.toNanos(timeoutSeconds); do { System.runFinalization(); if (future.isDone()) { return; } System.gc(); try { future.get(1L, SECONDS); return; } catch (CancellationException | ExecutionException ok) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 11.5K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/samrTest.java
verify(mockNdrBuffer).enc_ndr_string("system"); verify(mockNdrBuffer).enc_ndr_long(123); } @Test @DisplayName("Should encode input with null system name") void testEncodeInNullSystemName() throws NdrException { // Given: Connect2 message with null system name
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 33.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/ExecJobTest.java
System.clearProperty(Constants.FESS_CONFIG_PREFIX + "test2"); System.clearProperty("non.fess.property"); } // Test addFessSystemProperties method public void test_addFessSystemProperties() { List<String> cmdList = new ArrayList<>(); // Set some test properties System.setProperty(Constants.SYSTEM_PROP_PREFIX + "prop1", "value1");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 24.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/unit/TestSystemProperties.java
if (is != null) { Properties props = new Properties(); props.load(is); props.forEach((key, value) -> setProperty(String.valueOf(key), String.valueOf(value))); logger.debug("Loaded test system properties"); } else {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 2.5K bytes - Viewed (0) -
src/test/java/org/codelibs/core/log/LoggerTest.java
long start = System.currentTimeMillis(); for (int i = 0; i < num; i++) { System.out.println("test" + i); } final long sysout = System.currentTimeMillis() - start; start = System.currentTimeMillis(); for (int i = 0; i < num; i++) { logger.fatal("test" + i); } final long logger = System.currentTimeMillis() - start;
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 3.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileRenameInformation2Test.java
assertEquals(fileName.getBytes(StandardCharsets.UTF_16LE).length, nameLength); // Verify file name byte[] nameBytes = new byte[nameLength]; System.arraycopy(buffer, 20, nameBytes, 0, nameLength); String decodedName = new String(nameBytes, StandardCharsets.UTF_16LE); assertEquals(fileName, decodedName); // Verify bytes written
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.3K bytes - Viewed (0) -
docs/smb3-features/04-directory-leasing-design.md
// First listing should hit the server long start1 = System.currentTimeMillis(); SmbFile[] files1 = dir.listFiles(); long time1 = System.currentTimeMillis() - start1; // Second listing should use cache (much faster) long start2 = System.currentTimeMillis(); SmbFile[] files2 = dir.listFiles(); long time2 = System.currentTimeMillis() - start2;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 36.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java
assertNotNull(thumbnailManager.thumbnailTaskQueue); } // Test initialization with system property public void test_init_withSystemProperty() { File customDir = new File(tempDir, "custom"); System.setProperty(Constants.FESS_THUMBNAIL_PATH, customDir.getAbsolutePath()); try { ThumbnailManager manager = new ThumbnailManager() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.7K bytes - Viewed (0) -
docs/de/docs/alternatives.md
Es erreicht etwas Ähnliches wie Flask-apispec. Es verfügt über ein integriertes Dependency Injection System, welches von Angular 2 inspiriert ist. Erfordert ein Vorab-Registrieren der „Injectables“ (wie alle anderen Dependency Injection Systeme, welche ich kenne), sodass der Code ausschweifender wird und es mehr Codeverdoppelung gibt.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 16:39:20 UTC 2024 - 26.7K bytes - Viewed (0)