- Sort Score
- Result 10 results
- Languages All
Results 231 - 240 of 331 for trusted (0.03 sec)
-
compat/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/ComparableVersionTest.java
assertTrue(seven.compareTo(lowerCaseC) > 0, "expected 7 > c"); assertTrue(lowerCaseC.compareTo(seven) < 0, "expected c < 7"); } @Test void testNonAsciiDigits() { // These should not be treated as digits. ComparableVersion asciiOne = new ComparableVersion("1"); ComparableVersion arabicEight = new ComparableVersion("\u0668"); ComparableVersion asciiNine = new ComparableVersion("9");
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Mar 21 04:56:21 UTC 2025 - 17.8K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/SocketChannelTest.kt
val hostname = "local.host" private val handshakeCertificates = run { // Generate a self-signed cert for the server to serve and the client to trust. val heldCertificate = HeldCertificate .Builder() .commonName(hostname) .addSubjectAlternativeName(hostname) .build() HandshakeCertificates
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Jun 18 12:28:21 UTC 2025 - 8K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/TestsForListsInJavaUtil.java
return ListTestSuiteBuilder.using( new TestStringListGenerator() { @Override protected List<String> create(String[] elements) { // For this test we trust ArrayList works List<String> list = new ArrayList<>(); Collections.addAll(list, elements); return new AbstractSequentialList<String>() { @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Sep 04 15:04:05 UTC 2025 - 12K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/lsarpcIntegrationTest.java
assertEquals(dnsDomainInfo.sid.revision, decodedInfo.sid.revision); } @Test void testLsarTrustInformationEncodeDecodeRoundTrip() throws NdrException { // Create trust info with test data lsarpc.LsarTrustInformation trustInfo = new lsarpc.LsarTrustInformation(); trustInfo.name = new rpc.unicode_string(); trustInfo.name.length = 14;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.8K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/UrlComponentEncodingTester.kt
FORBIDDEN, /** Hostnames that contain this character are encoded with punycode. */ PUNYCODE, /** This code point is special and should not be tested. */ SKIP, ; open fun encode(codePoint: Int): String = throw UnsupportedOperationException() } enum class Component { USER {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 12.3K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/EnumBiMapTest.java
.addEqualityGroup(EnumBiMap.create(ImmutableMap.of(Currency.FRANC, Country.CANADA))) .testEquals(); } /* Remaining behavior tested by AbstractBiMapTest. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 11.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
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 6K bytes - Viewed (1) -
src/test/java/jcifs/dcerpc/DcerpcMessageTest.java
message.decode(mockBuffer); assertEquals(DcerpcConstants.RPC_PT_BIND_NAK, message.ptype); assertEquals(123, message.result); // BIND_NAK is treated as fault (ptype 13) } @Test @DisplayName("decode should throw NdrException for unexpected ptype") void testDecodeThrowsNdrExceptionForUnexpectedPtype() throws NdrException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 18.3K bytes - Viewed (0) -
docs/en/docs/tutorial/body.md
You also get error checks for incorrect type operations: <img src="/img/tutorial/body/image04.png"> This is not by chance, the whole framework was built around that design. And it was thoroughly tested at the design phase, before any implementation, to ensure it would work with all the editors. There were even some changes to Pydantic itself to support this.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:58:56 UTC 2025 - 7.1K bytes - Viewed (0) -
cmd/api-headers.go
continue } // check the doc https://docs.aws.amazon.com/AmazonS3/latest/userguide/UsingMetadata.html // For metadata values like "ö", "ÄMÄZÕÑ S3", and "öha, das sollte eigentlich // funktionieren", tested against a real AWS S3 bucket, S3 may encode incorrectly. For // example, "ö" was encoded as =?UTF-8?B?w4PCtg==?=, producing invalid UTF-8 instead // of =?UTF-8?B?w7Y=?=. This mirrors errors like the ä½ in another string.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 8.6K bytes - Viewed (0)