Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for withExposedPorts (0.05 sec)

  1. container-tests/src/test/java/okhttp3/containers/SocksProxyTest.kt

          .withNetwork(network)
          .withNetworkAliases("mockserver")
    
      @Container
      val socks5Proxy =
        GenericContainer(SOCKS5_PROXY)
          .withNetwork(network)
          .withExposedPorts(1080)
    
      @Test
      fun testLocal() {
        MockServerClient(mockServer.host, mockServer.serverPort).use { mockServerClient ->
          mockServerClient
            .`when`(
              request()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb/SmbClientTest.java

            MountableFile mountableTestuser2 = MountableFile.forHostPath(testuser2Dir.toAbsolutePath().toString());
    
            sambaServer = new GenericContainer<>(IMAGE_NAME).withExposedPorts(139, 445)//
                    .withCopyFileToContainer(mountablePublic, "/share")//
                    .withCopyFileToContainer(mountableUsers, "/srv")
                    .withCopyFileToContainer(mountableTestuser1, "/testuser1")//
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Sep 06 04:15:37 UTC 2025
    - 13.7K bytes
    - Viewed (0)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/storage/StorageClientTest.java

            minioServer = new GenericContainer<>(IMAGE_NAME)//
                    .withEnv("MINIO_ACCESS_KEY", ACCESS_KEY)//
                    .withEnv("MINIO_SECRET_KEY", SECRET_KEY)//
                    .withExposedPorts(port)//
                    .withCommand("server /data")//
                    .waitingFor(new HttpWaitStrategy()//
                            .forPath("/minio/health/ready")//
                            .forPort(port)//
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Thu Aug 07 02:55:08 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  4. src/test/java/jcifs/smb/SmbFileIntegrationTest.java

                    // Configure container with simplified SMB configuration
                    sambaContainer = new GenericContainer<>(IMAGE_NAME).withExposedPorts(NETBIOS_PORT, SMB_PORT)
                            .withCopyFileToContainer(MountableFile.forHostPath(tempDir.resolve("public")), "/share/public")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 56K bytes
    - Viewed (0)
Back to top