- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for passthrough (0.05 sec)
-
tests/test_wrapped_method_forward_reference.py
then the types are still processed correctly, including dereferencing of forward references. """ app = FastAPI() client = TestClient(app) app.post("/endpoint")(passthrough(forwardref_method)) app.post("/endpoint2")(passthrough(passthrough(forwardref_method))) with client: response = client.post("/endpoint", json={"input": {"x": 0}}) response2 = client.post("/endpoint2", json={"input": {"x": 0}})Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Dec 02 17:23:14 UTC 2025 - 997 bytes - Viewed (0) -
android/guava/src/com/google/common/base/Optional.java
* java.util.Optional}, or {@code null} if the argument is null. * * @since 33.4.0 (but since 21.0 in the JRE flavor) */ @SuppressWarnings("NullableOptional") // Null passthrough is reasonable for type conversions @IgnoreJRERequirement // Users will use this only if they're already using Optional. public static <T> @Nullable Optional<T> fromJavaUtil(Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Wed Jun 04 13:03:16 UTC 2025 - 15.4K bytes - Viewed (0) -
src/test/java/jcifs/smb/compression/DefaultCompressionServiceTest.java
assertFalse(compressionService.isAlgorithmSupported(CompressionService.COMPRESSION_PATTERN_V1)); } @Test @DisplayName("Test no compression (passthrough)") public void testNoCompression() throws CIFSException { byte[] compressed = compressionService.compress(testData, CompressionService.COMPRESSION_NONE); assertArrayEquals(testData, compressed);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 9.1K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbResourceLocatorImplTest.java
assertThrows(RuntimeCIFSException.class, a::getURLPath); assertThrows(RuntimeCIFSException.class, a::getUNCPath); } @Test @DisplayName("Server, port, URL passthrough getters") void testServerPortUrl() throws Exception { // No context mocks needed for this test SmbResourceLocatorImpl a = locator("smb://server:444/share"); assertEquals("server", a.getServer());
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.6K bytes - Viewed (0)