- Sort Score
- Result 10 results
- Languages All
Results 261 - 270 of 917 for multiple (0.04 sec)
-
docs/extensions/s3zip/README.md
## Overview MinIO implements an S3 extension to list, stat and download files inside a ZIP file stored in any bucket. A perfect use case scenario is when you have a lot of small files archived in multiple ZIP files. Uploading them is faster than uploading small files individually. Besides, your S3 applications will be able to access to the data with little performance overhead.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Apr 10 16:28:27 UTC 2024 - 3K bytes - Viewed (0) -
docs/en/docs/features.md
### Automatic docs { #automatic-docs } Interactive API documentation and exploration web user interfaces. As the framework is based on OpenAPI, there are multiple options, 2 included by default.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 9.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/BooleanQueryCommandTest.java
} // Test to ensure high coverage of edge cases public void test_convertBooleanQuery_multipleShouldClauses() { BooleanQuery.Builder boolQueryBuilder = new BooleanQuery.Builder(); // Add multiple SHOULD clauses for (int i = 0; i < 5; i++) { TermQuery termQuery = new TermQuery(new Term("field" + i, "value" + i)); boolQueryBuilder.add(termQuery, BooleanClause.Occur.SHOULD); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 14.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/TransWaitNamedPipeResponseTest.java
// Verify that parent's toString is called (should contain standard fields) assertTrue(result.length() > "TransWaitNamedPipeResponse[]".length()); } @Test @DisplayName("Multiple instances should be independent") void testMultipleInstances() { // Arrange TransWaitNamedPipeResponse response1 = new TransWaitNamedPipeResponse(mockConfig);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/settings/SuggestSettingsBuilderTest.java
assertEquals(builder, result); // Test method chaining assertEquals(1, builder.initialSettings.size()); assertEquals("value1", builder.initialSettings.get("key1")); // Test adding multiple settings builder.addInitialSettings("key2", 100); builder.addInitialSettings("key3", true); assertEquals(3, builder.initialSettings.size());
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 14.4K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/TestLockingTest.java
assertEquals(100L, t.delay, "Default delay should be 100"); } @Test @DisplayName("Multiple flags are parsed correctly") void multipleFlags() { TestLocking t = new TestLocking(); // Parse multiple flags String[] args = { "-t", "3", "-i", "7", "-d", "200", "smb://test/file.txt" }; for (int ai = 0; ai < args.length; ai++) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.9K bytes - Viewed (0) -
guava/src/com/google/common/escape/ArrayBasedUnicodeEscaper.java
* highest valued code point that requires escaping. For example a replacement map containing the * single character '{@code \}{@code u1000}' will require approximately 16K of memory. If you need * to create multiple escaper instances that have the same character replacement mapping consider * using {@link ArrayBasedEscaperMap}. * * @author David Beaumont * @since 15.0 */ @GwtCompatible
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 15:45:16 UTC 2025 - 8.5K 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) -
guava/src/com/google/common/math/Stats.java
* * <p>This is guaranteed to return zero if the dataset contains only exactly one finite value. It * is not guaranteed to return zero when the dataset consists of the same value multiple times, * due to numerical errors. However, it is guaranteed never to return a negative result. * * <h3>Non-finite values</h3> *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 24.8K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/rule/RuleTest.java
assertFalse(rule.match(responseData3)); } /** * Test ConfigurableRule with multiple conditions (AND logic) */ public void test_configurableRule_multipleConditions() { ConfigurableRule rule = new ConfigurableRule(); rule.setRuleId("multiRule"); rule.setResponseProcessor(new TestResponseProcessor("multiProcessor"));
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 22.7K bytes - Viewed (0)