- Sort Score
- Num 10 results
- Language All
Results 41 - 50 of 253 for Berner (0.05 seconds)
-
okhttp/src/jvmTest/kotlin/okhttp3/internal/ws/RealWebSocketTest.kt
server.webSocket!!.tearDown() client.webSocket!!.tearDown() taskFaker.close() } @Test fun close() { client.webSocket!!.close(1000, "Hello!") // This will trigger a close response. assertThat(server.processNextFrame()).isFalse() server.listener.assertClosing(1000, "Hello!") server.webSocket!!.finishReader() server.webSocket!!.close(1000, "Goodbye!")
Created: 2026-04-03 11:42 - Last Modified: 2025-07-31 04:18 - 18.7K bytes - Click Count (0) -
src/test/java/jcifs/smb/SmbResourceLocatorImplTest.java
void testIsRootAndShare() { assertTrue(locator("smb://server/").isRoot()); assertFalse(locator("smb://server/share/").isRoot()); assertTrue(locator("smb://server/").isRootOrShare()); assertTrue(locator("smb://server/share/").isRootOrShare()); assertFalse(locator("smb://server/share/path").isRootOrShare()); } @Test
Created: 2026-04-05 00:10 - Last Modified: 2025-08-14 05:31 - 17.6K bytes - Click Count (0) -
docs/config/README.md
```sh export MINIO_ROOT_USER=minio export MINIO_ROOT_PASSWORD=minio13 minio server /data ``` #### Site ``` KEY: site label the server and its location ARGS: name (string) name for the site e.g. "cal-rack0" region (string) name of the location of the server e.g. "us-west-1" comment (sentence) optionally add a comment to this setting ``` or environment variables
Created: 2026-04-05 19:28 - Last Modified: 2025-08-12 18:20 - 18.1K bytes - Click Count (1) -
docs/de/docs/features.md
Mit **FastAPI** bekommen Sie alle Funktionen von **Pydantic** (da FastAPI für die gesamte Datenverarbeitung Pydantic nutzt): * **Kein Kopfzerbrechen**: * Keine neue Schemadefinition-Mikrosprache zu lernen. * Wenn Sie Pythons Typen kennen, wissen Sie, wie man Pydantic verwendet.Created: 2026-04-05 07:19 - Last Modified: 2026-03-19 17:58 - 10.3K bytes - Click Count (0) -
src/test/java/jcifs/util/PathValidatorTest.java
// Note: Due to normalization, all multiple backslashes are reduced to single // so \\server\share becomes \server\share String path = "\\\\server\\share\\folder"; String normalized = validator.validatePath(path); assertEquals("\\server\\share\\folder", normalized); } @Test public void testUncPathNotAllowed() throws Exception {Created: 2026-04-05 00:10 - Last Modified: 2025-08-30 05:58 - 14.6K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/net/NetServerEnum2ResponseTest.java
assertEquals(0L, server.length()); } @Test @DisplayName("Test ServerInfo1 toString") void testServerInfo1ToString() throws Exception { NetServerEnum2Response.ServerInfo1 server = response.new ServerInfo1(); server.name = "SERVER01"; server.versionMajor = 6; server.versionMinor = 1; server.type = 0x00000801;
Created: 2026-04-05 00:10 - Last Modified: 2025-08-14 05:31 - 25.4K bytes - Click Count (0) -
cmd/metrics.go
totalDisks := offlineDisks.Merge(onlineDisks) // Report total capacity ch <- prometheus.MustNewConstMetric( prometheus.NewDesc( prometheus.BuildFQName(minioNamespace, "capacity_raw", "total"), "Total capacity online in current MinIO server instance", nil, nil), prometheus.GaugeValue, float64(GetTotalCapacity(server.Disks)), )
Created: 2026-04-05 19:28 - Last Modified: 2025-10-24 04:06 - 16.7K bytes - Click Count (0) -
fess-crawler-lasta/src/test/java/org/codelibs/fess/crawler/CrawlerTest.java
dataService.delete(sessionId); } finally { server.stop(); } } @Test public void test_execute_xmlSitemaps() throws Exception { final CrawlerWebServer server = new CrawlerWebServer(0); server.start(); server.updateSitemapsPort(); final String url = "http://localhost:" + server.getPort() + "/"; try { final int maxCount = 50;
Created: 2026-04-12 03:50 - Last Modified: 2026-01-15 01:11 - 13.1K bytes - Click Count (0) -
okhttp/src/jvmTest/kotlin/okhttp3/CookiesTest.kt
.build() get(urlWithIpAddress(server, "/")) val request1 = server.takeRequest() assertThat(request1.headers["Cookie"]).isNull() get(urlWithIpAddress(server, "/")) val request2 = server.takeRequest() assertThat(request2.headers["Cookie"]).isEqualTo("a=android") } private fun urlWithIpAddress( server: MockWebServer, path: String, ): HttpUrl = server
Created: 2026-04-03 11:42 - Last Modified: 2026-03-19 07:46 - 14.5K bytes - Click Count (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/tls/ClientAuthTest.kt
val socketFactory = buildServerSslSocketFactory() server.useHttps(socketFactory) server.requestClientAuth() server.enqueue( MockResponse .Builder() .body("abc") .build(), ) val call = client.newCall(Request.Builder().url(server.url("/")).build()) val response = call.execute() assertThat(response.handshake!!.peerPrincipal)
Created: 2026-04-03 11:42 - Last Modified: 2026-01-27 09:00 - 13K bytes - Click Count (0)