- Sort Score
- Result 10 results
- Languages All
Results 341 - 350 of 1,261 for configurations (0.06 sec)
-
docs/sts/web-identity.md
## Configuring OpenID Identity Provider on MinIO Configuration can be performed via MinIO's standard configuration API (i.e. using `mc admin config set/get` commands) or equivalently via environment variables. For brevity we show only environment variables here: ``` $ mc admin config set myminio identity_openid --env
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 18.9K bytes - Viewed (0) -
src/test/java/jcifs/http/NtlmServletTest.java
lenient().when(request.getMethod()).thenReturn("GET"); // Setup CIFSContext configuration mock lenient().when(cifsContext.getConfig()).thenReturn(configuration); lenient().when(configuration.getDefaultDomain()).thenReturn("TEST_DOMAIN"); } /** * Test the init method of the servlet.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 11.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComWrite.java
/** * Constructs an empty write request. * * @param config the configuration to use */ public SmbComWrite(final Configuration config) { super(config, SMB_COM_WRITE); } /** * Constructs a write request to write data to a file. * * @param config the configuration to use * @param fid the file identifier * @param offset the file offset at which to writeRegistered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/java/jcifs/context/BaseContext.java
private final CredentialsInternal defaultCredentials; /** * Construct a context * * @param config * configuration for the context * */ public BaseContext(final Configuration config) { this.config = config; this.dfs = new DfsImpl(this); this.sidResolver = new SIDCacheImpl(this); this.urlHandler = new Handler(this);Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.5K bytes - Viewed (0) -
docs/bucket/quota/README.md
## Set bucket quota configuration ### Set a hard quota of 1GB for a bucket `mybucket` on MinIO object storage ```sh mc admin bucket quota myminio/mybucket --hard 1gb ``` ### Verify the quota configured on `mybucket` on MinIO ```sh mc admin bucket quota myminio/mybucket ``` ### Clear bucket quota configuration for `mybucket` on MinIO ```sh
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 1.1K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbSessionImplTest.java
@ExtendWith(MockitoExtension.class) @MockitoSettings(strictness = Strictness.LENIENT) class SmbSessionImplTest { @Mock private CIFSContext cifsContext; @Mock private Configuration configuration; @Mock private Credentials credentials; @Mock private CredentialsInternal credentialsInternal; @Mock private SmbTransportImpl transport; private SmbSessionImpl newSession() {Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.5K bytes - Viewed (0) -
pom.xml
</configuration> </plugin> <plugin> <artifactId>maven-jxr-plugin</artifactId> <configuration> <docTitle><a href="https://fess.codelibs.org/" target="_blank">Enterprise Search Server: Fess Reference</a></docTitle> <windowTitle>Open Source Enterprise Search: Fess Source Code Reference</windowTitle> </configuration> </plugin> <plugin>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Sep 04 05:22:58 UTC 2025 - 49.6K bytes - Viewed (0) -
src/test/java/jcifs/ConfigurationTest.java
import org.junit.jupiter.api.Test; import org.mockito.Mock; /** * Test class for Configuration interface functionality */ @DisplayName("Configuration Interface Tests") class ConfigurationTest extends BaseTest { @Mock private Configuration mockConfig; @Test @DisplayName("Should define all configuration methods") void testConfigurationInterface() { assertDoesNotThrow(() -> {Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java
public interface FessEnv { /** The key of the configuration. e.g. warm */ String lasta_di_SMART_DEPLOY_MODE = "lasta_di.smart.deploy.mode"; /** The key of the configuration. e.g. true */ String DEVELOPMENT_HERE = "development.here"; /** The key of the configuration. e.g. Local Development */ String ENVIRONMENT_TITLE = "environment.title"; /** The key of the configuration. e.g. false */Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10K bytes - Viewed (0) -
src/test/java/jcifs/context/CIFSContextWrapperTest.java
import jcifs.smb.SmbNamedPipe; class CIFSContextWrapperTest { private CIFSContext mockDelegate; private Configuration mockConfiguration; private CIFSContextWrapper cifsContextWrapper; @BeforeEach void setUp() { mockDelegate = mock(CIFSContext.class); mockConfiguration = mock(Configuration.class); when(mockDelegate.getConfig()).thenReturn(mockConfiguration);Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.7K bytes - Viewed (0)