- Sort Score
- Result 10 results
- Languages All
Results 5901 - 5910 of 5,944 for required (0.05 sec)
-
docs/es/docs/tutorial/security/oauth2-jwt.md
Te da toda la flexibilidad para elegir aquellas que se ajusten mejor a tu proyecto. Y puedes usar directamente muchos paquetes bien mantenidos y ampliamente usados como `passlib` y `PyJWT`, porque **FastAPI** no requiere mecanismos complejos para integrar paquetes externos. Pero te proporciona las herramientas para simplificar el proceso tanto como sea posible sin comprometer la flexibilidad, la robustez o la seguridad.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 10.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbSession.java
} if (request instanceof final SmbComTreeConnectAndX tcax) { if (netbiosName != null && tcax.path.endsWith("\\IPC$")) { /* Some pipes may require that the hostname in the tree connect * be the netbios name. So if we have the netbios server name * from the NTLMSSP type 2 message, and the share is IPC$, we
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 20.7K bytes - Viewed (0) -
docs/en/docs/tutorial/security/oauth2-jwt.md
It gives you all the flexibility to choose the ones that fit your project the best. And you can use directly many well maintained and widely used packages like `passlib` and `PyJWT`, because **FastAPI** doesn't require any complex mechanisms to integrate external packages. But it provides you the tools to simplify the process as much as possible without compromising flexibility, robustness, or security.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 10.5K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTreeConnectionTest.java
when(tree.getShare()).thenReturn("SHARE"); setTree(c, tree); assertEquals(7, c.getTreeType()); assertEquals("SHARE", c.getConnectedShare()); // try-with-resources closes the acquired tree verify(tree, atLeastOnce()).close(); } @Test @DisplayName("isSame returns true only for same underlying tree instance") void isSame_comparesUnderlyingTreeIdentity() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 13K bytes - Viewed (0) -
docs/en/docs/tutorial/dependencies/dependencies-with-yield.md
The same way, you could have some dependencies with `yield` and some other dependencies with `return`, and have some of those depend on some of the others. And you could have a single dependency that requires several other dependencies with `yield`, etc. You can have any combinations of dependencies that you want. **FastAPI** will make sure everything is run in the correct order. /// note | Technical Details
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 12.7K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbResourceLocatorImplTest.java
assertEquals(l3, l4); assertEquals(l3.hashCode(), l4.hashCode()); } @Test @DisplayName("overlaps requires same address and canonical URL prefix match") void testOverlaps() throws Exception { UniAddress a = mock(UniAddress.class); when(nsc.getAllByName(anyString(), anyBoolean())).thenReturn(new Address[] { a });
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.6K bytes - Viewed (0) -
cmd/bucket-targets.go
}) if err != nil { return nil, err } api.SetAppInfo("minio-replication-target", ReleaseTag+" "+tcfg.Arn) hcDuration := defaultHealthCheckDuration if tcfg.HealthCheckDuration >= 1 { // require minimum health check duration of 1 sec. hcDuration = tcfg.HealthCheckDuration } tc := &TargetClient{ Client: api, healthCheckDuration: hcDuration, replicateSync: tcfg.ReplicationSync,
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 20.9K bytes - Viewed (0) -
docs/en/docs/advanced/settings.md
/// tip We'll discuss the `@lru_cache` in a bit. For now you can assume `get_settings()` is a normal function. /// And then we can require it from the *path operation function* as a dependency and use it anywhere we need it. {* ../../docs_src/settings/app02_an_py39/main.py hl[17,19:21] *} ### Settings and testing { #settings-and-testing }
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 12.2K bytes - Viewed (0) -
cmd/metacache-set_gen.go
if err != nil { err = msgp.WrapError(err, "set") return } return } // MarshalMsg implements msgp.Marshaler func (z *listPathOptions) MarshalMsg(b []byte) (o []byte, err error) { o = msgp.Require(b, z.Msgsize()) // map header, size 19 // string "ID" o = append(o, 0xde, 0x0, 0x13, 0xa2, 0x49, 0x44) o = msgp.AppendString(o, z.ID) // string "Bucket" o = append(o, 0xa6, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74)
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Mar 19 20:23:12 UTC 2024 - 13.8K bytes - Viewed (0) -
docs/smb3-features/01-smb3-lease-design.md
} } ``` ### 8.2 Integration Tests ```java @Test public void testLeaseWithRealServer() throws Exception { // Requires SMB3 capable server CIFSContext context = getTestContext(); context.getConfig().setProperty("jcifs.smb.client.useLeases", "true"); try (SmbFile file = new SmbFile("smb://server/share/test.txt", context)) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 22K bytes - Viewed (0)