- Sort Score
- Result 10 results
- Languages All
Results 321 - 330 of 944 for Servern (0.86 sec)
-
src/test/java/jcifs/SmbResourceLocatorTest.java
class HappyPath { @Test void testBasicProperties() throws Exception { String url = "smb://server/share/path/file.txt"; DummySmbResourceLocator loc = new DummySmbResourceLocator(url); assertEquals("file.txt", loc.getName()); assertEquals("smb://server/share/path/", loc.getParent()); assertEquals(url, loc.getPath());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8K bytes - Viewed (0) -
mockwebserver/src/main/kotlin/mockwebserver3/MockWebServer.kt
import okio.Buffer import okio.BufferedSink import okio.BufferedSource import okio.ByteString import okio.Sink import okio.Timeout import okio.buffer /** * A scriptable web server. Callers supply canned responses and the server replays them upon request * in sequence. */ public class MockWebServer : Closeable { private val taskRunnerBackend = TaskRunner.RealBackend(
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 02 20:36:00 UTC 2025 - 40.3K bytes - Viewed (0) -
docs/docker/README.md
-v /mnt/data:/data \ quay.io/minio/minio server /data --console-address ":9001" ``` #### Windows (custom access and secret keys) ```powershell docker run \ -p 9000:9000 \ -p 9001:9001 \ --name minio1 \ -e "MINIO_ROOT_USER=AKIAIOSFODNN7EXAMPLE" \ -e "MINIO_ROOT_PASSWORD=wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY" \ -v D:\data:/data \ quay.io/minio/minio server /data --console-address ":9001" ```
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 8.2K bytes - Viewed (0) -
src/main/java/jcifs/util/PathValidator.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 14.5K bytes - Viewed (0) -
src/test/java/jcifs/SIDTest.java
SID sid = new SID(adminSidString); String server = "myserver"; sid.resolve(server, mockContext); ArgumentCaptor<jcifs.SID[]> sidArrayCaptor = ArgumentCaptor.forClass(jcifs.SID[].class); verify(mockResolver).resolveSids(eq(mockContext), eq(server), sidArrayCaptor.capture()); assertEquals(1, sidArrayCaptor.getValue().length);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbSessionImpl.java
log.info("Initialized witness support with server: {}", witnessServer); } } catch (Exception e) { log.warn("Failed to initialize witness support", e); } } /** * Discover witness service for the current server * * @return witness server address or null if not found * @throws IOException if discovery fails
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 68.9K bytes - Viewed (0) -
docs/sts/wso2.md
# WSO2 Quickstart Guide [](https://slack.min.io) WSO2 is an Identity Server open source and is released under Apache Software License Version 2.0, this document covers configuring WSO2 to be used as an identity provider for MinIO server STS API. ## Get started ### 1. Prerequisites - JAVA 1.8 and above installed already and JAVA_HOME points to JAVA 1.8 installation.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 8.7K bytes - Viewed (0) -
docs/multi-user/README.md
# MinIO Multi-user Quickstart Guide [](https://slack.min.io) MinIO supports multiple long term users in addition to default user created during server startup. New users can be added after server starts up, and server can be configured to deny or allow access to buckets and resources to each of these users. This document explains how to add/remove users and modify their access rights. ## Get started
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 8.2K bytes - Viewed (0) -
src/main/java/jcifs/SidResolver.java
/** * Gets the domain SID for the specified server. * * @param authorityServerName the server name * @param tc the CIFS context to use * @return the server's SID * @throws CIFSException if there is an error retrieving the server SID */ SID getServerSid(CIFSContext tc, String authorityServerName) throws CIFSException; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.2K bytes - Viewed (0) -
docs/smb3-features/02-persistent-handles-design.md
assertNotNull(handle); assertEquals(HandleType.PERSISTENT, handle.type); // Simulate server reboot // ... server reboot logic ... // Reconnect should succeed SmbFile file2 = new SmbFile("smb://server/share/persistent.txt", context); assertTrue(file2.exists()); // Should reconnect with persistent handle } ```
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 31.6K bytes - Viewed (0)