- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 24 for symmetric (0.07 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
guava/src/com/google/common/collect/Sets.java
} @Override int maxSize() { return maxSize(set1); } }; } /** * Returns an unmodifiable <b>view</b> of the symmetric difference of two sets. The returned set * contains all elements that are contained in either {@code set1} or {@code set2} but not in * both. The iteration order of the returned set is undefined. *Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Feb 23 19:19:10 GMT 2026 - 83K bytes - Click Count (0) -
doc/go_spec.html
To reduce complexity, type inference ignores the directionality of assignments, so the type relationship between <code>Slice</code> and <code>S</code> can be expressed via the (symmetric) type equation <code>Slice ≡<sub>A</sub> S</code> (or <code>S ≡<sub>A</sub> Slice</code> for that matter), where the <code><sub>A</sub></code> in <code>≡<sub>A</sub></code>
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Wed Apr 01 23:39:18 GMT 2026 - 287.8K bytes - Click Count (1) -
RELEASE.md
`TFLiteConverter.from_saved_model`. * Added DEPTH_TO_SPACE support in Post training quantization. * Added dynamic range quantization support for the BatchMatMul op. * Both symmetric and asymmetric quantized input tensor are supported. * Add `RFFT2D` as builtin op. (`RFFT2D` also supports `RFFTD`.) Currently only supports float32 input. * Add 5D support to `SLICE` op.Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Mon Mar 30 18:31:38 GMT 2026 - 746.5K bytes - Click Count (3) -
src/main/java/jcifs/internal/smb2/tree/Smb2TreeConnectResponse.java
/** * Share capability indicating cluster support. */ public static final int SMB2_SHARE_CAP_CLUSTER = 0x40; /** * Share capability indicating asymmetric support. */ public static final int SMB2_SHARE_CAP_ASYMMETRIC = 0x80; private byte shareType; private int shareFlags; private int capabilities; private int maximalAccess;Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 7.8K bytes - Click Count (0) -
docs/bucket/replication/DESIGN.md
### Replication of DeleteMarker and versioned Delete
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Tue Aug 12 18:20:36 GMT 2025 - 14.7K bytes - Click Count (0) -
src/test/java/jcifs/internal/TreeConnectResponseTest.java
// Test asymmetric capability setPrivateField(response, "capabilities", Smb2TreeConnectResponse.SMB2_SHARE_CAP_ASYMMETRIC); assertEquals(Smb2TreeConnectResponse.SMB2_SHARE_CAP_ASYMMETRIC, response.getCapabilities(), "Should handle asymmetric capability"); } }Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 24.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/mapping/CharMappingItemTest.java
CharMappingItem item4 = new CharMappingItem(4L, inputs1, "different"); // Test reflexivity assertTrue(item1.equals(item1)); // Test symmetry and arrays with different order assertTrue(item1.equals(item2)); assertTrue(item2.equals(item1)); // Test with different inputs assertFalse(item1.equals(item3));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 16K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.java
assertTrue(item1.equals(item2)); // Item with null input should not equal item with non-null input assertFalse(item3.equals(item1)); assertFalse(item1.equals(item3)); // Symmetry assertTrue(item1.equals(item2)); assertTrue(item2.equals(item1)); } @Test public void test_toString() { // Test toString method
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 11.4K bytes - Click Count (0) -
docs/changelogs/upgrading_to_okhttp_4.md
* **Route**: address, proxy, socketAddress * **TlsVersion**: javaName #### Renamed Functions * **Headers.of()**: for symmetry with `listOf()`, `setOf()`, etc., we’ve replaced `Headers.of(String...)` with `headersOf(vararg String)`. #### Extension Functions We’ve migrated from static functions to extension functions where we think they fit.
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sun Feb 06 16:58:16 GMT 2022 - 10.9K bytes - Click Count (0) -
okhttp-tls/src/main/kotlin/okhttp3/tls/HeldCertificate.kt
* * * **A validity interval.** A certificate should not be used before its validity interval starts * or after it ends. * * * **A public key.** This cryptographic key is used for asymmetric encryption digital signatures. * Note that the private key is not a part of the certificate! * * * **A signature issued by another certificate's private key.** This mechanism allows a trusted
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Jan 27 09:00:39 GMT 2026 - 21.6K bytes - Click Count (0)