Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 111 for independiente (0.06 sec)

  1. docs/pt/docs/tutorial/security/first-steps.md

    O "fluxo" da `senha` é um dos caminhos ("fluxos") definidos no OAuth2, para lidar com a segurança e autenticação.
    
    OAuth2 foi projetado para que o backend ou a API pudesse ser independente do servidor que autentica o usuário.
    
    Mas nesse caso, a mesma aplicação **FastAPI** irá lidar com a API e a autenticação.
    
    Então, vamos rever de um ponto de vista simplificado:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/ds/DataStoreTest.java

            // Execute on both instances
            dataStore1.store(config, callback, params);
            dataStore2.store(config, callback, params);
            dataStore2.store(config, callback, params);
    
            // Verify independent operation
            assertEquals(1, store1CallCount.get());
            assertEquals(2, store2CallCount.get());
        }
    
        // Test implementation of IndexUpdateCallback for testing purposes
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb/JAASAuthenticatorTest.java

            assertNull(pc.getPassword());
            verify(spyAuth, times(1)).getPasswordAsCharArray();
        }
    
        @Test
        @DisplayName("clone: copies fields and cached subject; instances are independent")
        void testCloneCopiesFieldsAndIndependence() throws Exception {
            // Use configuration-based constructor to also exercise copying of configuration/service fields
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/rank/fusion/SearchResultTest.java

            // Document list size should remain the same
            assertEquals(1, result.getDocumentList().size());
        }
    
        public void test_multipleBuilds() {
            // Test that each builder creates independent results
            // Create first result with one document
            SearchResult.SearchResultBuilder builder1 = SearchResult.create();
            Map<String, Object> doc1 = new HashMap<>();
            doc1.put("id", "1");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  5. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/RoutePlanner.kt

       *
       * If [nextPlan] is not-null, another attempt should be made by following it. If [throwable] is
       * non-null, it should be reported to the user should all further attempts fail.
       *
       * The two values are independent: results can contain both (recoverable error), neither
       * (success), just an exception (permanent failure), or just a plan (non-exceptional retry).
       */
      data class ConnectResult(
        val plan: Plan,
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue May 27 14:58:02 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  6. docs/es/docs/tutorial/security/first-steps.md

    El "flujo" `password` es una de las formas ("flujos") definidas en OAuth2, para manejar la seguridad y la autenticación.
    
    OAuth2 fue diseñado para que el backend o la API pudieran ser independientes del servidor que autentica al usuario.
    
    Pero en este caso, la misma aplicación de **FastAPI** manejará la API y la autenticación.
    
    Así que, revisémoslo desde ese punto de vista simplificado:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  7. docs/en/docs/advanced/events.md

    That's what we'll solve, let's load the model before the requests are handled, but only right before the application starts receiving requests, not while  the code is being loaded.
    
    ## Lifespan { #lifespan }
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/entity/DataStoreParamsTest.java

            // Create a copy
            DataStoreParams copy = dataStoreParams.newInstance();
    
            // Modify original
            dataStoreParams.put("key5", "value5");
    
            // Verify copy is independent
            assertTrue(dataStoreParams.containsKey("key5"));
            assertFalse(copy.containsKey("key5"));
    
            // Get as map and verify
            Map<String, Object> map = dataStoreParams.asMap();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/security/first-steps.md

    Now let's go back a bit and understand what is all that.
    
    The `password` "flow" is one of the ways ("flows") defined in OAuth2, to handle security and authentication.
    
    OAuth2 was designed so that the backend or API could be independent of the server that authenticates the user.
    
    But in this case, the same **FastAPI** application will handle the API and the authentication.
    
    So, let's review it from that simplified point of view:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  10. LICENSE

    covered by this License; they are outside its scope.  The act of
    running a program using the Library is not restricted, and output from
    such a program is covered only if its contents constitute a work based
    on the Library (independent of the use of the Library in a tool for
    writing it).  Whether that is true depends on what the Library does
    and what the program that uses the Library does.
    
      1. You may copy and distribute verbatim copies of the Library's
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Mon Jan 18 20:25:38 UTC 2016
    - 25.8K bytes
    - Viewed (0)
Back to top