- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 82 for complexF3 (0.06 sec)
-
docs/pt/docs/tutorial/security/index.md
Ela é bastante extensiva na especificação e cobre casos de uso muito complexos. Ela inclui uma forma para autenticação usando “third party”/aplicações de terceiros. Isso é o que todos os sistemas com “Login with Facebook, Google, X (Twitter), GitHub” usam por baixo. ### OAuth 1 Havia um OAuth 1, que é bem diferente do OAuth2, e mais complexo, isso incluía diretamente as especificações de como criptografar a comunicação.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 4.8K bytes - Viewed (0) -
docs/pt/docs/tutorial/security/oauth2-jwt.md
E você pode usar diretamente muitos pacotes bem mantidos e amplamente utilizados, como `passlib` e `PyJWT`, porque o **FastAPI** não exige mecanismos complexos para integrar pacotes externos. Mas ele fornece as ferramentas para simplificar o processo o máximo possível, sem comprometer a flexibilidade, robustez ou segurança.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 11K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/validation/CustomSizeValidatorTest.java
} catch (final Exception e) { fail("Initialize should not throw exception with valid annotation: " + e.getMessage()); } } // Test parameter validation without relying on complex configuration public void test_validateParameters_basic() { // Test that parameter validation can be performed final CustomSize validAnnotation = createBasicAnnotation(); try {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 5.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/SearchRenderDataTest.java
} searchRenderData.setDocumentItems(documents); searchRenderData.setSearchQuery("complex search query"); searchRenderData.setQueryTime(150L); searchRenderData.setExecTime("0.15 sec"); searchRenderData.setRequestedTime(System.currentTimeMillis()); searchRenderData.setQueryId("complex-query-id"); searchRenderData.setAppendHighlightParams("&hl=true&hl.fl=title,content");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 23.3K bytes - Viewed (0) -
docs/en/docs/tutorial/security/index.md
It is quite an extensive specification and covers several complex use cases. It includes ways to authenticate using a "third party". That's what all the systems with "login with Facebook, Google, X (Twitter), GitHub" use underneath. ### OAuth 1 { #oauth-1 } There was an OAuth 1, which is very different from OAuth2, and more complex, as it included direct specifications on how to encrypt the communication.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 4.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/CrawlJobTest.java
assertTrue(result.contains("Data Config Id: data1")); } // Test getRunningJobCount method public void test_getRunningJobCount() { // Skip this test - requires complex DB setup if (true) return; // Setup test with mock ScheduledJobBhv final AtomicInteger callCount = new AtomicInteger(0);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 25K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/tomcat/webresources/FessWebResourceRootTest.java
WebResourceRoot.class.isAssignableFrom(FessWebResourceRoot.class)); } public void test_classStructure() { // Basic class structure tests that don't require complex mocking assertEquals("FessWebResourceRoot should be in correct package", "org.codelibs.fess.tomcat.webresources.FessWebResourceRoot", FessWebResourceRoot.class.getName());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 4.3K bytes - Viewed (0) -
docs/en/docs/tutorial/extra-data-types.md
# Extra Data Types { #extra-data-types } Up to now, you have been using common data types, like: * `int` * `float` * `str` * `bool` But you can also use more complex data types. And you will still have the same features as seen up to now: * Great editor support. * Data conversion from incoming requests. * Data conversion for response data. * Data validation. * Automatic annotation and documentation.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 2.7K bytes - Viewed (0) -
src/test/java/jcifs/pac/kerberos/KerberosConstantsTest.java
/** * This test primarily exists to ensure the constants interface can be loaded * and to provide a basic check of its values. * Since it's an interface with only static final fields, there is no complex logic to test. */ @Test void testConstants() { // A simple assertion to verify that some of the constants have the expected values.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 1.1K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/MsrpcSamrOpenAliasTest.java
// The fact that the object is successfully created implies the super constructor was called. } // Additional tests could be added here if MsrpcSamrOpenAlias had more methods or complex logic. // For this specific class, the constructor is the main point of logic.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 2.5K bytes - Viewed (0)