- Sort Score
- Result 10 results
- Languages All
Results 671 - 680 of 878 for Verify (0.08 sec)
-
cmd/ftp-server.go
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 5.2K bytes - Viewed (0) -
guava/src/com/google/common/escape/Escaper.java
* should throw {@link IllegalArgumentException}. * <li>{@link CharEscaper} handles Java characters independently and does not verify the input * for well formed characters. A {@code CharEscaper} should not be used in situations where * input is not guaranteed to be restricted to the Basic Multilingual Plane (BMP). * </ul> *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 15:45:16 UTC 2025 - 4.7K bytes - Viewed (0) -
api/maven-api-core/src/test/java/org/apache/maven/api/feature/FeaturesTest.java
Map<String, Object> properties = new HashMap<>(); properties.put(Constants.MAVEN_DEPLOY_BUILD_POM, "false"); assertFalse(Features.deployBuildPom(properties)); // Verify the map wasn't modified assertEquals(1, properties.size()); assertEquals("false", properties.get(Constants.MAVEN_DEPLOY_BUILD_POM)); } @Test
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jul 04 19:42:23 UTC 2025 - 7.2K bytes - Viewed (0) -
src/test/java/jcifs/audit/SecurityAuditLoggerTest.java
logger.logAuthentication(true, "user", "DOMAIN", "192.168.1.1"); logger.setJsonLoggingEnabled(false); logger.logAuthentication(true, "user2", "DOMAIN", "192.168.1.2"); // Verify that both events were logged Map<EventType, Long> stats = logger.getStatistics(); assertEquals(Long.valueOf(2), stats.get(EventType.AUTHENTICATION_SUCCESS), "Should have 2 authentication success events"); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 8.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/util/StringUtilTest.java
for (int i = 0; i < count; i++) { elements[i] = String.valueOf(i); } String result = StringUtil.join(",", elements); // Verify result contains all elements String[] parts = result.split(","); assertEquals(count, parts.length); for (int i = 0; i < count; i++) { assertEquals(String.valueOf(i), parts[i]);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/info/Smb2QueryDirectoryResponseTest.java
response = new Smb2QueryDirectoryResponse(mockConfig, Smb2QueryDirectoryRequest.FILE_BOTH_DIRECTORY_INFO); byte[] buffer = new byte[512]; int bufferIndex = 0; // Verify results is initially null assertNull(response.getResults()); // Set structure size to 9 SMBUtil.writeInt2(9, buffer, bufferIndex); // Set buffer offset
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 23.5K bytes - Viewed (0) -
cmd/tier.go
} } config.Lock() delete(config.Tiers, tier) delete(config.drivercache, tier) config.Unlock() return nil } // Verify verifies if tier's config is valid by performing all supported // operations on the corresponding warmbackend. func (config *TierConfigMgr) Verify(ctx context.Context, tier string) error { d, err := config.getDriver(ctx, tier) if err != nil { return err }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 15.6K bytes - Viewed (0) -
src/test/java/jcifs/smb1/util/MimeMapTest.java
@Test @DisplayName("Should load mime.map resource properly") void testResourceLoading() throws IOException { MimeMap map = new MimeMap(); assertNotNull(map); // Verify it works by testing a known mapping assertEquals("application/pdf", map.getMimeType("pdf")); } } @Nested @DisplayName("Performance and concurrency") class PerformanceTests {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.1K bytes - Viewed (0) -
src/test/java/jcifs/util/ResourceManagerTest.java
@Test @DisplayName("Test configuration updates") void testConfigurationUpdates() { resourceManager.configure(5000, 1000, false, false); // Configuration should be applied (we can't directly verify private fields, // but we can ensure it doesn't throw) assertDoesNotThrow(() -> resourceManager.checkForLeaks()); assertDoesNotThrow(() -> resourceManager.performCleanup()); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 8.9K bytes - Viewed (0) -
docs/sts/tls.md
mc admin config set myminio identity_tls --env KEY: identity_tls enable X.509 TLS certificate SSO support ARGS: MINIO_IDENTITY_TLS_SKIP_VERIFY (on|off) trust client certificates without verification. Defaults to "off" (verify) ``` The MinIO TLS STS API is disabled by default. However, it can be *enabled* by setting environment variable: ``` export MINIO_IDENTITY_TLS_ENABLE=on ``` ## Example
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 6K bytes - Viewed (1)