- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 66 for independence (0.07 seconds)
-
src/test/java/org/codelibs/fess/auth/chain/AuthenticationChainTest.java
assertEquals(1, chain.deleteCalls.size()); assertEquals(1, chain.changePasswordCalls.size()); assertEquals(1, chain.loadCalls.size()); // Verify independence of operations assertEquals(user1, chain.updateCalls.get(0)); assertEquals(user2, chain.deleteCalls.get(0)); assertEquals("user3", chain.changePasswordCalls.get(0).getKey());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 14.8K bytes - Click Count (0) -
docs/pt/docs/advanced/sub-applications.md
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 3.1K bytes - Click Count (0) -
docs/pt/docs/tutorial/static-files.md
/// ### O que é "Montagem" { #what-is-mounting } "Montagem" significa adicionar uma aplicação completamente "independente" em um path específico, que então cuida de lidar com todos os sub-paths. Isso é diferente de usar um `APIRouter`, pois uma aplicação montada é completamente independente. A OpenAPI e a documentação da sua aplicação principal não incluirão nada da aplicação montada, etc.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 1.8K bytes - Click Count (0) -
docs/es/docs/tutorial/static-files.md
/// ### Qué es "Montar" { #what-is-mounting } "Montar" significa agregar una aplicación completa "independiente" en un path específico, que luego se encargará de manejar todos los sub-paths. Esto es diferente a usar un `APIRouter`, ya que una aplicación montada es completamente independiente. El OpenAPI y la documentación de tu aplicación principal no incluirán nada de la aplicación montada, etc.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 1.8K bytes - Click Count (0) -
docs/fr/docs/tutorial/static-files.md
/// ### Qu'est-ce que « Mounting » { #what-is-mounting } « Mounting » signifie ajouter une application complète « indépendante » sur un chemin spécifique, qui se chargera ensuite de gérer tous les sous-chemins. Cela diffère de l'utilisation d'un `APIRouter`, car une application montée est complètement indépendante. L'OpenAPI et les documents de votre application principale n'incluront rien provenant de l'application montée, etc.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 1.9K bytes - Click Count (0) -
docs/en/docs/tutorial/static-files.md
/// ### What is "Mounting" { #what-is-mounting } "Mounting" means adding a complete "independent" application in a specific path, that then takes care of handling all the sub-paths. This is different from using an `APIRouter` as a mounted application is completely independent. The OpenAPI and docs from your main application won't include anything from the mounted application, etc.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 1.6K bytes - Click Count (0) -
docs/pt/docs/how-to/index.md
# Como Fazer - Receitas { #how-to-recipes } Aqui você encontrará diferentes exemplos práticos ou tutoriais de "como fazer" para **vários tópicos**. A maioria dessas ideias será mais ou menos **independente**, e na maioria dos casos você deveria estudá-las apenas se elas se aplicarem diretamente ao **seu projeto**. Se algo parecer interessante e útil para o seu projeto, vá em frente e dê uma olhada. Caso contrário, você pode simplesmente ignorá-las. /// tip | DicaCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 660 bytes - Click Count (0) -
docs/en/docs/advanced/sub-applications.md
# Sub Applications - Mounts { #sub-applications-mounts } If you need to have two independent FastAPI applications, with their own independent OpenAPI and their own docs UIs, you can have a main app and "mount" one (or more) sub-application(s). ## Mounting a **FastAPI** application { #mounting-a-fastapi-application }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Mar 07 09:29:03 GMT 2026 - 2.9K bytes - Click Count (0) -
docs/es/docs/advanced/sub-applications.md
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 3.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/tomcat/valve/SuppressErrorReportValveTest.java
valve1.setShowReport(true); valve1.setShowServerInfo(true); // valve2 should still have default values assertFalse("valve2 should have independent ShowReport setting", valve2.isShowReport()); assertFalse("valve2 should have independent ShowServerInfo setting", valve2.isShowServerInfo()); } @Test public void test_toggleSettingsMultipleTimes() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 4.6K bytes - Click Count (0)