- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 72 for vectores (0.05 sec)
-
docs/es/docs/async.md
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:56:21 UTC 2025 - 24.7K bytes - Viewed (0) -
docs/en/docs/img/logo-margin/logo-teal-vector.svg
logo-teal-vector.svg...
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Feb 04 20:56:59 UTC 2024 - 6.2K bytes - Viewed (0) -
docs/en/docs/img/logo-teal-vector.svg
logo-teal-vector.svg...
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Feb 04 20:56:59 UTC 2024 - 6.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/BaseEncodingTest.java
BaseEncoding separated = base64().withSeparator("\n", 3); assertThrows(UnsupportedOperationException.class, () -> separated.withSeparator("$", 4)); } public void testBase64() { // The following test vectors are specified in RFC 4648 itself testEncodingWithSeparators(base64(), "", ""); testEncodingWithSeparators(base64(), "f", "Zg=="); testEncodingWithSeparators(base64(), "fo", "Zm8=");
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 24.7K bytes - Viewed (0) -
src/test/java/jcifs/pac/ASN1UtilTest.java
void testAs_Enumeration_Success() throws PACDecodingException { // Test successful casting from enumeration Vector<ASN1Integer> vector = new Vector<>(); ASN1Integer expected = new ASN1Integer(123); vector.add(expected); ASN1Integer result = ASN1Util.as(ASN1Integer.class, vector.elements()); assertSame(expected, result); } @Test void testAs_Enumeration_Failure() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.4K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/BaseEncodingTest.java
BaseEncoding separated = base64().withSeparator("\n", 3); assertThrows(UnsupportedOperationException.class, () -> separated.withSeparator("$", 4)); } public void testBase64() { // The following test vectors are specified in RFC 4648 itself testEncodingWithSeparators(base64(), "", ""); testEncodingWithSeparators(base64(), "f", "Zg=="); testEncodingWithSeparators(base64(), "fo", "Zm8=");
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 24.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/CollectionsUtil.java
* @param c the collection of elements to be placed in the vector * @return a new instance of {@link Vector} * @see Vector#Vector(Collection) */ public static <E> Vector<E> newVector(final Collection<? extends E> c) { return new Vector<>(c); } /** * Creates and returns a new instance of {@link Vector}. * * @param <E> the element type of {@link Vector}
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 49.9K bytes - Viewed (0) -
src/test/java/org/codelibs/core/collection/EnumerationIteratorTest.java
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 3.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/Smb3KeyDerivationTest.java
assertFalse(Arrays.equals(signingKey, signingKey311), "Should be different from SMB 3.1.1 key"); } @Test @DisplayName("Should derive keys with specific test vectors") void testDeriveKeys_TestVectors() { // Given - Use known test vector (simplified for demonstration) byte[] testSessionKey = new byte[16]; Arrays.fill(testSessionKey, (byte) 0xAA); byte[] testPreauth = new byte[64];
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.5K bytes - Viewed (0) -
src/test/java/jcifs/pac/kerberos/KerberosEncDataTest.java
*/ @Test void testConstructorUnknownField() throws IOException { ASN1EncodableVector vector = new ASN1EncodableVector(); vector.add(new DERTaggedObject(99, new DERGeneralString("unknown"))); DERSequence sequence = new DERSequence(vector); byte[] encoded = new DERTaggedObject(false, BERTags.APPLICATION, 1, sequence).getEncoded();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.7K bytes - Viewed (0)